* fix: errors to improve pylint scores * fix: test * fix * add: flake ignore rule to pip8speaks conf * fix * add: test patterns to deepsource conf
36 lines
1.0 KiB
Python
36 lines
1.0 KiB
Python
"""Module initializer and provider of static infomation."""
|
|
|
|
__title__ = "waybackpy"
|
|
__description__ = (
|
|
"Python package that interfaces with the Internet Archive's Wayback Machine APIs. "
|
|
"Archive pages and retrieve archived pages easily."
|
|
)
|
|
__url__ = "https://akamhy.github.io/waybackpy/"
|
|
__version__ = "3.0.2"
|
|
__download_url__ = f"https://github.com/akamhy/waybackpy/archive/{__version__}.tar.gz"
|
|
__author__ = "Akash Mahanty"
|
|
__author_email__ = "akamhy@yahoo.com"
|
|
__license__ = "MIT"
|
|
__copyright__ = "Copyright 2020-2022 Akash Mahanty et al."
|
|
|
|
from .availability_api import WaybackMachineAvailabilityAPI
|
|
from .cdx_api import WaybackMachineCDXServerAPI
|
|
from .save_api import WaybackMachineSaveAPI
|
|
from .wrapper import Url
|
|
|
|
__all__ = [
|
|
"__author__",
|
|
"__author_email__",
|
|
"__copyright__",
|
|
"__description__",
|
|
"__license__",
|
|
"__title__",
|
|
"__url__",
|
|
"__download_url__",
|
|
"__version__",
|
|
"WaybackMachineAvailabilityAPI",
|
|
"WaybackMachineCDXServerAPI",
|
|
"WaybackMachineSaveAPI",
|
|
"Url",
|
|
]
|