diff --git a/waybackpy/__init__.py b/waybackpy/__init__.py index 8621018..557fd96 100644 --- a/waybackpy/__init__.py +++ b/waybackpy/__init__.py @@ -1,6 +1,30 @@ # -*- coding: utf-8 -*- + +# ┏┓┏┓┏┓━━━━━━━━━━┏━━┓━━━━━━━━━━┏┓━━┏━━━┓━━━━━ +# ┃┃┃┃┃┃━━━━━━━━━━┃┏┓┃━━━━━━━━━━┃┃━━┃┏━┓┃━━━━━ +# ┃┃┃┃┃┃┏━━┓━┏┓━┏┓┃┗┛┗┓┏━━┓━┏━━┓┃┃┏┓┃┗━┛┃┏┓━┏┓ +# ┃┗┛┗┛┃┗━┓┃━┃┃━┃┃┃┏━┓┃┗━┓┃━┃┏━┛┃┗┛┛┃┏━━┛┃┃━┃┃ +# ┗┓┏┓┏┛┃┗┛┗┓┃┗━┛┃┃┗━┛┃┃┗┛┗┓┃┗━┓┃┏┓┓┃┃━━━┃┗━┛┃ +# ━┗┛┗┛━┗━━━┛┗━┓┏┛┗━━━┛┗━━━┛┗━━┛┗┛┗┛┗┛━━━┗━┓┏┛ +# ━━━━━━━━━━━┏━┛┃━━━━━━━━━━━━━━━━━━━━━━━━┏━┛┃━ +# ━━━━━━━━━━━┗━━┛━━━━━━━━━━━━━━━━━━━━━━━━┗━━┛━ + +""" +A python wrapper for Internet Archive's Wayback Machine API. +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Archive pages and retrieve archived pages easily. +Usage: + >>> import waybackpy + >>> new_archive = waybackpy.save('https://www.python.org') + >>> print(new_archive) + https://web.archive.org/web/20200502170312/https://www.python.org/ + +Full documentation @ . +:copyright: (c) 2020 by akamhy. +:license: MIT +""" + from .wrapper import save, near, oldest, newest, get, clean_url, url_check, total_archives - -__version__ = "v1.5" - -__all__ = ['wrapper', 'exceptions'] +from .__version__ import __title__, __description__, __url__, __version__ +from .__version__ import __author__, __author_email__, __license__, __copyright__