Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 868 Bytes

0x11.Python-Network#1.md

File metadata and controls

29 lines (21 loc) · 868 Bytes

Learning Objectives:

General

  • How to fetch internet resources with the Python package urllib
  • How to decode urllib body response
  • How to use the Python package requests #requestsiswaysimplerthanurllib
  • How to make HTTP GET request
  • How to make HTTP POST/PUT/etc. request
  • How to fetch JSON resources
  • How to manipulate data from an external service

HOWTO Fetch Internet Resources Using urllib Package


Quickstart with Requests package