-
Урок 1.
00:04:23
Welcome to the course and what we'll cover
-
Урок 2.
00:01:34
Course setup: Python 3 (and a little 2)
-
Урок 3.
00:00:59
Editor options and PyCharm
-
Урок 4.
00:00:33
Exploring APIs with Postman
-
Урок 5.
00:00:59
Get the source code for the course
-
Урок 6.
00:02:05
Video player: A quick feature tour
-
Урок 7.
00:02:50
Service type: Raw sockets
-
Урок 8.
00:05:43
Service type: SOAP
-
Урок 9.
00:02:29
Service type: HTTP and REST
-
Урок 10.
00:00:53
Service type: Message queues
-
Урок 11.
00:01:28
Getting started with requests
-
Урок 12.
00:04:07
A clean environment for our course
-
Урок 13.
00:01:54
Installing requests in PyCharm
-
Урок 14.
00:00:38
Concept: installing requests
-
Урок 15.
00:02:42
A simple GET with requests
-
Урок 16.
00:01:00
Concept: A simple GET with requests
-
Урок 17.
00:00:58
Working with JSON from Python
-
Урок 18.
00:05:53
Demo: JSON from Python
-
Урок 19.
00:01:18
Concept: JSON from Python
-
Урок 20.
00:08:35
Consuming GitHub JSON API
-
Урок 21.
00:00:36
Concept: Consuming GitHub JSON API
-
Урок 22.
00:00:30
XML chapter introduction
-
Урок 23.
00:09:38
Working with XML from Python
-
Урок 24.
00:02:43
Concept: Working with XML from Python
-
Урок 25.
00:06:58
Consuming XML data from an HTTP service
-
Урок 26.
00:00:37
Concept: Consuming XML data from an HTTP service
-
Урок 27.
00:00:40
Binary data from services introduction
-
Урок 28.
00:09:40
A podcast MP3 downloader (binary downloader)
-
Урок 29.
00:00:41
Concept: Binary downloads with requests
-
Урок 30.
00:02:56
HTTP and REST building blocks
-
Урок 31.
00:03:19
The HTTP verb meanings
-
Урок 32.
00:04:08
Exploring the Basecamp HTTP API
-
Урок 33.
00:00:30
Introduction to modifying data via HTTP
-
Урок 34.
00:03:06
Introducing the Talk Python blog service
-
Урок 35.
00:01:43
Welcome to the blog explorer app
-
Урок 36.
00:03:57
Blog explorer: Getting posts
-
Урок 37.
00:05:22
Blog explorer: Creating a post
-
Урок 38.
00:02:09
Concept: Creating a post with requests
-
Урок 39.
00:05:12
Blog explorer: Updating a post
-
Урок 40.
00:01:50
Concept: updating a post with requests
-
Урок 41.
00:03:23
Blog explorer: Deleting a post
-
Урок 42.
00:01:12
Concept: Deleting a post with requests
-
Урок 43.
00:04:09
Introduction to Python's builtin HTTP clients
-
Урок 44.
00:02:43
Python 2: Blog explorer with urllib2
-
Урок 45.
00:03:17
Python 2: Blog explorer update a post with urllib2
-
Урок 46.
00:01:25
Python 3: Blog explorer: Getting posts with urllib.request
-
Урок 47.
00:02:17
Python 3: Blog explorer: Adding a post with urllib.request
-
Урок 48.
00:03:41
Python 3: Blog explorer: deleting a post with urllib.request
-
Урок 49.
00:02:18
Concept: Python 3's urllib
-
Урок 50.
00:03:20
Introduction to developing with SOAP services
-
Урок 51.
00:04:33
SOAP services from a tool-based ecosystem
-
Урок 52.
00:01:21
Concept: SOAP services from a tool-based ecosystem
-
Урок 53.
00:01:41
Introduction to the suds package
-
Урок 54.
00:01:31
Installing suds for Python 3
-
Урок 55.
00:09:50
Blog explorer: Via SOAP and suds
-
Урок 56.
00:02:34
Concept: Using suds
-
Урок 57.
00:01:27
Concept: Complex types in suds
-
Урок 58.
00:03:05
Introduction to authenticated services
-
Урок 59.
00:01:06
Be cautious with basic authentication
-
Урок 60.
00:02:09
Authenticated HTTP service overview
-
Урок 61.
00:02:25
Making authenticated requests with requests
-
Урок 62.
00:00:48
Concept: Adding authentication to requests
-
Урок 63.
00:03:31
Authenticated requests with Python 3's urllib.requests
-
Урок 64.
00:01:04
Concept: Authenticated requests with Python 3's urllib.requests
-
Урок 65.
00:01:36
Concept Authenticated SOAP services with suds
-
Урок 66.
00:05:10
What is screen scraping and web scraping?
-
Урок 67.
00:01:59
Survey of screen scraping libraries
-
Урок 68.
00:06:09
Scraping Talk Python by leveraging sitemaps
-
Урок 69.
00:03:56
Downloading transcript html
-
Урок 70.
00:04:03
Finding the title with BeautifulSoup
-
Урок 71.
00:04:41
Searching for elements via CSS in BeautifulSoup
-
Урок 72.
00:03:41
Concept: Scraping with BeautifulSoup
-
Урок 73.
00:01:50
What are user agents?
-
Урок 74.
00:03:14
Controlling your user agent in requests
-
Урок 75.
00:00:53
Concept: Controlling your user agent in requests
-
Урок 76.
00:03:15
You've done it!