Format and lint codes and fix packaging (#125)
* add: configure files (setup.py->setup.py+setup.cfg+pyproject.toml) * add: __download_url__ * format with black and isort * fix: flake8 section in setup.cfg * add: E501 to flake ignore * fix: metadata.name does not accept attr * fix: merge __version__.py into __init__.py * fix: flake8 errors in tests/ * fix: datetime.datetime -> datetime * fix: banner * fix: ignore W605 for banner * fix: way to install deps in CI * add: versem to setuptools * fix: drop python<=3.6 (#126) from package and CI
This commit is contained in:
		@@ -1,14 +1,37 @@
 | 
			
		||||
from .wrapper import Url
 | 
			
		||||
__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__ = (
 | 
			
		||||
    "https://github.com/akamhy/waybackpy/archive/{version}.tar.gz".format(
 | 
			
		||||
        version=__version__
 | 
			
		||||
    )
 | 
			
		||||
)
 | 
			
		||||
__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 .availability_api import WaybackMachineAvailabilityAPI
 | 
			
		||||
from .__version__ import (
 | 
			
		||||
    __title__,
 | 
			
		||||
    __description__,
 | 
			
		||||
    __url__,
 | 
			
		||||
    __version__,
 | 
			
		||||
    __author__,
 | 
			
		||||
    __author_email__,
 | 
			
		||||
    __license__,
 | 
			
		||||
    __copyright__,
 | 
			
		||||
)
 | 
			
		||||
from .wrapper import Url
 | 
			
		||||
 | 
			
		||||
__all__ = [
 | 
			
		||||
    "__author__",
 | 
			
		||||
    "__author_email__",
 | 
			
		||||
    "__copyright__",
 | 
			
		||||
    "__description__",
 | 
			
		||||
    "__license__",
 | 
			
		||||
    "__title__",
 | 
			
		||||
    "__url__",
 | 
			
		||||
    "__download_url__",
 | 
			
		||||
    "__version__",
 | 
			
		||||
    "WaybackMachineAvailabilityAPI",
 | 
			
		||||
    "WaybackMachineCDXServerAPI",
 | 
			
		||||
    "WaybackMachineSaveAPI",
 | 
			
		||||
    "Url",
 | 
			
		||||
]
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +0,0 @@
 | 
			
		||||
__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"
 | 
			
		||||
__author__ = "Akash Mahanty"
 | 
			
		||||
__author_email__ = "akamhy@yahoo.com"
 | 
			
		||||
__license__ = "MIT"
 | 
			
		||||
__copyright__ = "Copyright 2020-2022 Akash Mahanty et al."
 | 
			
		||||
@@ -1,12 +1,14 @@
 | 
			
		||||
import time
 | 
			
		||||
import json
 | 
			
		||||
import requests
 | 
			
		||||
import time
 | 
			
		||||
from datetime import datetime
 | 
			
		||||
from .utils import DEFAULT_USER_AGENT
 | 
			
		||||
 | 
			
		||||
import requests
 | 
			
		||||
 | 
			
		||||
from .exceptions import (
 | 
			
		||||
    ArchiveNotInAvailabilityAPIResponse,
 | 
			
		||||
    InvalidJSONInAvailabilityAPIResponse,
 | 
			
		||||
)
 | 
			
		||||
from .utils import DEFAULT_USER_AGENT
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class WaybackMachineAvailabilityAPI:
 | 
			
		||||
 
 | 
			
		||||
@@ -1,14 +1,13 @@
 | 
			
		||||
from .exceptions import WaybackError
 | 
			
		||||
from .cdx_snapshot import CDXSnapshot
 | 
			
		||||
from .cdx_utils import (
 | 
			
		||||
    get_total_pages,
 | 
			
		||||
    get_response,
 | 
			
		||||
    check_filters,
 | 
			
		||||
    check_collapses,
 | 
			
		||||
    check_filters,
 | 
			
		||||
    check_match_type,
 | 
			
		||||
    full_url,
 | 
			
		||||
    get_response,
 | 
			
		||||
    get_total_pages,
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
from .exceptions import WaybackError
 | 
			
		||||
from .utils import DEFAULT_USER_AGENT
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,9 @@
 | 
			
		||||
import re
 | 
			
		||||
 | 
			
		||||
import requests
 | 
			
		||||
from urllib3.util.retry import Retry
 | 
			
		||||
from requests.adapters import HTTPAdapter
 | 
			
		||||
from urllib3.util.retry import Retry
 | 
			
		||||
 | 
			
		||||
from .exceptions import WaybackError
 | 
			
		||||
from .utils import DEFAULT_USER_AGENT
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,15 +1,17 @@
 | 
			
		||||
import click
 | 
			
		||||
import re
 | 
			
		||||
import os
 | 
			
		||||
import json as JSON
 | 
			
		||||
import os
 | 
			
		||||
import random
 | 
			
		||||
import requests
 | 
			
		||||
import re
 | 
			
		||||
import string
 | 
			
		||||
from .__version__ import __version__
 | 
			
		||||
from .utils import DEFAULT_USER_AGENT
 | 
			
		||||
 | 
			
		||||
import click
 | 
			
		||||
import requests
 | 
			
		||||
 | 
			
		||||
from . import __version__
 | 
			
		||||
from .availability_api import WaybackMachineAvailabilityAPI
 | 
			
		||||
from .cdx_api import WaybackMachineCDXServerAPI
 | 
			
		||||
from .save_api import WaybackMachineSaveAPI
 | 
			
		||||
from .availability_api import WaybackMachineAvailabilityAPI
 | 
			
		||||
from .utils import DEFAULT_USER_AGENT
 | 
			
		||||
from .wrapper import Url
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,13 +1,13 @@
 | 
			
		||||
import re
 | 
			
		||||
import time
 | 
			
		||||
import requests
 | 
			
		||||
 | 
			
		||||
from datetime import datetime
 | 
			
		||||
from urllib3.util.retry import Retry
 | 
			
		||||
from requests.adapters import HTTPAdapter
 | 
			
		||||
 | 
			
		||||
from .utils import DEFAULT_USER_AGENT
 | 
			
		||||
import requests
 | 
			
		||||
from requests.adapters import HTTPAdapter
 | 
			
		||||
from urllib3.util.retry import Retry
 | 
			
		||||
 | 
			
		||||
from .exceptions import MaximumSaveRetriesExceeded
 | 
			
		||||
from .utils import DEFAULT_USER_AGENT
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class WaybackMachineSaveAPI:
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +1,6 @@
 | 
			
		||||
import requests
 | 
			
		||||
from .__version__ import __version__
 | 
			
		||||
 | 
			
		||||
from . import __version__
 | 
			
		||||
 | 
			
		||||
DEFAULT_USER_AGENT = "waybackpy %s - https://github.com/akamhy/waybackpy" % __version__
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,8 +1,9 @@
 | 
			
		||||
from .save_api import WaybackMachineSaveAPI
 | 
			
		||||
from datetime import datetime, timedelta
 | 
			
		||||
 | 
			
		||||
from .availability_api import WaybackMachineAvailabilityAPI
 | 
			
		||||
from .cdx_api import WaybackMachineCDXServerAPI
 | 
			
		||||
from .save_api import WaybackMachineSaveAPI
 | 
			
		||||
from .utils import DEFAULT_USER_AGENT
 | 
			
		||||
from datetime import datetime, timedelta
 | 
			
		||||
 | 
			
		||||
"""
 | 
			
		||||
The Url class is not recommended to be used anymore, instead use the
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user