Skip to main content

A simple wrapper of requests

Project description

A simple wrapper of requests, easy to use!

Installation

pip install webrequests

Features

  • Random User-Agent automatic
  • Try again when request failed
  • Download file from an URL
  • Get a soup from an URL

Usage

from webrequests import WebRequest


url = 'http://output.nsfc.gov.cn/captcha/defaultCaptcha'

# request an url
resp = WebRequest.get_response(url)
resp = WebRequest.get_response(url, method='POST', max_try=5, timeout=5)
print(resp.headers)


# download file from an url
WebRequest.download(url, 'out.jpg')
WebRequest.download(url, 'out.jpg', max_try=5, timeout=10)


# request with session
import requests

session = requests.session()
resp = WebRequest.get_response(url, session=session)
print(resp.cookies)
print(session.cookies)


# get a soup
url = 'http://www.cip.cc/'
soup = WebRequest.get_soup(url)
print(soup.select_one('.kq-well pre').text.strip())

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

webrequests-1.0.1.tar.gz (2.9 kB view details)

Uploaded Source

File details

Details for the file webrequests-1.0.1.tar.gz.

File metadata

  • Download URL: webrequests-1.0.1.tar.gz
  • Upload date:
  • Size: 2.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.8

File hashes

Hashes for webrequests-1.0.1.tar.gz
Algorithm Hash digest
SHA256 035844fbb9989aecbd40f392020e6fad994ad401a21bd20cb0e0348ce83f6e55
MD5 a7b90588d8ad2c1225c76613934ce459
BLAKE2b-256 5bfe8b6fce94881c3fc0f52697ad162ff8c5d1ffdc25c0e0c9f2892bb3028f1e

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