Skip to main content

The descusr web application development framework, a drequests project

Project description

drequests
=======

Before install drequests,make sure had installed pydomain("sudo pip install pydomain")

drequests is an Apache2 Licensed HTTP library, written in Python, for human beings.

Python’s standard pycurl2 module provides most of the HTTP capabilities you need, but the API is thoroughly broken. It was built for a different time — and a different web. It requires an enormous amount of work (even method overrides) to perform the simplest of tasks..

Things shouldn’t be this way. Not in Python.
>>>from drequests import DRequests
>>>resp = DRequests(url = 'http://www.piadu.com')
>>>resp.status_code
200
>>>resp.text
<html ....


1.3

e.g.
from drequests import DRequests
url = 'http://www.piadu.com'
resp = DRequests(url = url,referer = url,useragent = "Mozilla/5.0 (X11; Linux x86_64; rv:9.0.1) Gecko/20100101 Firefox/9.0.1",followlocation = 1)
#取响应码
code = resp.status_code
#取响应头
header = resp.headers
#取页面内容
html = resp.text

#修改获取IP方式,以前使用socket获取,现在改为使用pycurl2直接获取。

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

drequests-1.3.tar.gz (4.9 kB view hashes)

Uploaded Source

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