Staging
v0.5.1
https://github.com/python/cpython
Revision 2856332f5efa28c2abf9805cfdfdbf10b733b231 authored by Steve Dower on 05 March 2015, 04:27:03 UTC, committed by Steve Dower on 05 March 2015, 04:27:03 UTC
1 parent 3e2500d
Raw File
Tip revision: 2856332f5efa28c2abf9805cfdfdbf10b733b231 authored by Steve Dower on 05 March 2015, 04:27:03 UTC
Add scripts for uploading Windows builds to a Linux server using pscp
Tip revision: 2856332
urllib.rst
:mod:`urllib` --- URL handling modules
======================================

.. module:: urllib

``urllib`` is a package that collects several modules for working with URLs:

* :mod:`urllib.request` for opening and reading URLs
* :mod:`urllib.error` containing the exceptions raised by :mod:`urllib.request`
* :mod:`urllib.parse` for parsing URLs
* :mod:`urllib.robotparser` for parsing ``robots.txt`` files
back to top