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