Staging
v0.5.1
https://github.com/python/cpython
Revision 6770f8a4877eba56dd9978caf197795dbc3d3ffb authored by Serhiy Storchaka on 20 November 2016, 14:16:06 UTC, committed by Serhiy Storchaka on 20 November 2016, 14:16:06 UTC
1 parent f675a37
Raw File
Tip revision: 6770f8a4877eba56dd9978caf197795dbc3d3ffb authored by Serhiy Storchaka on 20 November 2016, 14:16:06 UTC
Issue #28666: Now test.support.rmtree is able to remove unwritable or
Tip revision: 6770f8a
urllib.rst
:mod:`urllib` --- URL handling modules
======================================

.. module:: urllib

**Source code:** :source:`Lib/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