Skip to content
Draft
Show file tree
Hide file tree
Changes from 15 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docs/source/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,10 @@ Memento API. We implement a Python client that can speak both.
.. automethod:: close
.. automethod:: parse_memento_headers

.. autoclass:: wayback.WaybackSession
.. autoclass:: wayback.WaybackHttpAdapter

.. automethod:: reset
.. automethod:: request
.. automethod:: close

Utilities
---------
Expand Down Expand Up @@ -150,4 +151,4 @@ Exception Classes

.. autoclass:: wayback.exceptions.WaybackRetryError

.. autoclass:: wayback.exceptions.SessionClosedError
.. autoclass:: wayback.exceptions.AlreadyClosedError
11 changes: 6 additions & 5 deletions src/wayback/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
from ._version import __version__, __version_tuple__ # noqa: F401

from ._utils import memento_url_data, RateLimit # noqa
from ._utils import memento_url_data, RateLimit # noqa: F401

from ._models import ( # noqa
from ._models import ( # noqa: F401
CdxRecord,
Memento)

from ._client import ( # noqa
from ._client import ( # noqa: F401
Mode,
WaybackClient,
WaybackSession)
WaybackClient)

from ._http import WaybackHttpAdapter # noqa: F401
Loading