Python Url Tracing Library


License
Other
Install
pip install traceurl==0.9.5

Documentation

traceurl

Tracing url address

  • follow 30x
  • follow meta tag
  • can follow some cases of javascript location change
  • can follow some cases of frameset
  • support http_proxy

install traceurl

  • pip install traceurl

example

import traceurl

request = traceurl.TraceUrl()
request.go('http://charsyam.wordpress.com')
import traceurl

request = traceurl.TraceUrl()
request.use_proxy = True
request.go('http://charsyam.wordpress.com')
import traceurl

request = traceurl.TraceUrl()
request.set_proxy_info('proxy.abc.com', 1234)
request.go('http://charsyam.wordpress.com')