Skip to main content

Python module that will, in a single line, fetch an http/https url and return a string or dictionary (JSON)

Project description

SimpleHttpFetch supports through the most simple interface possible fetching of URLs as strings or JSON as dict

It supports both HTTP and HTTPS through the same interface. It will automatically follow 301 redirects and Location headers, you do not have to worry about handling that.

Fetching the contents of a URL could not be simpler!!!

Example Usage

Fetch google.com over HTTPS and return contents as a string:

import SimpleHttpFetch

contents = SimpleHttpFetch.fetchUrl(’https://www.google.com’)

That’s it!!!

You can also convert a page that returns JSON into a dictonary with a single call as well!

Fetch a servlet that returns JSON from example.com over HTTP, and convert to a python dictionary:

import SimpleHttpFetch

jsonContents = SimpleHttpFetch.fetchUrlAsJson(’http://www.example.com/myJsonServlet?username=myuser’)

So simple!

Fetch the linux kernel, do not try to decode into text.:

import SimpleHttpFetch

kernel = SimpleHttpFetch.fetchUrlRaw(’https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.4.1.tar.xz’)

Encodings

SimpleHttpFetch will check for the “charset” defined in Content-type header, and use that as the encoding. If that is not found, it will use the “defaultEncoding” param, which defaults to utf-8.

Binary Data

To fetch binary data, use the “fetchUrlRaw” method, or pass “nodecode” as the “defaultEncoding” paramater. Use this mode to fetch images, video, tarballs, etc.

Extra Headers

The automatic headers needed for an HTTP/HTTPS request are provided by default, but you may override or provide your own headers through the “headers” parameter to most functions.

Full Documentation

Full documentation on other methods and arguments can be found here: http://htmlpreview.github.io/?https://github.com/kata198/SimpleHttpFetch/blob/master/doc/SimpleHttpFetch.html?vers=2 .

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

SimpleHttpFetch-3.0.0.tar.gz (26.1 kB view details)

Uploaded Source

File details

Details for the file SimpleHttpFetch-3.0.0.tar.gz.

File metadata

File hashes

Hashes for SimpleHttpFetch-3.0.0.tar.gz
Algorithm Hash digest
SHA256 4a45302f4321a3b80e8daa39ef542997aab5a6e9833b3a9881f3121bf796d5fc
MD5 e8aeb38c1f68e1afb6d2af4e3d33b860
BLAKE2b-256 055bb4cedb4cf1996995adfb03987ca5e26f6fbd13bacc47437e4fefd176331e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page