From 24540d0b2cc9a006692ccb70049e5bef8711b117 Mon Sep 17 00:00:00 2001 From: akamhy <64683866+akamhy@users.noreply.github.com> Date: Thu, 7 May 2020 19:33:39 +0530 Subject: [PATCH] update --- waybackpy/__init__.py | 32 ++++++++++++++++++++++++++++---- 1 file changed, 28 insertions(+), 4 deletions(-) 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__