├── src ├── chardet │ ├── cli │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ └── chardetect.pyc │ ├── enums.pyc │ ├── escsm.pyc │ ├── __init__.pyc │ ├── big5freq.pyc │ ├── compat.pyc │ ├── jisfreq.pyc │ ├── jpcntx.pyc │ ├── mbcssm.pyc │ ├── version.pyc │ ├── big5prober.pyc │ ├── escprober.pyc │ ├── euckrfreq.pyc │ ├── euctwfreq.pyc │ ├── gb2312freq.pyc │ ├── sjisprober.pyc │ ├── utf8prober.pyc │ ├── charsetprober.pyc │ ├── cp949prober.pyc │ ├── eucjpprober.pyc │ ├── euckrprober.pyc │ ├── euctwprober.pyc │ ├── gb2312prober.pyc │ ├── hebrewprober.pyc │ ├── langthaimodel.pyc │ ├── latin1prober.pyc │ ├── langgreekmodel.pyc │ ├── langhebrewmodel.pyc │ ├── mbcharsetprober.pyc │ ├── mbcsgroupprober.pyc │ ├── sbcharsetprober.pyc │ ├── sbcsgroupprober.pyc │ ├── chardistribution.pyc │ ├── charsetgroupprober.pyc │ ├── codingstatemachine.pyc │ ├── langbulgarianmodel.pyc │ ├── langcyrillicmodel.pyc │ ├── langhungarianmodel.pyc │ ├── langturkishmodel.pyc │ ├── universaldetector.pyc │ ├── version.py │ ├── compat.py │ └── __init__.py ├── urllib3 │ ├── contrib │ │ ├── __init__.py │ │ ├── _securetransport │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── bindings.pyc │ │ │ └── low_level.pyc │ │ ├── socks.pyc │ │ ├── __init__.pyc │ │ ├── appengine.pyc │ │ ├── ntlmpool.pyc │ │ ├── pyopenssl.pyc │ │ ├── securetransport.pyc │ │ ├── _appengine_environ.pyc │ │ └── _appengine_environ.py │ ├── packages │ │ ├── backports │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── makefile.pyc │ │ │ └── makefile.py │ │ ├── six.pyc │ │ ├── __init__.pyc │ │ ├── __init__.py │ │ └── ssl_match_hostname │ │ │ ├── __init__.pyc │ │ │ ├── _implementation.pyc │ │ │ └── __init__.py │ ├── _version.py │ ├── __init__.pyc │ ├── _version.pyc │ ├── fields.pyc │ ├── filepost.pyc │ ├── request.pyc │ ├── response.pyc │ ├── util │ │ ├── url.pyc │ │ ├── queue.pyc │ │ ├── retry.pyc │ │ ├── ssl_.pyc │ │ ├── wait.pyc │ │ ├── __init__.pyc │ │ ├── request.pyc │ │ ├── response.pyc │ │ ├── timeout.pyc │ │ ├── connection.pyc │ │ ├── queue.py │ │ └── __init__.py │ ├── connection.pyc │ ├── exceptions.pyc │ ├── _collections.pyc │ ├── poolmanager.pyc │ └── connectionpool.pyc ├── Flask-1.1.2.dist-info │ ├── INSTALLER │ ├── top_level.txt │ ├── entry_points.txt │ ├── WHEEL │ └── LICENSE.rst ├── click-7.1.2.dist-info │ ├── INSTALLER │ ├── top_level.txt │ ├── WHEEL │ └── LICENSE.rst ├── idna-2.10.dist-info │ ├── INSTALLER │ ├── top_level.txt │ ├── WHEEL │ ├── RECORD │ └── LICENSE.rst ├── Jinja2-2.11.2.dist-info │ ├── INSTALLER │ ├── top_level.txt │ ├── entry_points.txt │ ├── WHEEL │ └── LICENSE.rst ├── MarkupSafe-1.1.1.dist-info │ ├── INSTALLER │ ├── top_level.txt │ ├── WHEEL │ ├── RECORD │ └── LICENSE.rst ├── Werkzeug-1.0.1.dist-info │ ├── INSTALLER │ ├── top_level.txt │ ├── WHEEL │ └── LICENSE.rst ├── archivenow │ ├── pathlib-1.0.1.dist-info │ │ ├── REQUESTED │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ ├── WHEEL │ │ ├── RECORD │ │ └── LICENSE.txt │ ├── Flask-1.1.2.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ ├── entry_points.txt │ │ ├── WHEEL │ │ └── LICENSE.rst │ ├── Jinja2-2.11.2.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ ├── entry_points.txt │ │ ├── WHEEL │ │ └── LICENSE.rst │ ├── Werkzeug-1.0.1.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ ├── WHEEL │ │ └── LICENSE.rst │ ├── click-7.1.2.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ ├── WHEEL │ │ └── LICENSE.rst │ ├── MarkupSafe-1.1.1.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ ├── WHEEL │ │ ├── RECORD │ │ └── LICENSE.rst │ ├── __init__.py │ ├── itsdangerous-1.1.0.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ ├── WHEEL │ │ └── RECORD │ ├── pathlib.pyc │ ├── __init__.pyc │ ├── archivenow.pyc │ ├── click │ │ ├── core.pyc │ │ ├── parser.pyc │ │ ├── termui.pyc │ │ ├── types.pyc │ │ ├── utils.pyc │ │ ├── __init__.pyc │ │ ├── _compat.pyc │ │ ├── _textwrap.pyc │ │ ├── globals.pyc │ │ ├── testing.pyc │ │ ├── _unicodefun.pyc │ │ ├── _winconsole.pyc │ │ ├── decorators.pyc │ │ ├── exceptions.pyc │ │ ├── formatting.pyc │ │ ├── _bashcomplete.pyc │ │ ├── _termui_impl.pyc │ │ ├── _textwrap.py │ │ └── globals.py │ ├── flask │ │ ├── app.pyc │ │ ├── cli.pyc │ │ ├── ctx.pyc │ │ ├── config.pyc │ │ ├── views.pyc │ │ ├── __init__.pyc │ │ ├── __main__.pyc │ │ ├── _compat.pyc │ │ ├── globals.pyc │ │ ├── helpers.pyc │ │ ├── json │ │ │ ├── tag.pyc │ │ │ └── __init__.pyc │ │ ├── logging.pyc │ │ ├── sessions.pyc │ │ ├── signals.pyc │ │ ├── testing.pyc │ │ ├── wrappers.pyc │ │ ├── blueprints.pyc │ │ ├── templating.pyc │ │ ├── debughelpers.pyc │ │ └── __main__.py │ ├── jinja2 │ │ ├── ext.pyc │ │ ├── debug.pyc │ │ ├── lexer.pyc │ │ ├── meta.pyc │ │ ├── nodes.pyc │ │ ├── tests.pyc │ │ ├── utils.pyc │ │ ├── __init__.pyc │ │ ├── _compat.pyc │ │ ├── bccache.pyc │ │ ├── compiler.pyc │ │ ├── defaults.pyc │ │ ├── filters.pyc │ │ ├── loaders.pyc │ │ ├── parser.pyc │ │ ├── runtime.pyc │ │ ├── sandbox.pyc │ │ ├── visitor.pyc │ │ ├── constants.pyc │ │ ├── exceptions.pyc │ │ ├── idtracking.pyc │ │ ├── optimizer.pyc │ │ ├── _identifier.pyc │ │ ├── environment.pyc │ │ ├── nativetypes.pyc │ │ ├── _identifier.py │ │ ├── defaults.py │ │ ├── constants.py │ │ ├── optimizer.py │ │ └── __init__.py │ ├── werkzeug │ │ ├── http.pyc │ │ ├── local.pyc │ │ ├── test.pyc │ │ ├── urls.pyc │ │ ├── utils.pyc │ │ ├── wsgi.pyc │ │ ├── __init__.pyc │ │ ├── _compat.pyc │ │ ├── routing.pyc │ │ ├── security.pyc │ │ ├── serving.pyc │ │ ├── testapp.pyc │ │ ├── _internal.pyc │ │ ├── _reloader.pyc │ │ ├── debug │ │ │ ├── repr.pyc │ │ │ ├── console.pyc │ │ │ ├── tbtools.pyc │ │ │ ├── __init__.pyc │ │ │ └── shared │ │ │ │ ├── less.png │ │ │ │ ├── more.png │ │ │ │ ├── console.png │ │ │ │ ├── source.png │ │ │ │ └── ubuntu.ttf │ │ ├── exceptions.pyc │ │ ├── filesystem.pyc │ │ ├── formparser.pyc │ │ ├── useragents.pyc │ │ ├── wrappers │ │ │ ├── auth.pyc │ │ │ ├── cors.pyc │ │ │ ├── etag.pyc │ │ │ ├── json.pyc │ │ │ ├── accept.pyc │ │ │ ├── request.pyc │ │ │ ├── __init__.pyc │ │ │ ├── response.pyc │ │ │ ├── base_request.pyc │ │ │ ├── user_agent.pyc │ │ │ ├── base_response.pyc │ │ │ ├── common_descriptors.pyc │ │ │ ├── user_agent.py │ │ │ ├── auth.py │ │ │ ├── __init__.py │ │ │ └── request.py │ │ ├── datastructures.pyc │ │ ├── middleware │ │ │ ├── lint.pyc │ │ │ ├── __init__.pyc │ │ │ ├── dispatcher.pyc │ │ │ ├── http_proxy.pyc │ │ │ ├── profiler.pyc │ │ │ ├── proxy_fix.pyc │ │ │ ├── shared_data.pyc │ │ │ └── __init__.py │ │ ├── posixemulation.pyc │ │ └── __init__.py │ ├── itsdangerous │ │ ├── exc.pyc │ │ ├── jws.pyc │ │ ├── _compat.pyc │ │ ├── _json.pyc │ │ ├── signer.pyc │ │ ├── timed.pyc │ │ ├── __init__.pyc │ │ ├── encoding.pyc │ │ ├── url_safe.pyc │ │ ├── serializer.pyc │ │ ├── _json.py │ │ ├── __init__.py │ │ ├── _compat.py │ │ └── encoding.py │ ├── handlers │ │ ├── cc_handler.pyc │ │ ├── ia_handler.pyc │ │ ├── is_handler.pyc │ │ ├── mg_handler.pyc │ │ ├── st_handler.pyc │ │ ├── wc_handler.pyc │ │ ├── warc_handler.pyc │ │ ├── warc_handler.py │ │ ├── st_handler.py │ │ └── cc_handler.py │ ├── markupsafe │ │ ├── __init__.pyc │ │ ├── _compat.pyc │ │ ├── _native.pyc │ │ ├── _speedups.so │ │ ├── _constants.pyc │ │ └── _compat.py │ ├── static │ │ └── ajax-loader.gif │ └── bin │ │ └── flask ├── chardet-3.0.4.dist-info │ ├── INSTALLER │ ├── top_level.txt │ ├── entry_points.txt │ ├── WHEEL │ └── metadata.json ├── requests-2.24.0.dist-info │ ├── INSTALLER │ ├── top_level.txt │ ├── WHEEL │ ├── LICENSE.txt │ └── metadata.json ├── urllib3-1.25.10.dist-info │ ├── INSTALLER │ ├── top_level.txt │ ├── WHEEL │ └── LICENSE.txt ├── archivenow-2020.7.18.12.19.44.dist-info │ ├── REQUESTED │ ├── INSTALLER │ ├── top_level.txt │ ├── entry_points.txt │ ├── WHEEL │ └── LICENSE ├── certifi-2020.6.20.dist-info │ ├── INSTALLER │ ├── top_level.txt │ ├── WHEEL │ ├── RECORD │ └── LICENSE ├── itsdangerous-1.1.0.dist-info │ ├── INSTALLER │ ├── top_level.txt │ ├── WHEEL │ └── RECORD ├── idna │ ├── package_data.py │ ├── __init__.py │ ├── codec.pyc │ ├── compat.pyc │ ├── core.pyc │ ├── __init__.pyc │ ├── idnadata.pyc │ ├── intranges.pyc │ ├── uts46data.pyc │ ├── package_data.pyc │ └── compat.py ├── .DS_Store ├── icon.png ├── monolith ├── certifi │ ├── __init__.py │ ├── core.pyc │ ├── __init__.pyc │ ├── __main__.pyc │ └── __main__.py ├── click │ ├── core.pyc │ ├── types.pyc │ ├── utils.pyc │ ├── _compat.pyc │ ├── globals.pyc │ ├── parser.pyc │ ├── termui.pyc │ ├── testing.pyc │ ├── __init__.pyc │ ├── _textwrap.pyc │ ├── decorators.pyc │ ├── exceptions.pyc │ ├── formatting.pyc │ ├── _termui_impl.pyc │ ├── _unicodefun.pyc │ ├── _winconsole.pyc │ ├── _bashcomplete.pyc │ ├── _textwrap.py │ └── globals.py ├── flask │ ├── app.pyc │ ├── cli.pyc │ ├── ctx.pyc │ ├── views.pyc │ ├── _compat.pyc │ ├── config.pyc │ ├── globals.pyc │ ├── helpers.pyc │ ├── logging.pyc │ ├── signals.pyc │ ├── testing.pyc │ ├── __init__.pyc │ ├── __main__.pyc │ ├── blueprints.pyc │ ├── json │ │ ├── tag.pyc │ │ └── __init__.pyc │ ├── sessions.pyc │ ├── templating.pyc │ ├── wrappers.pyc │ ├── debughelpers.pyc │ └── __main__.py ├── jinja2 │ ├── ext.pyc │ ├── meta.pyc │ ├── debug.pyc │ ├── lexer.pyc │ ├── nodes.pyc │ ├── parser.pyc │ ├── tests.pyc │ ├── utils.pyc │ ├── __init__.pyc │ ├── _compat.pyc │ ├── bccache.pyc │ ├── compiler.pyc │ ├── constants.pyc │ ├── defaults.pyc │ ├── filters.pyc │ ├── loaders.pyc │ ├── optimizer.pyc │ ├── runtime.pyc │ ├── sandbox.pyc │ ├── visitor.pyc │ ├── _identifier.pyc │ ├── environment.pyc │ ├── exceptions.pyc │ ├── idtracking.pyc │ ├── nativetypes.pyc │ ├── _identifier.py │ ├── defaults.py │ ├── constants.py │ ├── optimizer.py │ └── __init__.py ├── requests │ ├── api.pyc │ ├── auth.pyc │ ├── help.pyc │ ├── certs.pyc │ ├── compat.pyc │ ├── cookies.pyc │ ├── hooks.pyc │ ├── models.pyc │ ├── utils.pyc │ ├── __init__.pyc │ ├── adapters.pyc │ ├── packages.pyc │ ├── sessions.pyc │ ├── __version__.pyc │ ├── exceptions.pyc │ ├── status_codes.pyc │ ├── structures.pyc │ ├── _internal_utils.pyc │ ├── __version__.py │ ├── certs.py │ ├── packages.py │ ├── hooks.py │ └── _internal_utils.py ├── werkzeug │ ├── http.pyc │ ├── test.pyc │ ├── urls.pyc │ ├── wsgi.pyc │ ├── _compat.pyc │ ├── local.pyc │ ├── routing.pyc │ ├── serving.pyc │ ├── testapp.pyc │ ├── utils.pyc │ ├── __init__.pyc │ ├── _internal.pyc │ ├── _reloader.pyc │ ├── security.pyc │ ├── debug │ │ ├── repr.pyc │ │ ├── __init__.pyc │ │ ├── console.pyc │ │ ├── tbtools.pyc │ │ └── shared │ │ │ ├── less.png │ │ │ ├── more.png │ │ │ ├── source.png │ │ │ ├── ubuntu.ttf │ │ │ └── console.png │ ├── exceptions.pyc │ ├── filesystem.pyc │ ├── formparser.pyc │ ├── useragents.pyc │ ├── datastructures.pyc │ ├── posixemulation.pyc │ ├── wrappers │ │ ├── auth.pyc │ │ ├── cors.pyc │ │ ├── etag.pyc │ │ ├── json.pyc │ │ ├── __init__.pyc │ │ ├── accept.pyc │ │ ├── request.pyc │ │ ├── response.pyc │ │ ├── user_agent.pyc │ │ ├── base_request.pyc │ │ ├── base_response.pyc │ │ ├── common_descriptors.pyc │ │ ├── user_agent.py │ │ ├── auth.py │ │ ├── __init__.py │ │ └── request.py │ ├── middleware │ │ ├── lint.pyc │ │ ├── __init__.pyc │ │ ├── profiler.pyc │ │ ├── dispatcher.pyc │ │ ├── http_proxy.pyc │ │ ├── proxy_fix.pyc │ │ ├── shared_data.pyc │ │ └── __init__.py │ └── __init__.py ├── itsdangerous │ ├── exc.pyc │ ├── jws.pyc │ ├── _json.pyc │ ├── timed.pyc │ ├── __init__.pyc │ ├── _compat.pyc │ ├── encoding.pyc │ ├── signer.pyc │ ├── url_safe.pyc │ ├── serializer.pyc │ ├── _json.py │ ├── __init__.py │ ├── _compat.py │ └── encoding.py ├── markupsafe │ ├── _compat.pyc │ ├── _native.pyc │ ├── __init__.pyc │ ├── _constants.pyc │ ├── _speedups.so │ └── _compat.py ├── 1F7F644A-2B5C-4F56-8EBF-1B91ACCC3970.png ├── 9241E7F5-9664-4296-9A45-379AA2C3CF9F.png ├── A2BEA417-9A5F-4560-B8C8-F1278E1311EC.png ├── A6FE832A-5C88-4EC4-AB10-BFE143F9105D.png ├── bin │ └── chardetect └── dbshare2.py ├── .DS_Store ├── Icons.sketch ├── Glass Dome.alfredworkflow └── CONTRIBUTING.md /src/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Flask-1.1.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/click-7.1.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/idna-2.10.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Jinja2-2.11.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/MarkupSafe-1.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/Werkzeug-1.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/archivenow/pathlib-1.0.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/chardet-3.0.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/idna-2.10.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /src/requests-2.24.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/urllib3-1.25.10.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Flask-1.1.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /src/Jinja2-2.11.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jinja2 2 | -------------------------------------------------------------------------------- /src/archivenow-2020.7.18.12.19.44.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/certifi-2020.6.20.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/chardet-3.0.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | chardet 2 | -------------------------------------------------------------------------------- /src/click-7.1.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /src/itsdangerous-1.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/Werkzeug-1.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | werkzeug 2 | -------------------------------------------------------------------------------- /src/archivenow/Flask-1.1.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/archivenow/Jinja2-2.11.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/archivenow/Werkzeug-1.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/archivenow/click-7.1.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/archivenow/pathlib-1.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/certifi-2020.6.20.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /src/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.10' 2 | 3 | -------------------------------------------------------------------------------- /src/requests-2.24.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /src/urllib3-1.25.10.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /src/MarkupSafe-1.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | markupsafe 2 | -------------------------------------------------------------------------------- /src/archivenow-2020.7.18.12.19.44.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/archivenow/Flask-1.1.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /src/archivenow/Jinja2-2.11.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jinja2 2 | -------------------------------------------------------------------------------- /src/archivenow/MarkupSafe-1.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/archivenow/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '2020.7.18.12.19.44' -------------------------------------------------------------------------------- /src/archivenow/click-7.1.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /src/archivenow/itsdangerous-1.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/itsdangerous-1.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | itsdangerous 2 | -------------------------------------------------------------------------------- /src/archivenow/Werkzeug-1.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | werkzeug 2 | -------------------------------------------------------------------------------- /src/archivenow/pathlib-1.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pathlib 2 | -------------------------------------------------------------------------------- /src/archivenow-2020.7.18.12.19.44.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | archivenow 2 | -------------------------------------------------------------------------------- /src/archivenow/MarkupSafe-1.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | markupsafe 2 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/.DS_Store -------------------------------------------------------------------------------- /src/archivenow/itsdangerous-1.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | itsdangerous 2 | -------------------------------------------------------------------------------- /Icons.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/Icons.sketch -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /src/monolith: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/monolith -------------------------------------------------------------------------------- /src/Flask-1.1.2.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | flask = flask.cli:main 3 | 4 | -------------------------------------------------------------------------------- /src/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.06.20" 4 | -------------------------------------------------------------------------------- /src/click/core.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/click/core.pyc -------------------------------------------------------------------------------- /src/click/types.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/click/types.pyc -------------------------------------------------------------------------------- /src/click/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/click/utils.pyc -------------------------------------------------------------------------------- /src/flask/app.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/flask/app.pyc -------------------------------------------------------------------------------- /src/flask/cli.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/flask/cli.pyc -------------------------------------------------------------------------------- /src/flask/ctx.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/flask/ctx.pyc -------------------------------------------------------------------------------- /src/flask/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/flask/views.pyc -------------------------------------------------------------------------------- /src/idna/codec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/idna/codec.pyc -------------------------------------------------------------------------------- /src/idna/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/idna/compat.pyc -------------------------------------------------------------------------------- /src/idna/core.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/idna/core.pyc -------------------------------------------------------------------------------- /src/jinja2/ext.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/ext.pyc -------------------------------------------------------------------------------- /src/jinja2/meta.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/meta.pyc -------------------------------------------------------------------------------- /src/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.25.10" 3 | -------------------------------------------------------------------------------- /src/certifi/core.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/certifi/core.pyc -------------------------------------------------------------------------------- /src/chardet/enums.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/enums.pyc -------------------------------------------------------------------------------- /src/chardet/escsm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/escsm.pyc -------------------------------------------------------------------------------- /src/click/_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/click/_compat.pyc -------------------------------------------------------------------------------- /src/click/globals.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/click/globals.pyc -------------------------------------------------------------------------------- /src/click/parser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/click/parser.pyc -------------------------------------------------------------------------------- /src/click/termui.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/click/termui.pyc -------------------------------------------------------------------------------- /src/click/testing.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/click/testing.pyc -------------------------------------------------------------------------------- /src/flask/_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/flask/_compat.pyc -------------------------------------------------------------------------------- /src/flask/config.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/flask/config.pyc -------------------------------------------------------------------------------- /src/flask/globals.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/flask/globals.pyc -------------------------------------------------------------------------------- /src/flask/helpers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/flask/helpers.pyc -------------------------------------------------------------------------------- /src/flask/logging.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/flask/logging.pyc -------------------------------------------------------------------------------- /src/flask/signals.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/flask/signals.pyc -------------------------------------------------------------------------------- /src/flask/testing.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/flask/testing.pyc -------------------------------------------------------------------------------- /src/idna/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/idna/__init__.pyc -------------------------------------------------------------------------------- /src/idna/idnadata.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/idna/idnadata.pyc -------------------------------------------------------------------------------- /src/jinja2/debug.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/debug.pyc -------------------------------------------------------------------------------- /src/jinja2/lexer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/lexer.pyc -------------------------------------------------------------------------------- /src/jinja2/nodes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/nodes.pyc -------------------------------------------------------------------------------- /src/jinja2/parser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/parser.pyc -------------------------------------------------------------------------------- /src/jinja2/tests.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/tests.pyc -------------------------------------------------------------------------------- /src/jinja2/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/utils.pyc -------------------------------------------------------------------------------- /src/requests/api.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/requests/api.pyc -------------------------------------------------------------------------------- /src/requests/auth.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/requests/auth.pyc -------------------------------------------------------------------------------- /src/requests/help.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/requests/help.pyc -------------------------------------------------------------------------------- /src/werkzeug/http.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/http.pyc -------------------------------------------------------------------------------- /src/werkzeug/test.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/test.pyc -------------------------------------------------------------------------------- /src/werkzeug/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/urls.pyc -------------------------------------------------------------------------------- /src/werkzeug/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/wsgi.pyc -------------------------------------------------------------------------------- /src/archivenow/Flask-1.1.2.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | flask = flask.cli:main 3 | 4 | -------------------------------------------------------------------------------- /src/certifi/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/certifi/__init__.pyc -------------------------------------------------------------------------------- /src/certifi/__main__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/certifi/__main__.pyc -------------------------------------------------------------------------------- /src/chardet/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/__init__.pyc -------------------------------------------------------------------------------- /src/chardet/big5freq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/big5freq.pyc -------------------------------------------------------------------------------- /src/chardet/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/compat.pyc -------------------------------------------------------------------------------- /src/chardet/jisfreq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/jisfreq.pyc -------------------------------------------------------------------------------- /src/chardet/jpcntx.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/jpcntx.pyc -------------------------------------------------------------------------------- /src/chardet/mbcssm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/mbcssm.pyc -------------------------------------------------------------------------------- /src/chardet/version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/version.pyc -------------------------------------------------------------------------------- /src/click/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/click/__init__.pyc -------------------------------------------------------------------------------- /src/click/_textwrap.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/click/_textwrap.pyc -------------------------------------------------------------------------------- /src/click/decorators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/click/decorators.pyc -------------------------------------------------------------------------------- /src/click/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/click/exceptions.pyc -------------------------------------------------------------------------------- /src/click/formatting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/click/formatting.pyc -------------------------------------------------------------------------------- /src/flask/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/flask/__init__.pyc -------------------------------------------------------------------------------- /src/flask/__main__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/flask/__main__.pyc -------------------------------------------------------------------------------- /src/flask/blueprints.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/flask/blueprints.pyc -------------------------------------------------------------------------------- /src/flask/json/tag.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/flask/json/tag.pyc -------------------------------------------------------------------------------- /src/flask/sessions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/flask/sessions.pyc -------------------------------------------------------------------------------- /src/flask/templating.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/flask/templating.pyc -------------------------------------------------------------------------------- /src/flask/wrappers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/flask/wrappers.pyc -------------------------------------------------------------------------------- /src/idna/intranges.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/idna/intranges.pyc -------------------------------------------------------------------------------- /src/idna/uts46data.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/idna/uts46data.pyc -------------------------------------------------------------------------------- /src/itsdangerous/exc.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/itsdangerous/exc.pyc -------------------------------------------------------------------------------- /src/itsdangerous/jws.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/itsdangerous/jws.pyc -------------------------------------------------------------------------------- /src/jinja2/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/__init__.pyc -------------------------------------------------------------------------------- /src/jinja2/_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/_compat.pyc -------------------------------------------------------------------------------- /src/jinja2/bccache.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/bccache.pyc -------------------------------------------------------------------------------- /src/jinja2/compiler.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/compiler.pyc -------------------------------------------------------------------------------- /src/jinja2/constants.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/constants.pyc -------------------------------------------------------------------------------- /src/jinja2/defaults.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/defaults.pyc -------------------------------------------------------------------------------- /src/jinja2/filters.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/filters.pyc -------------------------------------------------------------------------------- /src/jinja2/loaders.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/loaders.pyc -------------------------------------------------------------------------------- /src/jinja2/optimizer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/optimizer.pyc -------------------------------------------------------------------------------- /src/jinja2/runtime.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/runtime.pyc -------------------------------------------------------------------------------- /src/jinja2/sandbox.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/sandbox.pyc -------------------------------------------------------------------------------- /src/jinja2/visitor.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/visitor.pyc -------------------------------------------------------------------------------- /src/requests/certs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/requests/certs.pyc -------------------------------------------------------------------------------- /src/requests/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/requests/compat.pyc -------------------------------------------------------------------------------- /src/requests/cookies.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/requests/cookies.pyc -------------------------------------------------------------------------------- /src/requests/hooks.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/requests/hooks.pyc -------------------------------------------------------------------------------- /src/requests/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/requests/models.pyc -------------------------------------------------------------------------------- /src/requests/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/requests/utils.pyc -------------------------------------------------------------------------------- /src/urllib3/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/__init__.pyc -------------------------------------------------------------------------------- /src/urllib3/_version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/_version.pyc -------------------------------------------------------------------------------- /src/urllib3/fields.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/fields.pyc -------------------------------------------------------------------------------- /src/urllib3/filepost.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/filepost.pyc -------------------------------------------------------------------------------- /src/urllib3/request.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/request.pyc -------------------------------------------------------------------------------- /src/urllib3/response.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/response.pyc -------------------------------------------------------------------------------- /src/urllib3/util/url.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/util/url.pyc -------------------------------------------------------------------------------- /src/werkzeug/_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/_compat.pyc -------------------------------------------------------------------------------- /src/werkzeug/local.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/local.pyc -------------------------------------------------------------------------------- /src/werkzeug/routing.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/routing.pyc -------------------------------------------------------------------------------- /src/werkzeug/serving.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/serving.pyc -------------------------------------------------------------------------------- /src/werkzeug/testapp.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/testapp.pyc -------------------------------------------------------------------------------- /src/werkzeug/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/utils.pyc -------------------------------------------------------------------------------- /Glass Dome.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/Glass Dome.alfredworkflow -------------------------------------------------------------------------------- /src/archivenow/pathlib.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/pathlib.pyc -------------------------------------------------------------------------------- /src/chardet/big5prober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/big5prober.pyc -------------------------------------------------------------------------------- /src/chardet/escprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/escprober.pyc -------------------------------------------------------------------------------- /src/chardet/euckrfreq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/euckrfreq.pyc -------------------------------------------------------------------------------- /src/chardet/euctwfreq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/euctwfreq.pyc -------------------------------------------------------------------------------- /src/chardet/gb2312freq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/gb2312freq.pyc -------------------------------------------------------------------------------- /src/chardet/sjisprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/sjisprober.pyc -------------------------------------------------------------------------------- /src/chardet/utf8prober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/utf8prober.pyc -------------------------------------------------------------------------------- /src/click/_termui_impl.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/click/_termui_impl.pyc -------------------------------------------------------------------------------- /src/click/_unicodefun.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/click/_unicodefun.pyc -------------------------------------------------------------------------------- /src/click/_winconsole.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/click/_winconsole.pyc -------------------------------------------------------------------------------- /src/flask/debughelpers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/flask/debughelpers.pyc -------------------------------------------------------------------------------- /src/idna/package_data.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/idna/package_data.pyc -------------------------------------------------------------------------------- /src/itsdangerous/_json.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/itsdangerous/_json.pyc -------------------------------------------------------------------------------- /src/itsdangerous/timed.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/itsdangerous/timed.pyc -------------------------------------------------------------------------------- /src/jinja2/_identifier.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/_identifier.pyc -------------------------------------------------------------------------------- /src/jinja2/environment.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/environment.pyc -------------------------------------------------------------------------------- /src/jinja2/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/exceptions.pyc -------------------------------------------------------------------------------- /src/jinja2/idtracking.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/idtracking.pyc -------------------------------------------------------------------------------- /src/jinja2/nativetypes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/jinja2/nativetypes.pyc -------------------------------------------------------------------------------- /src/markupsafe/_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/markupsafe/_compat.pyc -------------------------------------------------------------------------------- /src/markupsafe/_native.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/markupsafe/_native.pyc -------------------------------------------------------------------------------- /src/requests/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/requests/__init__.pyc -------------------------------------------------------------------------------- /src/requests/adapters.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/requests/adapters.pyc -------------------------------------------------------------------------------- /src/requests/packages.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/requests/packages.pyc -------------------------------------------------------------------------------- /src/requests/sessions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/requests/sessions.pyc -------------------------------------------------------------------------------- /src/urllib3/connection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/connection.pyc -------------------------------------------------------------------------------- /src/urllib3/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/exceptions.pyc -------------------------------------------------------------------------------- /src/urllib3/util/queue.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/util/queue.pyc -------------------------------------------------------------------------------- /src/urllib3/util/retry.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/util/retry.pyc -------------------------------------------------------------------------------- /src/urllib3/util/ssl_.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/util/ssl_.pyc -------------------------------------------------------------------------------- /src/urllib3/util/wait.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/util/wait.pyc -------------------------------------------------------------------------------- /src/werkzeug/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/__init__.pyc -------------------------------------------------------------------------------- /src/werkzeug/_internal.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/_internal.pyc -------------------------------------------------------------------------------- /src/werkzeug/_reloader.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/_reloader.pyc -------------------------------------------------------------------------------- /src/werkzeug/security.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/security.pyc -------------------------------------------------------------------------------- /src/Jinja2-2.11.2.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [babel.extractors] 2 | jinja2 = jinja2.ext:babel_extract [i18n] 3 | 4 | -------------------------------------------------------------------------------- /src/archivenow/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/__init__.pyc -------------------------------------------------------------------------------- /src/archivenow/archivenow.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/archivenow.pyc -------------------------------------------------------------------------------- /src/archivenow/click/core.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/click/core.pyc -------------------------------------------------------------------------------- /src/archivenow/flask/app.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/flask/app.pyc -------------------------------------------------------------------------------- /src/archivenow/flask/cli.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/flask/cli.pyc -------------------------------------------------------------------------------- /src/archivenow/flask/ctx.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/flask/ctx.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/ext.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/ext.pyc -------------------------------------------------------------------------------- /src/chardet-3.0.4.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | chardetect = chardet.cli.chardetect:main 3 | 4 | -------------------------------------------------------------------------------- /src/chardet/charsetprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/charsetprober.pyc -------------------------------------------------------------------------------- /src/chardet/cli/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/cli/__init__.pyc -------------------------------------------------------------------------------- /src/chardet/cp949prober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/cp949prober.pyc -------------------------------------------------------------------------------- /src/chardet/eucjpprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/eucjpprober.pyc -------------------------------------------------------------------------------- /src/chardet/euckrprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/euckrprober.pyc -------------------------------------------------------------------------------- /src/chardet/euctwprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/euctwprober.pyc -------------------------------------------------------------------------------- /src/chardet/gb2312prober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/gb2312prober.pyc -------------------------------------------------------------------------------- /src/chardet/hebrewprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/hebrewprober.pyc -------------------------------------------------------------------------------- /src/chardet/langthaimodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/langthaimodel.pyc -------------------------------------------------------------------------------- /src/chardet/latin1prober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/latin1prober.pyc -------------------------------------------------------------------------------- /src/click/_bashcomplete.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/click/_bashcomplete.pyc -------------------------------------------------------------------------------- /src/flask/json/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/flask/json/__init__.pyc -------------------------------------------------------------------------------- /src/itsdangerous/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/itsdangerous/__init__.pyc -------------------------------------------------------------------------------- /src/itsdangerous/_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/itsdangerous/_compat.pyc -------------------------------------------------------------------------------- /src/itsdangerous/encoding.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/itsdangerous/encoding.pyc -------------------------------------------------------------------------------- /src/itsdangerous/signer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/itsdangerous/signer.pyc -------------------------------------------------------------------------------- /src/itsdangerous/url_safe.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/itsdangerous/url_safe.pyc -------------------------------------------------------------------------------- /src/markupsafe/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/markupsafe/__init__.pyc -------------------------------------------------------------------------------- /src/markupsafe/_constants.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/markupsafe/_constants.pyc -------------------------------------------------------------------------------- /src/markupsafe/_speedups.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/markupsafe/_speedups.so -------------------------------------------------------------------------------- /src/requests/__version__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/requests/__version__.pyc -------------------------------------------------------------------------------- /src/requests/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/requests/exceptions.pyc -------------------------------------------------------------------------------- /src/requests/status_codes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/requests/status_codes.pyc -------------------------------------------------------------------------------- /src/requests/structures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/requests/structures.pyc -------------------------------------------------------------------------------- /src/urllib3/_collections.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/_collections.pyc -------------------------------------------------------------------------------- /src/urllib3/contrib/socks.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/contrib/socks.pyc -------------------------------------------------------------------------------- /src/urllib3/packages/six.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/packages/six.pyc -------------------------------------------------------------------------------- /src/urllib3/poolmanager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/poolmanager.pyc -------------------------------------------------------------------------------- /src/urllib3/util/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/util/__init__.pyc -------------------------------------------------------------------------------- /src/urllib3/util/request.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/util/request.pyc -------------------------------------------------------------------------------- /src/urllib3/util/response.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/util/response.pyc -------------------------------------------------------------------------------- /src/urllib3/util/timeout.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/util/timeout.pyc -------------------------------------------------------------------------------- /src/werkzeug/debug/repr.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/debug/repr.pyc -------------------------------------------------------------------------------- /src/werkzeug/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/exceptions.pyc -------------------------------------------------------------------------------- /src/werkzeug/filesystem.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/filesystem.pyc -------------------------------------------------------------------------------- /src/werkzeug/formparser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/formparser.pyc -------------------------------------------------------------------------------- /src/werkzeug/useragents.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/useragents.pyc -------------------------------------------------------------------------------- /src/archivenow/click/parser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/click/parser.pyc -------------------------------------------------------------------------------- /src/archivenow/click/termui.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/click/termui.pyc -------------------------------------------------------------------------------- /src/archivenow/click/types.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/click/types.pyc -------------------------------------------------------------------------------- /src/archivenow/click/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/click/utils.pyc -------------------------------------------------------------------------------- /src/archivenow/flask/config.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/flask/config.pyc -------------------------------------------------------------------------------- /src/archivenow/flask/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/flask/views.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/debug.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/debug.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/lexer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/lexer.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/meta.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/meta.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/nodes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/nodes.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/tests.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/tests.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/utils.pyc -------------------------------------------------------------------------------- /src/chardet/cli/chardetect.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/cli/chardetect.pyc -------------------------------------------------------------------------------- /src/chardet/langgreekmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/langgreekmodel.pyc -------------------------------------------------------------------------------- /src/chardet/langhebrewmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/langhebrewmodel.pyc -------------------------------------------------------------------------------- /src/chardet/mbcharsetprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/mbcharsetprober.pyc -------------------------------------------------------------------------------- /src/chardet/mbcsgroupprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/mbcsgroupprober.pyc -------------------------------------------------------------------------------- /src/chardet/sbcharsetprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/sbcharsetprober.pyc -------------------------------------------------------------------------------- /src/chardet/sbcsgroupprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/sbcsgroupprober.pyc -------------------------------------------------------------------------------- /src/itsdangerous/serializer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/itsdangerous/serializer.pyc -------------------------------------------------------------------------------- /src/urllib3/connectionpool.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/connectionpool.pyc -------------------------------------------------------------------------------- /src/urllib3/util/connection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/util/connection.pyc -------------------------------------------------------------------------------- /src/werkzeug/datastructures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/datastructures.pyc -------------------------------------------------------------------------------- /src/werkzeug/debug/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/debug/__init__.pyc -------------------------------------------------------------------------------- /src/werkzeug/debug/console.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/debug/console.pyc -------------------------------------------------------------------------------- /src/werkzeug/debug/tbtools.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/debug/tbtools.pyc -------------------------------------------------------------------------------- /src/werkzeug/posixemulation.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/posixemulation.pyc -------------------------------------------------------------------------------- /src/werkzeug/wrappers/auth.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/wrappers/auth.pyc -------------------------------------------------------------------------------- /src/werkzeug/wrappers/cors.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/wrappers/cors.pyc -------------------------------------------------------------------------------- /src/werkzeug/wrappers/etag.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/wrappers/etag.pyc -------------------------------------------------------------------------------- /src/werkzeug/wrappers/json.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/wrappers/json.pyc -------------------------------------------------------------------------------- /src/archivenow/Jinja2-2.11.2.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [babel.extractors] 2 | jinja2 = jinja2.ext:babel_extract [i18n] 3 | 4 | -------------------------------------------------------------------------------- /src/archivenow/click/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/click/__init__.pyc -------------------------------------------------------------------------------- /src/archivenow/click/_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/click/_compat.pyc -------------------------------------------------------------------------------- /src/archivenow/click/_textwrap.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/click/_textwrap.pyc -------------------------------------------------------------------------------- /src/archivenow/click/globals.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/click/globals.pyc -------------------------------------------------------------------------------- /src/archivenow/click/testing.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/click/testing.pyc -------------------------------------------------------------------------------- /src/archivenow/flask/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/flask/__init__.pyc -------------------------------------------------------------------------------- /src/archivenow/flask/__main__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/flask/__main__.pyc -------------------------------------------------------------------------------- /src/archivenow/flask/_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/flask/_compat.pyc -------------------------------------------------------------------------------- /src/archivenow/flask/globals.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/flask/globals.pyc -------------------------------------------------------------------------------- /src/archivenow/flask/helpers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/flask/helpers.pyc -------------------------------------------------------------------------------- /src/archivenow/flask/json/tag.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/flask/json/tag.pyc -------------------------------------------------------------------------------- /src/archivenow/flask/logging.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/flask/logging.pyc -------------------------------------------------------------------------------- /src/archivenow/flask/sessions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/flask/sessions.pyc -------------------------------------------------------------------------------- /src/archivenow/flask/signals.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/flask/signals.pyc -------------------------------------------------------------------------------- /src/archivenow/flask/testing.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/flask/testing.pyc -------------------------------------------------------------------------------- /src/archivenow/flask/wrappers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/flask/wrappers.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/__init__.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/_compat.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/bccache.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/bccache.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/compiler.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/compiler.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/defaults.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/defaults.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/filters.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/filters.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/loaders.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/loaders.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/parser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/parser.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/runtime.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/runtime.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/sandbox.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/sandbox.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/visitor.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/visitor.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/http.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/http.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/local.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/local.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/test.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/test.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/urls.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/utils.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/wsgi.pyc -------------------------------------------------------------------------------- /src/chardet/chardistribution.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/chardistribution.pyc -------------------------------------------------------------------------------- /src/chardet/charsetgroupprober.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/charsetgroupprober.pyc -------------------------------------------------------------------------------- /src/chardet/codingstatemachine.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/codingstatemachine.pyc -------------------------------------------------------------------------------- /src/chardet/langbulgarianmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/langbulgarianmodel.pyc -------------------------------------------------------------------------------- /src/chardet/langcyrillicmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/langcyrillicmodel.pyc -------------------------------------------------------------------------------- /src/chardet/langhungarianmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/langhungarianmodel.pyc -------------------------------------------------------------------------------- /src/chardet/langturkishmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/langturkishmodel.pyc -------------------------------------------------------------------------------- /src/chardet/universaldetector.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/chardet/universaldetector.pyc -------------------------------------------------------------------------------- /src/requests/_internal_utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/requests/_internal_utils.pyc -------------------------------------------------------------------------------- /src/urllib3/contrib/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/contrib/__init__.pyc -------------------------------------------------------------------------------- /src/urllib3/contrib/appengine.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/contrib/appengine.pyc -------------------------------------------------------------------------------- /src/urllib3/contrib/ntlmpool.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/contrib/ntlmpool.pyc -------------------------------------------------------------------------------- /src/urllib3/contrib/pyopenssl.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/contrib/pyopenssl.pyc -------------------------------------------------------------------------------- /src/urllib3/packages/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/packages/__init__.pyc -------------------------------------------------------------------------------- /src/werkzeug/debug/shared/less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/debug/shared/less.png -------------------------------------------------------------------------------- /src/werkzeug/debug/shared/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/debug/shared/more.png -------------------------------------------------------------------------------- /src/werkzeug/middleware/lint.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/middleware/lint.pyc -------------------------------------------------------------------------------- /src/werkzeug/wrappers/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/wrappers/__init__.pyc -------------------------------------------------------------------------------- /src/werkzeug/wrappers/accept.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/wrappers/accept.pyc -------------------------------------------------------------------------------- /src/werkzeug/wrappers/request.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/wrappers/request.pyc -------------------------------------------------------------------------------- /src/werkzeug/wrappers/response.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/wrappers/response.pyc -------------------------------------------------------------------------------- /src/archivenow/click/_unicodefun.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/click/_unicodefun.pyc -------------------------------------------------------------------------------- /src/archivenow/click/_winconsole.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/click/_winconsole.pyc -------------------------------------------------------------------------------- /src/archivenow/click/decorators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/click/decorators.pyc -------------------------------------------------------------------------------- /src/archivenow/click/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/click/exceptions.pyc -------------------------------------------------------------------------------- /src/archivenow/click/formatting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/click/formatting.pyc -------------------------------------------------------------------------------- /src/archivenow/flask/blueprints.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/flask/blueprints.pyc -------------------------------------------------------------------------------- /src/archivenow/flask/templating.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/flask/templating.pyc -------------------------------------------------------------------------------- /src/archivenow/itsdangerous/exc.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/itsdangerous/exc.pyc -------------------------------------------------------------------------------- /src/archivenow/itsdangerous/jws.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/itsdangerous/jws.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/constants.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/constants.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/exceptions.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/idtracking.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/idtracking.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/optimizer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/optimizer.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/__init__.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/_compat.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/routing.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/routing.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/security.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/security.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/serving.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/serving.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/testapp.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/testapp.pyc -------------------------------------------------------------------------------- /src/werkzeug/debug/shared/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/debug/shared/source.png -------------------------------------------------------------------------------- /src/werkzeug/debug/shared/ubuntu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/debug/shared/ubuntu.ttf -------------------------------------------------------------------------------- /src/werkzeug/middleware/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/middleware/__init__.pyc -------------------------------------------------------------------------------- /src/werkzeug/middleware/profiler.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/middleware/profiler.pyc -------------------------------------------------------------------------------- /src/werkzeug/wrappers/user_agent.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/wrappers/user_agent.pyc -------------------------------------------------------------------------------- /src/archivenow/click/_bashcomplete.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/click/_bashcomplete.pyc -------------------------------------------------------------------------------- /src/archivenow/click/_termui_impl.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/click/_termui_impl.pyc -------------------------------------------------------------------------------- /src/archivenow/flask/debughelpers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/flask/debughelpers.pyc -------------------------------------------------------------------------------- /src/archivenow/flask/json/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/flask/json/__init__.pyc -------------------------------------------------------------------------------- /src/archivenow/handlers/cc_handler.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/handlers/cc_handler.pyc -------------------------------------------------------------------------------- /src/archivenow/handlers/ia_handler.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/handlers/ia_handler.pyc -------------------------------------------------------------------------------- /src/archivenow/handlers/is_handler.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/handlers/is_handler.pyc -------------------------------------------------------------------------------- /src/archivenow/handlers/mg_handler.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/handlers/mg_handler.pyc -------------------------------------------------------------------------------- /src/archivenow/handlers/st_handler.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/handlers/st_handler.pyc -------------------------------------------------------------------------------- /src/archivenow/handlers/wc_handler.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/handlers/wc_handler.pyc -------------------------------------------------------------------------------- /src/archivenow/itsdangerous/_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/itsdangerous/_compat.pyc -------------------------------------------------------------------------------- /src/archivenow/itsdangerous/_json.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/itsdangerous/_json.pyc -------------------------------------------------------------------------------- /src/archivenow/itsdangerous/signer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/itsdangerous/signer.pyc -------------------------------------------------------------------------------- /src/archivenow/itsdangerous/timed.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/itsdangerous/timed.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/_identifier.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/_identifier.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/environment.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/environment.pyc -------------------------------------------------------------------------------- /src/archivenow/jinja2/nativetypes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/jinja2/nativetypes.pyc -------------------------------------------------------------------------------- /src/archivenow/markupsafe/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/markupsafe/__init__.pyc -------------------------------------------------------------------------------- /src/archivenow/markupsafe/_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/markupsafe/_compat.pyc -------------------------------------------------------------------------------- /src/archivenow/markupsafe/_native.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/markupsafe/_native.pyc -------------------------------------------------------------------------------- /src/archivenow/markupsafe/_speedups.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/markupsafe/_speedups.so -------------------------------------------------------------------------------- /src/archivenow/static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/static/ajax-loader.gif -------------------------------------------------------------------------------- /src/archivenow/werkzeug/_internal.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/_internal.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/_reloader.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/_reloader.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/debug/repr.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/debug/repr.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/exceptions.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/filesystem.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/filesystem.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/formparser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/formparser.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/useragents.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/useragents.pyc -------------------------------------------------------------------------------- /src/urllib3/contrib/securetransport.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/contrib/securetransport.pyc -------------------------------------------------------------------------------- /src/werkzeug/debug/shared/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/debug/shared/console.png -------------------------------------------------------------------------------- /src/werkzeug/middleware/dispatcher.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/middleware/dispatcher.pyc -------------------------------------------------------------------------------- /src/werkzeug/middleware/http_proxy.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/middleware/http_proxy.pyc -------------------------------------------------------------------------------- /src/werkzeug/middleware/proxy_fix.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/middleware/proxy_fix.pyc -------------------------------------------------------------------------------- /src/werkzeug/middleware/shared_data.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/middleware/shared_data.pyc -------------------------------------------------------------------------------- /src/werkzeug/wrappers/base_request.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/wrappers/base_request.pyc -------------------------------------------------------------------------------- /src/werkzeug/wrappers/base_response.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/wrappers/base_response.pyc -------------------------------------------------------------------------------- /src/archivenow/handlers/warc_handler.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/handlers/warc_handler.pyc -------------------------------------------------------------------------------- /src/archivenow/itsdangerous/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/itsdangerous/__init__.pyc -------------------------------------------------------------------------------- /src/archivenow/itsdangerous/encoding.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/itsdangerous/encoding.pyc -------------------------------------------------------------------------------- /src/archivenow/itsdangerous/url_safe.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/itsdangerous/url_safe.pyc -------------------------------------------------------------------------------- /src/archivenow/markupsafe/_constants.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/markupsafe/_constants.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/debug/console.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/debug/console.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/debug/tbtools.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/debug/tbtools.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/wrappers/auth.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/wrappers/auth.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/wrappers/cors.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/wrappers/cors.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/wrappers/etag.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/wrappers/etag.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/wrappers/json.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/wrappers/json.pyc -------------------------------------------------------------------------------- /src/1F7F644A-2B5C-4F56-8EBF-1B91ACCC3970.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/1F7F644A-2B5C-4F56-8EBF-1B91ACCC3970.png -------------------------------------------------------------------------------- /src/9241E7F5-9664-4296-9A45-379AA2C3CF9F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/9241E7F5-9664-4296-9A45-379AA2C3CF9F.png -------------------------------------------------------------------------------- /src/A2BEA417-9A5F-4560-B8C8-F1278E1311EC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/A2BEA417-9A5F-4560-B8C8-F1278E1311EC.png -------------------------------------------------------------------------------- /src/A6FE832A-5C88-4EC4-AB10-BFE143F9105D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/A6FE832A-5C88-4EC4-AB10-BFE143F9105D.png -------------------------------------------------------------------------------- /src/archivenow/itsdangerous/serializer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/itsdangerous/serializer.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/datastructures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/datastructures.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/debug/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/debug/__init__.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/middleware/lint.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/middleware/lint.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/posixemulation.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/posixemulation.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/wrappers/accept.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/wrappers/accept.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/wrappers/request.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/wrappers/request.pyc -------------------------------------------------------------------------------- /src/urllib3/contrib/_appengine_environ.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/contrib/_appengine_environ.pyc -------------------------------------------------------------------------------- /src/urllib3/packages/backports/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/packages/backports/__init__.pyc -------------------------------------------------------------------------------- /src/urllib3/packages/backports/makefile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/packages/backports/makefile.pyc -------------------------------------------------------------------------------- /src/werkzeug/wrappers/common_descriptors.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/werkzeug/wrappers/common_descriptors.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/debug/shared/less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/debug/shared/less.png -------------------------------------------------------------------------------- /src/archivenow/werkzeug/debug/shared/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/debug/shared/more.png -------------------------------------------------------------------------------- /src/archivenow/werkzeug/wrappers/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/wrappers/__init__.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/wrappers/response.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/wrappers/response.pyc -------------------------------------------------------------------------------- /src/archivenow-2020.7.18.12.19.44.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | 2 | [console_scripts] 3 | archivenow=archivenow.archivenow:args_parser 4 | -------------------------------------------------------------------------------- /src/archivenow/pathlib-1.0.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.1) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | 6 | -------------------------------------------------------------------------------- /src/archivenow/werkzeug/debug/shared/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/debug/shared/console.png -------------------------------------------------------------------------------- /src/archivenow/werkzeug/debug/shared/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/debug/shared/source.png -------------------------------------------------------------------------------- /src/archivenow/werkzeug/debug/shared/ubuntu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/debug/shared/ubuntu.ttf -------------------------------------------------------------------------------- /src/archivenow/werkzeug/middleware/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/middleware/__init__.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/middleware/dispatcher.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/middleware/dispatcher.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/middleware/http_proxy.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/middleware/http_proxy.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/middleware/profiler.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/middleware/profiler.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/middleware/proxy_fix.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/middleware/proxy_fix.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/wrappers/base_request.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/wrappers/base_request.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/wrappers/user_agent.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/wrappers/user_agent.pyc -------------------------------------------------------------------------------- /src/urllib3/contrib/_securetransport/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/contrib/_securetransport/__init__.pyc -------------------------------------------------------------------------------- /src/urllib3/contrib/_securetransport/bindings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/contrib/_securetransport/bindings.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/middleware/shared_data.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/middleware/shared_data.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/wrappers/base_response.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/wrappers/base_response.pyc -------------------------------------------------------------------------------- /src/idna-2.10.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.6) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /src/urllib3/contrib/_securetransport/low_level.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/contrib/_securetransport/low_level.pyc -------------------------------------------------------------------------------- /src/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ("ssl_match_hostname",) 6 | -------------------------------------------------------------------------------- /src/Flask-1.1.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.6) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /src/Jinja2-2.11.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /src/MarkupSafe-1.1.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.1) 3 | Root-Is-Purelib: false 4 | Tag: cp27-cp27m-macosx_10_6_intel 5 | 6 | -------------------------------------------------------------------------------- /src/Werkzeug-1.0.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /src/chardet-3.0.4.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.29.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /src/click-7.1.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /src/urllib3/packages/ssl_match_hostname/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/packages/ssl_match_hostname/__init__.pyc -------------------------------------------------------------------------------- /src/archivenow/werkzeug/wrappers/common_descriptors.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/archivenow/werkzeug/wrappers/common_descriptors.pyc -------------------------------------------------------------------------------- /src/certifi-2020.6.20.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /src/itsdangerous-1.1.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.32.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /src/requests-2.24.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.24.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /src/urllib3-1.25.10.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /src/archivenow/Flask-1.1.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.6) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /src/archivenow/Jinja2-2.11.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /src/archivenow/MarkupSafe-1.1.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.1) 3 | Root-Is-Purelib: false 4 | Tag: cp27-cp27m-macosx_10_6_intel 5 | 6 | -------------------------------------------------------------------------------- /src/archivenow/click-7.1.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /src/urllib3/packages/ssl_match_hostname/_implementation.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedotavares/Glass-Dome/HEAD/src/urllib3/packages/ssl_match_hostname/_implementation.pyc -------------------------------------------------------------------------------- /src/archivenow-2020.7.18.12.19.44.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.4) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /src/archivenow/Werkzeug-1.0.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /src/archivenow/itsdangerous-1.1.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.32.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /src/chardet/version.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module exists only to simplify retrieving the version number of chardet 3 | from within setup.py and from chardet subpackages. 4 | 5 | :author: Dan Blanchard (dan.blanchard@gmail.com) 6 | """ 7 | 8 | __version__ = "3.0.4" 9 | VERSION = __version__.split('.') 10 | -------------------------------------------------------------------------------- /src/idna/compat.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | from .codec import * 3 | 4 | def ToASCII(label): 5 | return encode(label) 6 | 7 | def ToUnicode(label): 8 | return decode(label) 9 | 10 | def nameprep(s): 11 | raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol") 12 | 13 | -------------------------------------------------------------------------------- /src/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | import argparse 2 | 3 | from certifi import contents, where 4 | 5 | parser = argparse.ArgumentParser() 6 | parser.add_argument("-c", "--contents", action="store_true") 7 | args = parser.parse_args() 8 | 9 | if args.contents: 10 | print(contents()) 11 | else: 12 | print(where()) 13 | -------------------------------------------------------------------------------- /src/archivenow/bin/flask: -------------------------------------------------------------------------------- 1 | #!/System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python 2 | # -*- coding: utf-8 -*- 3 | import re 4 | import sys 5 | from flask.cli import main 6 | if __name__ == '__main__': 7 | sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) 8 | sys.exit(main()) 9 | -------------------------------------------------------------------------------- /src/flask/__main__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | flask.__main__ 4 | ~~~~~~~~~~~~~~ 5 | 6 | Alias for flask.run for the command line. 7 | 8 | :copyright: 2010 Pallets 9 | :license: BSD-3-Clause 10 | """ 11 | 12 | if __name__ == "__main__": 13 | from .cli import main 14 | 15 | main(as_module=True) 16 | -------------------------------------------------------------------------------- /src/bin/chardetect: -------------------------------------------------------------------------------- 1 | #!/System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python 2 | # -*- coding: utf-8 -*- 3 | import re 4 | import sys 5 | from chardet.cli.chardetect import main 6 | if __name__ == '__main__': 7 | sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) 8 | sys.exit(main()) 9 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | There's a lot of room for improvement in terms of user experience and underlying technologies. 2 | 3 | If you're familiar with Alfred workflows and believe you could contribute, please let me know. 4 | Anything you may wish to change for your own personal use could be beneficial to others. Feel free to fork and or create pull requests. 5 | -------------------------------------------------------------------------------- /src/archivenow/flask/__main__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | flask.__main__ 4 | ~~~~~~~~~~~~~~ 5 | 6 | Alias for flask.run for the command line. 7 | 8 | :copyright: 2010 Pallets 9 | :license: BSD-3-Clause 10 | """ 11 | 12 | if __name__ == "__main__": 13 | from .cli import main 14 | 15 | main(as_module=True) 16 | -------------------------------------------------------------------------------- /src/requests/__version__.py: -------------------------------------------------------------------------------- 1 | # .-. .-. .-. . . .-. .-. .-. .-. 2 | # |( |- |.| | | |- `-. | `-. 3 | # ' ' `-' `-`.`-' `-' `-' ' `-' 4 | 5 | __title__ = 'requests' 6 | __description__ = 'Python HTTP for Humans.' 7 | __url__ = 'https://requests.readthedocs.io' 8 | __version__ = '2.24.0' 9 | __build__ = 0x022400 10 | __author__ = 'Kenneth Reitz' 11 | __author_email__ = 'me@kennethreitz.org' 12 | __license__ = 'Apache 2.0' 13 | __copyright__ = 'Copyright 2020 Kenneth Reitz' 14 | __cake__ = u'\u2728 \U0001f370 \u2728' 15 | -------------------------------------------------------------------------------- /src/werkzeug/wrappers/user_agent.py: -------------------------------------------------------------------------------- 1 | from ..useragents import UserAgent 2 | from ..utils import cached_property 3 | 4 | 5 | class UserAgentMixin(object): 6 | """Adds a `user_agent` attribute to the request object which 7 | contains the parsed user agent of the browser that triggered the 8 | request as a :class:`~werkzeug.useragents.UserAgent` object. 9 | """ 10 | 11 | @cached_property 12 | def user_agent(self): 13 | """The current user agent.""" 14 | return UserAgent(self.environ) 15 | -------------------------------------------------------------------------------- /src/itsdangerous/_json.py: -------------------------------------------------------------------------------- 1 | try: 2 | import simplejson as json 3 | except ImportError: 4 | import json 5 | 6 | 7 | class _CompactJSON(object): 8 | """Wrapper around json module that strips whitespace.""" 9 | 10 | @staticmethod 11 | def loads(payload): 12 | return json.loads(payload) 13 | 14 | @staticmethod 15 | def dumps(obj, **kwargs): 16 | kwargs.setdefault("ensure_ascii", False) 17 | kwargs.setdefault("separators", (",", ":")) 18 | return json.dumps(obj, **kwargs) 19 | -------------------------------------------------------------------------------- /src/archivenow/werkzeug/wrappers/user_agent.py: -------------------------------------------------------------------------------- 1 | from ..useragents import UserAgent 2 | from ..utils import cached_property 3 | 4 | 5 | class UserAgentMixin(object): 6 | """Adds a `user_agent` attribute to the request object which 7 | contains the parsed user agent of the browser that triggered the 8 | request as a :class:`~werkzeug.useragents.UserAgent` object. 9 | """ 10 | 11 | @cached_property 12 | def user_agent(self): 13 | """The current user agent.""" 14 | return UserAgent(self.environ) 15 | -------------------------------------------------------------------------------- /src/archivenow/itsdangerous/_json.py: -------------------------------------------------------------------------------- 1 | try: 2 | import simplejson as json 3 | except ImportError: 4 | import json 5 | 6 | 7 | class _CompactJSON(object): 8 | """Wrapper around json module that strips whitespace.""" 9 | 10 | @staticmethod 11 | def loads(payload): 12 | return json.loads(payload) 13 | 14 | @staticmethod 15 | def dumps(obj, **kwargs): 16 | kwargs.setdefault("ensure_ascii", False) 17 | kwargs.setdefault("separators", (",", ":")) 18 | return json.dumps(obj, **kwargs) 19 | -------------------------------------------------------------------------------- /src/requests/certs.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | requests.certs 6 | ~~~~~~~~~~~~~~ 7 | 8 | This module returns the preferred default CA certificate bundle. There is 9 | only one — the one from the certifi package. 10 | 11 | If you are packaging Requests, e.g., for a Linux distribution or a managed 12 | environment, you can change the definition of where() to return a separately 13 | packaged CA bundle. 14 | """ 15 | from certifi import where 16 | 17 | if __name__ == '__main__': 18 | print(where()) 19 | -------------------------------------------------------------------------------- /src/urllib3/util/queue.py: -------------------------------------------------------------------------------- 1 | import collections 2 | from ..packages import six 3 | from ..packages.six.moves import queue 4 | 5 | if six.PY2: 6 | # Queue is imported for side effects on MS Windows. See issue #229. 7 | import Queue as _unused_module_Queue # noqa: F401 8 | 9 | 10 | class LifoQueue(queue.Queue): 11 | def _init(self, _): 12 | self.queue = collections.deque() 13 | 14 | def _qsize(self, len=len): 15 | return len(self.queue) 16 | 17 | def _put(self, item): 18 | self.queue.append(item) 19 | 20 | def _get(self): 21 | return self.queue.pop() 22 | -------------------------------------------------------------------------------- /src/werkzeug/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | werkzeug 3 | ~~~~~~~~ 4 | 5 | Werkzeug is the Swiss Army knife of Python web development. 6 | 7 | It provides useful classes and functions for any WSGI application to 8 | make the life of a Python web developer much easier. All of the provided 9 | classes are independent from each other so you can mix it with any other 10 | library. 11 | 12 | :copyright: 2007 Pallets 13 | :license: BSD-3-Clause 14 | """ 15 | from .serving import run_simple 16 | from .test import Client 17 | from .wrappers import Request 18 | from .wrappers import Response 19 | 20 | __version__ = "1.0.1" 21 | -------------------------------------------------------------------------------- /src/archivenow/werkzeug/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | werkzeug 3 | ~~~~~~~~ 4 | 5 | Werkzeug is the Swiss Army knife of Python web development. 6 | 7 | It provides useful classes and functions for any WSGI application to 8 | make the life of a Python web developer much easier. All of the provided 9 | classes are independent from each other so you can mix it with any other 10 | library. 11 | 12 | :copyright: 2007 Pallets 13 | :license: BSD-3-Clause 14 | """ 15 | from .serving import run_simple 16 | from .test import Client 17 | from .wrappers import Request 18 | from .wrappers import Response 19 | 20 | __version__ = "1.0.1" 21 | -------------------------------------------------------------------------------- /src/requests/packages.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | # This code exists for backwards compatibility reasons. 4 | # I don't like it either. Just look the other way. :) 5 | 6 | for package in ('urllib3', 'idna', 'chardet'): 7 | locals()[package] = __import__(package) 8 | # This traversal is apparently necessary such that the identities are 9 | # preserved (requests.packages.urllib3.* is urllib3.*) 10 | for mod in list(sys.modules): 11 | if mod == package or mod.startswith(package + '.'): 12 | sys.modules['requests.packages.' + mod] = sys.modules[mod] 13 | 14 | # Kinda cool, though, right? 15 | -------------------------------------------------------------------------------- /src/requests-2.24.0.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2019 Kenneth Reitz 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | https://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /src/werkzeug/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Middleware 3 | ========== 4 | 5 | A WSGI middleware is a WSGI application that wraps another application 6 | in order to observe or change its behavior. Werkzeug provides some 7 | middleware for common use cases. 8 | 9 | .. toctree:: 10 | :maxdepth: 1 11 | 12 | proxy_fix 13 | shared_data 14 | dispatcher 15 | http_proxy 16 | lint 17 | profiler 18 | 19 | The :doc:`interactive debugger ` is also a middleware that can 20 | be applied manually, although it is typically used automatically with 21 | the :doc:`development server `. 22 | 23 | :copyright: 2007 Pallets 24 | :license: BSD-3-Clause 25 | """ 26 | -------------------------------------------------------------------------------- /src/archivenow/werkzeug/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Middleware 3 | ========== 4 | 5 | A WSGI middleware is a WSGI application that wraps another application 6 | in order to observe or change its behavior. Werkzeug provides some 7 | middleware for common use cases. 8 | 9 | .. toctree:: 10 | :maxdepth: 1 11 | 12 | proxy_fix 13 | shared_data 14 | dispatcher 15 | http_proxy 16 | lint 17 | profiler 18 | 19 | The :doc:`interactive debugger ` is also a middleware that can 20 | be applied manually, although it is typically used automatically with 21 | the :doc:`development server `. 22 | 23 | :copyright: 2007 Pallets 24 | :license: BSD-3-Clause 25 | """ 26 | -------------------------------------------------------------------------------- /src/archivenow/pathlib-1.0.1.dist-info/RECORD: -------------------------------------------------------------------------------- 1 | pathlib-1.0.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 2 | pathlib-1.0.1.dist-info/LICENSE.txt,sha256=7FK0RgeHp9ofbbcLvp4eZJxz98sU7rrxDl25_n9-nNk,1080 3 | pathlib-1.0.1.dist-info/METADATA,sha256=sQDwJdEFwtjnk_U0tN9fXz7rVU6Hqhn6P8HFxcfQqEg,5123 4 | pathlib-1.0.1.dist-info/RECORD,, 5 | pathlib-1.0.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 6 | pathlib-1.0.1.dist-info/WHEEL,sha256=pqI-DBMA-Z6OTNov1nVxs7mwm6Yj2kHZGNp_6krVn1E,92 7 | pathlib-1.0.1.dist-info/top_level.txt,sha256=zhefsaNuASYaoZF-ELG3TPFn6S2cuB1fd8PlNFLrMh0,8 8 | pathlib.py,sha256=9MfboQTEcuscgm7ZALBMTDpLwD-2PCTSUyhlA2tcvqw,41481 9 | pathlib.pyc,, 10 | -------------------------------------------------------------------------------- /src/markupsafe/_compat.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | markupsafe._compat 4 | ~~~~~~~~~~~~~~~~~~ 5 | 6 | :copyright: 2010 Pallets 7 | :license: BSD-3-Clause 8 | """ 9 | import sys 10 | 11 | PY2 = sys.version_info[0] == 2 12 | 13 | if not PY2: 14 | text_type = str 15 | string_types = (str,) 16 | unichr = chr 17 | int_types = (int,) 18 | 19 | def iteritems(x): 20 | return iter(x.items()) 21 | 22 | from collections.abc import Mapping 23 | 24 | else: 25 | text_type = unicode 26 | string_types = (str, unicode) 27 | unichr = unichr 28 | int_types = (int, long) 29 | 30 | def iteritems(x): 31 | return x.iteritems() 32 | 33 | from collections import Mapping 34 | -------------------------------------------------------------------------------- /src/archivenow/markupsafe/_compat.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | markupsafe._compat 4 | ~~~~~~~~~~~~~~~~~~ 5 | 6 | :copyright: 2010 Pallets 7 | :license: BSD-3-Clause 8 | """ 9 | import sys 10 | 11 | PY2 = sys.version_info[0] == 2 12 | 13 | if not PY2: 14 | text_type = str 15 | string_types = (str,) 16 | unichr = chr 17 | int_types = (int,) 18 | 19 | def iteritems(x): 20 | return iter(x.items()) 21 | 22 | from collections.abc import Mapping 23 | 24 | else: 25 | text_type = unicode 26 | string_types = (str, unicode) 27 | unichr = unichr 28 | int_types = (int, long) 29 | 30 | def iteritems(x): 31 | return x.iteritems() 32 | 33 | from collections import Mapping 34 | -------------------------------------------------------------------------------- /src/urllib3/packages/ssl_match_hostname/__init__.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | try: 4 | # Our match_hostname function is the same as 3.5's, so we only want to 5 | # import the match_hostname function if it's at least that good. 6 | if sys.version_info < (3, 5): 7 | raise ImportError("Fallback to vendored code") 8 | 9 | from ssl import CertificateError, match_hostname 10 | except ImportError: 11 | try: 12 | # Backport of the function from a pypi module 13 | from backports.ssl_match_hostname import CertificateError, match_hostname 14 | except ImportError: 15 | # Our vendored copy 16 | from ._implementation import CertificateError, match_hostname 17 | 18 | # Not needed, but documenting what we provide. 19 | __all__ = ("CertificateError", "match_hostname") 20 | -------------------------------------------------------------------------------- /src/itsdangerous/__init__.py: -------------------------------------------------------------------------------- 1 | from ._json import json 2 | from .encoding import base64_decode 3 | from .encoding import base64_encode 4 | from .encoding import want_bytes 5 | from .exc import BadData 6 | from .exc import BadHeader 7 | from .exc import BadPayload 8 | from .exc import BadSignature 9 | from .exc import BadTimeSignature 10 | from .exc import SignatureExpired 11 | from .jws import JSONWebSignatureSerializer 12 | from .jws import TimedJSONWebSignatureSerializer 13 | from .serializer import Serializer 14 | from .signer import HMACAlgorithm 15 | from .signer import NoneAlgorithm 16 | from .signer import Signer 17 | from .timed import TimedSerializer 18 | from .timed import TimestampSigner 19 | from .url_safe import URLSafeSerializer 20 | from .url_safe import URLSafeTimedSerializer 21 | 22 | __version__ = "1.1.0" 23 | -------------------------------------------------------------------------------- /src/archivenow/itsdangerous/__init__.py: -------------------------------------------------------------------------------- 1 | from ._json import json 2 | from .encoding import base64_decode 3 | from .encoding import base64_encode 4 | from .encoding import want_bytes 5 | from .exc import BadData 6 | from .exc import BadHeader 7 | from .exc import BadPayload 8 | from .exc import BadSignature 9 | from .exc import BadTimeSignature 10 | from .exc import SignatureExpired 11 | from .jws import JSONWebSignatureSerializer 12 | from .jws import TimedJSONWebSignatureSerializer 13 | from .serializer import Serializer 14 | from .signer import HMACAlgorithm 15 | from .signer import NoneAlgorithm 16 | from .signer import Signer 17 | from .timed import TimedSerializer 18 | from .timed import TimestampSigner 19 | from .url_safe import URLSafeSerializer 20 | from .url_safe import URLSafeTimedSerializer 21 | 22 | __version__ = "1.1.0" 23 | -------------------------------------------------------------------------------- /src/jinja2/_identifier.py: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | # generated by scripts/generate_identifier_pattern.py 4 | pattern = re.compile( 5 | r"[\w·̀-ͯ·҃-֑҇-ׇֽֿׁׂׅׄؐ-ًؚ-ٰٟۖ-ۜ۟-۪ۤۧۨ-ܑۭܰ-݊ަ-ް߫-߳ࠖ-࠙ࠛ-ࠣࠥ-ࠧࠩ-࡙࠭-࡛ࣔ-ࣣ࣡-ःऺ-़ा-ॏ॑-ॗॢॣঁ-ঃ়া-ৄেৈো-্ৗৢৣਁ-ਃ਼ਾ-ੂੇੈੋ-੍ੑੰੱੵઁ-ઃ઼ા-ૅે-ૉો-્ૢૣଁ-ଃ଼ା-ୄେୈୋ-୍ୖୗୢୣஂா-ூெ-ைொ-்ௗఀ-ఃా-ౄె-ైొ-్ౕౖౢౣಁ-ಃ಼ಾ-ೄೆ-ೈೊ-್ೕೖೢೣഁ-ഃാ-ൄെ-ൈൊ-്ൗൢൣංඃ්ා-ුූෘ-ෟෲෳัิ-ฺ็-๎ັິ-ູົຼ່-ໍ༹༘༙༵༷༾༿ཱ-྄྆྇ྍ-ྗྙ-ྼ࿆ါ-ှၖ-ၙၞ-ၠၢ-ၤၧ-ၭၱ-ၴႂ-ႍႏႚ-ႝ፝-፟ᜒ-᜔ᜲ-᜴ᝒᝓᝲᝳ឴-៓៝᠋-᠍ᢅᢆᢩᤠ-ᤫᤰ-᤻ᨗ-ᨛᩕ-ᩞ᩠-᩿᩼᪰-᪽ᬀ-ᬄ᬴-᭄᭫-᭳ᮀ-ᮂᮡ-ᮭ᯦-᯳ᰤ-᰷᳐-᳔᳒-᳨᳭ᳲ-᳴᳸᳹᷀-᷵᷻-᷿‿⁀⁔⃐-⃥⃜⃡-⃰℘℮⳯-⵿⳱ⷠ-〪ⷿ-゙゚〯꙯ꙴ-꙽ꚞꚟ꛰꛱ꠂ꠆ꠋꠣ-ꠧꢀꢁꢴ-ꣅ꣠-꣱ꤦ-꤭ꥇ-꥓ꦀ-ꦃ꦳-꧀ꧥꨩ-ꨶꩃꩌꩍꩻ-ꩽꪰꪲ-ꪴꪷꪸꪾ꪿꫁ꫫ-ꫯꫵ꫶ꯣ-ꯪ꯬꯭ﬞ︀-️︠-︯︳︴﹍-﹏_𐇽𐋠𐍶-𐍺𐨁-𐨃𐨅𐨆𐨌-𐨏𐨸-𐨿𐨺𐫦𐫥𑀀-𑀂𑀸-𑁆𑁿-𑂂𑂰-𑂺𑄀-𑄂𑄧-𑅳𑄴𑆀-𑆂𑆳-𑇊𑇀-𑇌𑈬-𑈷𑈾𑋟-𑋪𑌀-𑌃𑌼𑌾-𑍄𑍇𑍈𑍋-𑍍𑍗𑍢𑍣𑍦-𑍬𑍰-𑍴𑐵-𑑆𑒰-𑓃𑖯-𑖵𑖸-𑗀𑗜𑗝𑘰-𑙀𑚫-𑚷𑜝-𑜫𑰯-𑰶𑰸-𑰿𑲒-𑲧𑲩-𑲶𖫰-𖫴𖬰-𖬶𖽑-𖽾𖾏-𖾒𛲝𛲞𝅥-𝅩𝅭-𝅲𝅻-𝆂𝆅-𝆋𝆪-𝆭𝉂-𝉄𝨀-𝨶𝨻-𝩬𝩵𝪄𝪛-𝪟𝪡-𝪯𞀀-𞀆𞀈-𞀘𞀛-𞀡𞀣𞀤𞀦-𞣐𞀪-𞣖𞥄-𞥊󠄀-󠇯]+" # noqa: B950 6 | ) 7 | -------------------------------------------------------------------------------- /src/archivenow/jinja2/_identifier.py: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | # generated by scripts/generate_identifier_pattern.py 4 | pattern = re.compile( 5 | r"[\w·̀-ͯ·҃-֑҇-ׇֽֿׁׂׅׄؐ-ًؚ-ٰٟۖ-ۜ۟-۪ۤۧۨ-ܑۭܰ-݊ަ-ް߫-߳ࠖ-࠙ࠛ-ࠣࠥ-ࠧࠩ-࡙࠭-࡛ࣔ-ࣣ࣡-ःऺ-़ा-ॏ॑-ॗॢॣঁ-ঃ়া-ৄেৈো-্ৗৢৣਁ-ਃ਼ਾ-ੂੇੈੋ-੍ੑੰੱੵઁ-ઃ઼ા-ૅે-ૉો-્ૢૣଁ-ଃ଼ା-ୄେୈୋ-୍ୖୗୢୣஂா-ூெ-ைொ-்ௗఀ-ఃా-ౄె-ైొ-్ౕౖౢౣಁ-ಃ಼ಾ-ೄೆ-ೈೊ-್ೕೖೢೣഁ-ഃാ-ൄെ-ൈൊ-്ൗൢൣංඃ්ා-ුූෘ-ෟෲෳัิ-ฺ็-๎ັິ-ູົຼ່-ໍ༹༘༙༵༷༾༿ཱ-྄྆྇ྍ-ྗྙ-ྼ࿆ါ-ှၖ-ၙၞ-ၠၢ-ၤၧ-ၭၱ-ၴႂ-ႍႏႚ-ႝ፝-፟ᜒ-᜔ᜲ-᜴ᝒᝓᝲᝳ឴-៓៝᠋-᠍ᢅᢆᢩᤠ-ᤫᤰ-᤻ᨗ-ᨛᩕ-ᩞ᩠-᩿᩼᪰-᪽ᬀ-ᬄ᬴-᭄᭫-᭳ᮀ-ᮂᮡ-ᮭ᯦-᯳ᰤ-᰷᳐-᳔᳒-᳨᳭ᳲ-᳴᳸᳹᷀-᷵᷻-᷿‿⁀⁔⃐-⃥⃜⃡-⃰℘℮⳯-⵿⳱ⷠ-〪ⷿ-゙゚〯꙯ꙴ-꙽ꚞꚟ꛰꛱ꠂ꠆ꠋꠣ-ꠧꢀꢁꢴ-ꣅ꣠-꣱ꤦ-꤭ꥇ-꥓ꦀ-ꦃ꦳-꧀ꧥꨩ-ꨶꩃꩌꩍꩻ-ꩽꪰꪲ-ꪴꪷꪸꪾ꪿꫁ꫫ-ꫯꫵ꫶ꯣ-ꯪ꯬꯭ﬞ︀-️︠-︯︳︴﹍-﹏_𐇽𐋠𐍶-𐍺𐨁-𐨃𐨅𐨆𐨌-𐨏𐨸-𐨿𐨺𐫦𐫥𑀀-𑀂𑀸-𑁆𑁿-𑂂𑂰-𑂺𑄀-𑄂𑄧-𑅳𑄴𑆀-𑆂𑆳-𑇊𑇀-𑇌𑈬-𑈷𑈾𑋟-𑋪𑌀-𑌃𑌼𑌾-𑍄𑍇𑍈𑍋-𑍍𑍗𑍢𑍣𑍦-𑍬𑍰-𑍴𑐵-𑑆𑒰-𑓃𑖯-𑖵𑖸-𑗀𑗜𑗝𑘰-𑙀𑚫-𑚷𑜝-𑜫𑰯-𑰶𑰸-𑰿𑲒-𑲧𑲩-𑲶𖫰-𖫴𖬰-𖬶𖽑-𖽾𖾏-𖾒𛲝𛲞𝅥-𝅩𝅭-𝅲𝅻-𝆂𝆅-𝆋𝆪-𝆭𝉂-𝉄𝨀-𝨶𝨻-𝩬𝩵𝪄𝪛-𝪟𝪡-𝪯𞀀-𞀆𞀈-𞀘𞀛-𞀡𞀣𞀤𞀦-𞣐𞀪-𞣖𞥄-𞥊󠄀-󠇯]+" # noqa: B950 6 | ) 7 | -------------------------------------------------------------------------------- /src/requests/hooks.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | requests.hooks 5 | ~~~~~~~~~~~~~~ 6 | 7 | This module provides the capabilities for the Requests hooks system. 8 | 9 | Available hooks: 10 | 11 | ``response``: 12 | The response generated from a Request. 13 | """ 14 | HOOKS = ['response'] 15 | 16 | 17 | def default_hooks(): 18 | return {event: [] for event in HOOKS} 19 | 20 | # TODO: response is the only one 21 | 22 | 23 | def dispatch_hook(key, hooks, hook_data, **kwargs): 24 | """Dispatches a hook dictionary on a given piece of data.""" 25 | hooks = hooks or {} 26 | hooks = hooks.get(key) 27 | if hooks: 28 | if hasattr(hooks, '__call__'): 29 | hooks = [hooks] 30 | for hook in hooks: 31 | _hook_data = hook(hook_data, **kwargs) 32 | if _hook_data is not None: 33 | hook_data = _hook_data 34 | return hook_data 35 | -------------------------------------------------------------------------------- /src/certifi-2020.6.20.dist-info/RECORD: -------------------------------------------------------------------------------- 1 | certifi-2020.6.20.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 2 | certifi-2020.6.20.dist-info/LICENSE,sha256=anCkv2sBABbVmmS4rkrY3H9e8W8ftFPMLs13HFo0ETE,1048 3 | certifi-2020.6.20.dist-info/METADATA,sha256=_0lH4pmUKzXqjJAq6fIlE4JB2g1CFLPpjpwwOsqNqwk,2944 4 | certifi-2020.6.20.dist-info/RECORD,, 5 | certifi-2020.6.20.dist-info/WHEEL,sha256=kGT74LWyRUZrL4VgLh6_g12IeVl_9u9ZVhadrgXZUEY,110 6 | certifi-2020.6.20.dist-info/top_level.txt,sha256=KMu4vUCfsjLrkPbSNdgdekS-pVJzBAJFO__nI8NF6-U,8 7 | certifi/__init__.py,sha256=u1E_DrSGj_nnEkK5VglvEqP8D80KpghLVWL0A_pq41A,62 8 | certifi/__init__.pyc,, 9 | certifi/__main__.py,sha256=xBBoj905TUWBLRGANOcf7oi6e-3dMP4cEoG9OyMs11g,243 10 | certifi/__main__.pyc,, 11 | certifi/cacert.pem,sha256=GhT24f0R7_9y4YY_hkXwkO7BthZhRGDCEMO348E9S14,282394 12 | certifi/core.py,sha256=V0uyxKOYdz6ulDSusclrLmjbPgOXsD0BnEf0SQ7OnoE,2303 13 | certifi/core.pyc,, 14 | -------------------------------------------------------------------------------- /src/urllib3/contrib/_appengine_environ.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module provides means to detect the App Engine environment. 3 | """ 4 | 5 | import os 6 | 7 | 8 | def is_appengine(): 9 | return is_local_appengine() or is_prod_appengine() 10 | 11 | 12 | def is_appengine_sandbox(): 13 | """Reports if the app is running in the first generation sandbox. 14 | 15 | The second generation runtimes are technically still in a sandbox, but it 16 | is much less restrictive, so generally you shouldn't need to check for it. 17 | see https://cloud.google.com/appengine/docs/standard/runtimes 18 | """ 19 | return is_appengine() and os.environ["APPENGINE_RUNTIME"] == "python27" 20 | 21 | 22 | def is_local_appengine(): 23 | return "APPENGINE_RUNTIME" in os.environ and os.environ.get( 24 | "SERVER_SOFTWARE", "" 25 | ).startswith("Development/") 26 | 27 | 28 | def is_prod_appengine(): 29 | return "APPENGINE_RUNTIME" in os.environ and os.environ.get( 30 | "SERVER_SOFTWARE", "" 31 | ).startswith("Google App Engine/") 32 | 33 | 34 | def is_prod_appengine_mvms(): 35 | """Deprecated.""" 36 | return False 37 | -------------------------------------------------------------------------------- /src/certifi-2020.6.20.dist-info/LICENSE: -------------------------------------------------------------------------------- 1 | This packge contains a modified version of ca-bundle.crt: 2 | 3 | ca-bundle.crt -- Bundle of CA Root Certificates 4 | 5 | Certificate data from Mozilla as of: Thu Nov 3 19:04:19 2011# 6 | This is a bundle of X.509 certificates of public Certificate Authorities 7 | (CA). These were automatically extracted from Mozilla's root certificates 8 | file (certdata.txt). This file can be found in the mozilla source tree: 9 | http://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt?raw=1# 10 | It contains the certificates in PEM format and therefore 11 | can be directly used with curl / libcurl / php_curl, or with 12 | an Apache+mod_ssl webserver for SSL client authentication. 13 | Just configure this file as the SSLCACertificateFile.# 14 | 15 | ***** BEGIN LICENSE BLOCK ***** 16 | This Source Code Form is subject to the terms of the Mozilla Public License, 17 | v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain 18 | one at http://mozilla.org/MPL/2.0/. 19 | 20 | ***** END LICENSE BLOCK ***** 21 | @(#) $RCSfile: certdata.txt,v $ $Revision: 1.80 $ $Date: 2011/11/03 15:11:58 $ 22 | -------------------------------------------------------------------------------- /src/MarkupSafe-1.1.1.dist-info/RECORD: -------------------------------------------------------------------------------- 1 | MarkupSafe-1.1.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 2 | MarkupSafe-1.1.1.dist-info/LICENSE.rst,sha256=SJqOEQhQntmKN7uYPhHg9-HTHwvY-Zp5yESOf_N9B-o,1475 3 | MarkupSafe-1.1.1.dist-info/METADATA,sha256=tYljLDaWFctZWfLXDP5ju_68TOlbQzJHNnaaX5-HYsA,3570 4 | MarkupSafe-1.1.1.dist-info/RECORD,, 5 | MarkupSafe-1.1.1.dist-info/WHEEL,sha256=QxB7VA6yWRa_kkOPUXf8_8tuQuhnGxzF7TcwNarQG6Q,109 6 | MarkupSafe-1.1.1.dist-info/top_level.txt,sha256=qy0Plje5IJuvsCBjejJyhDCjEAdcDLK_2agVcex8Z6U,11 7 | markupsafe/__init__.py,sha256=oTblO5f9KFM-pvnq9bB0HgElnqkJyqHnFN1Nx2NIvnY,10126 8 | markupsafe/__init__.pyc,, 9 | markupsafe/_compat.py,sha256=uEW1ybxEjfxIiuTbRRaJpHsPFf4yQUMMKaPgYEC5XbU,558 10 | markupsafe/_compat.pyc,, 11 | markupsafe/_constants.py,sha256=zo2ajfScG-l1Sb_52EP3MlDCqO7Y1BVHUXXKRsVDRNk,4690 12 | markupsafe/_constants.pyc,, 13 | markupsafe/_native.py,sha256=d-8S_zzYt2y512xYcuSxq0NeG2DUUvG80wVdTn-4KI8,1873 14 | markupsafe/_native.pyc,, 15 | markupsafe/_speedups.c,sha256=k0fzEIK3CP6MmMqeY0ob43TP90mVN0DTyn7BAl3RqSg,9884 16 | markupsafe/_speedups.so,sha256=kaCCUiEMqpZtO5MSk_96ntDI9al0vtyk_31K4miFZvU,27108 17 | -------------------------------------------------------------------------------- /src/archivenow/MarkupSafe-1.1.1.dist-info/RECORD: -------------------------------------------------------------------------------- 1 | MarkupSafe-1.1.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 2 | MarkupSafe-1.1.1.dist-info/LICENSE.rst,sha256=SJqOEQhQntmKN7uYPhHg9-HTHwvY-Zp5yESOf_N9B-o,1475 3 | MarkupSafe-1.1.1.dist-info/METADATA,sha256=tYljLDaWFctZWfLXDP5ju_68TOlbQzJHNnaaX5-HYsA,3570 4 | MarkupSafe-1.1.1.dist-info/RECORD,, 5 | MarkupSafe-1.1.1.dist-info/WHEEL,sha256=QxB7VA6yWRa_kkOPUXf8_8tuQuhnGxzF7TcwNarQG6Q,109 6 | MarkupSafe-1.1.1.dist-info/top_level.txt,sha256=qy0Plje5IJuvsCBjejJyhDCjEAdcDLK_2agVcex8Z6U,11 7 | markupsafe/__init__.py,sha256=oTblO5f9KFM-pvnq9bB0HgElnqkJyqHnFN1Nx2NIvnY,10126 8 | markupsafe/__init__.pyc,, 9 | markupsafe/_compat.py,sha256=uEW1ybxEjfxIiuTbRRaJpHsPFf4yQUMMKaPgYEC5XbU,558 10 | markupsafe/_compat.pyc,, 11 | markupsafe/_constants.py,sha256=zo2ajfScG-l1Sb_52EP3MlDCqO7Y1BVHUXXKRsVDRNk,4690 12 | markupsafe/_constants.pyc,, 13 | markupsafe/_native.py,sha256=d-8S_zzYt2y512xYcuSxq0NeG2DUUvG80wVdTn-4KI8,1873 14 | markupsafe/_native.pyc,, 15 | markupsafe/_speedups.c,sha256=k0fzEIK3CP6MmMqeY0ob43TP90mVN0DTyn7BAl3RqSg,9884 16 | markupsafe/_speedups.so,sha256=kaCCUiEMqpZtO5MSk_96ntDI9al0vtyk_31K4miFZvU,27108 17 | -------------------------------------------------------------------------------- /src/archivenow/pathlib-1.0.1.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2012-2014 Antoine Pitrou and contributors 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. 20 | -------------------------------------------------------------------------------- /src/urllib3-1.25.10.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2008-2019 Andrey Petrov and contributors (see CONTRIBUTORS.txt) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /src/archivenow-2020.7.18.12.19.44.dist-info/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 ODU Web Science / Digital Libraries Research Group 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /src/urllib3/util/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | # For backwards compatibility, provide imports that used to be here. 4 | from .connection import is_connection_dropped 5 | from .request import make_headers 6 | from .response import is_fp_closed 7 | from .ssl_ import ( 8 | SSLContext, 9 | HAS_SNI, 10 | IS_PYOPENSSL, 11 | IS_SECURETRANSPORT, 12 | assert_fingerprint, 13 | resolve_cert_reqs, 14 | resolve_ssl_version, 15 | ssl_wrap_socket, 16 | PROTOCOL_TLS, 17 | ) 18 | from .timeout import current_time, Timeout 19 | 20 | from .retry import Retry 21 | from .url import get_host, parse_url, split_first, Url 22 | from .wait import wait_for_read, wait_for_write 23 | 24 | __all__ = ( 25 | "HAS_SNI", 26 | "IS_PYOPENSSL", 27 | "IS_SECURETRANSPORT", 28 | "SSLContext", 29 | "PROTOCOL_TLS", 30 | "Retry", 31 | "Timeout", 32 | "Url", 33 | "assert_fingerprint", 34 | "current_time", 35 | "is_connection_dropped", 36 | "is_fp_closed", 37 | "get_host", 38 | "parse_url", 39 | "make_headers", 40 | "resolve_cert_reqs", 41 | "resolve_ssl_version", 42 | "split_first", 43 | "ssl_wrap_socket", 44 | "wait_for_read", 45 | "wait_for_write", 46 | ) 47 | -------------------------------------------------------------------------------- /src/chardet/compat.py: -------------------------------------------------------------------------------- 1 | ######################## BEGIN LICENSE BLOCK ######################## 2 | # Contributor(s): 3 | # Dan Blanchard 4 | # Ian Cordasco 5 | # 6 | # This library is free software; you can redistribute it and/or 7 | # modify it under the terms of the GNU Lesser General Public 8 | # License as published by the Free Software Foundation; either 9 | # version 2.1 of the License, or (at your option) any later version. 10 | # 11 | # This library is distributed in the hope that it will be useful, 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | # Lesser General Public License for more details. 15 | # 16 | # You should have received a copy of the GNU Lesser General Public 17 | # License along with this library; if not, write to the Free Software 18 | # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 19 | # 02110-1301 USA 20 | ######################### END LICENSE BLOCK ######################### 21 | 22 | import sys 23 | 24 | 25 | if sys.version_info < (3, 0): 26 | PY2 = True 27 | PY3 = False 28 | base_str = (str, unicode) 29 | text_type = unicode 30 | else: 31 | PY2 = False 32 | PY3 = True 33 | base_str = (bytes, str) 34 | text_type = str 35 | -------------------------------------------------------------------------------- /src/requests/_internal_utils.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | requests._internal_utils 5 | ~~~~~~~~~~~~~~ 6 | 7 | Provides utility functions that are consumed internally by Requests 8 | which depend on extremely few external helpers (such as compat) 9 | """ 10 | 11 | from .compat import is_py2, builtin_str, str 12 | 13 | 14 | def to_native_string(string, encoding='ascii'): 15 | """Given a string object, regardless of type, returns a representation of 16 | that string in the native string type, encoding and decoding where 17 | necessary. This assumes ASCII unless told otherwise. 18 | """ 19 | if isinstance(string, builtin_str): 20 | out = string 21 | else: 22 | if is_py2: 23 | out = string.encode(encoding) 24 | else: 25 | out = string.decode(encoding) 26 | 27 | return out 28 | 29 | 30 | def unicode_is_ascii(u_string): 31 | """Determine if unicode string only contains ASCII characters. 32 | 33 | :param str u_string: unicode string to check. Must be unicode 34 | and not Python 2 `str`. 35 | :rtype: bool 36 | """ 37 | assert isinstance(u_string, str) 38 | try: 39 | u_string.encode('ascii') 40 | return True 41 | except UnicodeEncodeError: 42 | return False 43 | -------------------------------------------------------------------------------- /src/idna-2.10.dist-info/RECORD: -------------------------------------------------------------------------------- 1 | idna-2.10.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 2 | idna-2.10.dist-info/LICENSE.rst,sha256=QSAUQg0kc9ugYRfD1Nng7sqm3eDKMM2VH07CvjlCbzI,1565 3 | idna-2.10.dist-info/METADATA,sha256=ZWCaQDBjdmSvx5EU7Cv6ORC-9NUQ6nXh1eXx38ySe40,9104 4 | idna-2.10.dist-info/RECORD,, 5 | idna-2.10.dist-info/WHEEL,sha256=8zNYZbwQSXoB9IfXOjPfeNwvAsALAjffgk27FqvCWbo,110 6 | idna-2.10.dist-info/top_level.txt,sha256=jSag9sEDqvSPftxOQy-ABfGV_RSy7oFh4zZJpODV8k0,5 7 | idna/__init__.py,sha256=9Nt7xpyet3DmOrPUGooDdAwmHZZu1qUAy2EaJ93kGiQ,58 8 | idna/__init__.pyc,, 9 | idna/codec.py,sha256=lvYb7yu7PhAqFaAIAdWcwgaWI2UmgseUua-1c0AsG0A,3299 10 | idna/codec.pyc,, 11 | idna/compat.py,sha256=R-h29D-6mrnJzbXxymrWUW7iZUvy-26TQwZ0ij57i4U,232 12 | idna/compat.pyc,, 13 | idna/core.py,sha256=jCoaLb3bA2tS_DDx9PpGuNTEZZN2jAzB369aP-IHYRE,11951 14 | idna/core.pyc,, 15 | idna/idnadata.py,sha256=gmzFwZWjdms3kKZ_M_vwz7-LP_SCgYfSeE03B21Qpsk,42350 16 | idna/idnadata.pyc,, 17 | idna/intranges.py,sha256=TY1lpxZIQWEP6tNqjZkFA5hgoMWOj1OBmnUG8ihT87E,1749 18 | idna/intranges.pyc,, 19 | idna/package_data.py,sha256=bxBjpLnE06_1jSYKEy5svOMu1zM3OMztXVUb1tPlcp0,22 20 | idna/package_data.pyc,, 21 | idna/uts46data.py,sha256=lMdw2zdjkH1JUWXPPEfFUSYT3Fyj60bBmfLvvy5m7ko,202084 22 | idna/uts46data.pyc,, 23 | -------------------------------------------------------------------------------- /src/werkzeug/wrappers/auth.py: -------------------------------------------------------------------------------- 1 | from ..http import parse_authorization_header 2 | from ..http import parse_www_authenticate_header 3 | from ..utils import cached_property 4 | 5 | 6 | class AuthorizationMixin(object): 7 | """Adds an :attr:`authorization` property that represents the parsed 8 | value of the `Authorization` header as 9 | :class:`~werkzeug.datastructures.Authorization` object. 10 | """ 11 | 12 | @cached_property 13 | def authorization(self): 14 | """The `Authorization` object in parsed form.""" 15 | header = self.environ.get("HTTP_AUTHORIZATION") 16 | return parse_authorization_header(header) 17 | 18 | 19 | class WWWAuthenticateMixin(object): 20 | """Adds a :attr:`www_authenticate` property to a response object.""" 21 | 22 | @property 23 | def www_authenticate(self): 24 | """The `WWW-Authenticate` header in a parsed form.""" 25 | 26 | def on_update(www_auth): 27 | if not www_auth and "www-authenticate" in self.headers: 28 | del self.headers["www-authenticate"] 29 | elif www_auth: 30 | self.headers["WWW-Authenticate"] = www_auth.to_header() 31 | 32 | header = self.headers.get("www-authenticate") 33 | return parse_www_authenticate_header(header, on_update) 34 | -------------------------------------------------------------------------------- /src/archivenow/werkzeug/wrappers/auth.py: -------------------------------------------------------------------------------- 1 | from ..http import parse_authorization_header 2 | from ..http import parse_www_authenticate_header 3 | from ..utils import cached_property 4 | 5 | 6 | class AuthorizationMixin(object): 7 | """Adds an :attr:`authorization` property that represents the parsed 8 | value of the `Authorization` header as 9 | :class:`~werkzeug.datastructures.Authorization` object. 10 | """ 11 | 12 | @cached_property 13 | def authorization(self): 14 | """The `Authorization` object in parsed form.""" 15 | header = self.environ.get("HTTP_AUTHORIZATION") 16 | return parse_authorization_header(header) 17 | 18 | 19 | class WWWAuthenticateMixin(object): 20 | """Adds a :attr:`www_authenticate` property to a response object.""" 21 | 22 | @property 23 | def www_authenticate(self): 24 | """The `WWW-Authenticate` header in a parsed form.""" 25 | 26 | def on_update(www_auth): 27 | if not www_auth and "www-authenticate" in self.headers: 28 | del self.headers["www-authenticate"] 29 | elif www_auth: 30 | self.headers["WWW-Authenticate"] = www_auth.to_header() 31 | 32 | header = self.headers.get("www-authenticate") 33 | return parse_www_authenticate_header(header, on_update) 34 | -------------------------------------------------------------------------------- /src/jinja2/defaults.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from ._compat import range_type 3 | from .filters import FILTERS as DEFAULT_FILTERS # noqa: F401 4 | from .tests import TESTS as DEFAULT_TESTS # noqa: F401 5 | from .utils import Cycler 6 | from .utils import generate_lorem_ipsum 7 | from .utils import Joiner 8 | from .utils import Namespace 9 | 10 | # defaults for the parser / lexer 11 | BLOCK_START_STRING = "{%" 12 | BLOCK_END_STRING = "%}" 13 | VARIABLE_START_STRING = "{{" 14 | VARIABLE_END_STRING = "}}" 15 | COMMENT_START_STRING = "{#" 16 | COMMENT_END_STRING = "#}" 17 | LINE_STATEMENT_PREFIX = None 18 | LINE_COMMENT_PREFIX = None 19 | TRIM_BLOCKS = False 20 | LSTRIP_BLOCKS = False 21 | NEWLINE_SEQUENCE = "\n" 22 | KEEP_TRAILING_NEWLINE = False 23 | 24 | # default filters, tests and namespace 25 | 26 | DEFAULT_NAMESPACE = { 27 | "range": range_type, 28 | "dict": dict, 29 | "lipsum": generate_lorem_ipsum, 30 | "cycler": Cycler, 31 | "joiner": Joiner, 32 | "namespace": Namespace, 33 | } 34 | 35 | # default policies 36 | DEFAULT_POLICIES = { 37 | "compiler.ascii_str": True, 38 | "urlize.rel": "noopener", 39 | "urlize.target": None, 40 | "truncate.leeway": 5, 41 | "json.dumps_function": None, 42 | "json.dumps_kwargs": {"sort_keys": True}, 43 | "ext.i18n.trimmed": False, 44 | } 45 | -------------------------------------------------------------------------------- /src/archivenow/jinja2/defaults.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from ._compat import range_type 3 | from .filters import FILTERS as DEFAULT_FILTERS # noqa: F401 4 | from .tests import TESTS as DEFAULT_TESTS # noqa: F401 5 | from .utils import Cycler 6 | from .utils import generate_lorem_ipsum 7 | from .utils import Joiner 8 | from .utils import Namespace 9 | 10 | # defaults for the parser / lexer 11 | BLOCK_START_STRING = "{%" 12 | BLOCK_END_STRING = "%}" 13 | VARIABLE_START_STRING = "{{" 14 | VARIABLE_END_STRING = "}}" 15 | COMMENT_START_STRING = "{#" 16 | COMMENT_END_STRING = "#}" 17 | LINE_STATEMENT_PREFIX = None 18 | LINE_COMMENT_PREFIX = None 19 | TRIM_BLOCKS = False 20 | LSTRIP_BLOCKS = False 21 | NEWLINE_SEQUENCE = "\n" 22 | KEEP_TRAILING_NEWLINE = False 23 | 24 | # default filters, tests and namespace 25 | 26 | DEFAULT_NAMESPACE = { 27 | "range": range_type, 28 | "dict": dict, 29 | "lipsum": generate_lorem_ipsum, 30 | "cycler": Cycler, 31 | "joiner": Joiner, 32 | "namespace": Namespace, 33 | } 34 | 35 | # default policies 36 | DEFAULT_POLICIES = { 37 | "compiler.ascii_str": True, 38 | "urlize.rel": "noopener", 39 | "urlize.target": None, 40 | "truncate.leeway": 5, 41 | "json.dumps_function": None, 42 | "json.dumps_kwargs": {"sort_keys": True}, 43 | "ext.i18n.trimmed": False, 44 | } 45 | -------------------------------------------------------------------------------- /src/itsdangerous/_compat.py: -------------------------------------------------------------------------------- 1 | import decimal 2 | import hmac 3 | import numbers 4 | import sys 5 | 6 | PY2 = sys.version_info[0] == 2 7 | 8 | if PY2: 9 | from itertools import izip 10 | 11 | text_type = unicode # noqa: 821 12 | else: 13 | izip = zip 14 | text_type = str 15 | 16 | number_types = (numbers.Real, decimal.Decimal) 17 | 18 | 19 | def _constant_time_compare(val1, val2): 20 | """Return ``True`` if the two strings are equal, ``False`` 21 | otherwise. 22 | 23 | The time taken is independent of the number of characters that 24 | match. Do not use this function for anything else than comparision 25 | with known length targets. 26 | 27 | This is should be implemented in C in order to get it completely 28 | right. 29 | 30 | This is an alias of :func:`hmac.compare_digest` on Python>=2.7,3.3. 31 | """ 32 | len_eq = len(val1) == len(val2) 33 | if len_eq: 34 | result = 0 35 | left = val1 36 | else: 37 | result = 1 38 | left = val2 39 | for x, y in izip(bytearray(left), bytearray(val2)): 40 | result |= x ^ y 41 | return result == 0 42 | 43 | 44 | # Starting with 2.7/3.3 the standard library has a c-implementation for 45 | # constant time string compares. 46 | constant_time_compare = getattr(hmac, "compare_digest", _constant_time_compare) 47 | -------------------------------------------------------------------------------- /src/archivenow/itsdangerous/_compat.py: -------------------------------------------------------------------------------- 1 | import decimal 2 | import hmac 3 | import numbers 4 | import sys 5 | 6 | PY2 = sys.version_info[0] == 2 7 | 8 | if PY2: 9 | from itertools import izip 10 | 11 | text_type = unicode # noqa: 821 12 | else: 13 | izip = zip 14 | text_type = str 15 | 16 | number_types = (numbers.Real, decimal.Decimal) 17 | 18 | 19 | def _constant_time_compare(val1, val2): 20 | """Return ``True`` if the two strings are equal, ``False`` 21 | otherwise. 22 | 23 | The time taken is independent of the number of characters that 24 | match. Do not use this function for anything else than comparision 25 | with known length targets. 26 | 27 | This is should be implemented in C in order to get it completely 28 | right. 29 | 30 | This is an alias of :func:`hmac.compare_digest` on Python>=2.7,3.3. 31 | """ 32 | len_eq = len(val1) == len(val2) 33 | if len_eq: 34 | result = 0 35 | left = val1 36 | else: 37 | result = 1 38 | left = val2 39 | for x, y in izip(bytearray(left), bytearray(val2)): 40 | result |= x ^ y 41 | return result == 0 42 | 43 | 44 | # Starting with 2.7/3.3 the standard library has a c-implementation for 45 | # constant time string compares. 46 | constant_time_compare = getattr(hmac, "compare_digest", _constant_time_compare) 47 | -------------------------------------------------------------------------------- /src/click/_textwrap.py: -------------------------------------------------------------------------------- 1 | import textwrap 2 | from contextlib import contextmanager 3 | 4 | 5 | class TextWrapper(textwrap.TextWrapper): 6 | def _handle_long_word(self, reversed_chunks, cur_line, cur_len, width): 7 | space_left = max(width - cur_len, 1) 8 | 9 | if self.break_long_words: 10 | last = reversed_chunks[-1] 11 | cut = last[:space_left] 12 | res = last[space_left:] 13 | cur_line.append(cut) 14 | reversed_chunks[-1] = res 15 | elif not cur_line: 16 | cur_line.append(reversed_chunks.pop()) 17 | 18 | @contextmanager 19 | def extra_indent(self, indent): 20 | old_initial_indent = self.initial_indent 21 | old_subsequent_indent = self.subsequent_indent 22 | self.initial_indent += indent 23 | self.subsequent_indent += indent 24 | try: 25 | yield 26 | finally: 27 | self.initial_indent = old_initial_indent 28 | self.subsequent_indent = old_subsequent_indent 29 | 30 | def indent_only(self, text): 31 | rv = [] 32 | for idx, line in enumerate(text.splitlines()): 33 | indent = self.initial_indent 34 | if idx > 0: 35 | indent = self.subsequent_indent 36 | rv.append(indent + line) 37 | return "\n".join(rv) 38 | -------------------------------------------------------------------------------- /src/archivenow/click/_textwrap.py: -------------------------------------------------------------------------------- 1 | import textwrap 2 | from contextlib import contextmanager 3 | 4 | 5 | class TextWrapper(textwrap.TextWrapper): 6 | def _handle_long_word(self, reversed_chunks, cur_line, cur_len, width): 7 | space_left = max(width - cur_len, 1) 8 | 9 | if self.break_long_words: 10 | last = reversed_chunks[-1] 11 | cut = last[:space_left] 12 | res = last[space_left:] 13 | cur_line.append(cut) 14 | reversed_chunks[-1] = res 15 | elif not cur_line: 16 | cur_line.append(reversed_chunks.pop()) 17 | 18 | @contextmanager 19 | def extra_indent(self, indent): 20 | old_initial_indent = self.initial_indent 21 | old_subsequent_indent = self.subsequent_indent 22 | self.initial_indent += indent 23 | self.subsequent_indent += indent 24 | try: 25 | yield 26 | finally: 27 | self.initial_indent = old_initial_indent 28 | self.subsequent_indent = old_subsequent_indent 29 | 30 | def indent_only(self, text): 31 | rv = [] 32 | for idx, line in enumerate(text.splitlines()): 33 | indent = self.initial_indent 34 | if idx > 0: 35 | indent = self.subsequent_indent 36 | rv.append(indent + line) 37 | return "\n".join(rv) 38 | -------------------------------------------------------------------------------- /src/chardet-3.0.4.dist-info/metadata.json: -------------------------------------------------------------------------------- 1 | {"classifiers": ["Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing :: Linguistic"], "extensions": {"python.commands": {"wrap_console": {"chardetect": "chardet.cli.chardetect:main"}}, "python.details": {"contacts": [{"email": "dan.blanchard@gmail.com", "name": "Daniel Blanchard", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "https://github.com/chardet/chardet"}}, "python.exports": {"console_scripts": {"chardetect": "chardet.cli.chardetect:main"}}}, "generator": "bdist_wheel (0.29.0)", "keywords": ["encoding", "i18n", "xml"], "license": "LGPL", "metadata_version": "2.0", "name": "chardet", "summary": "Universal encoding detector for Python 2 and 3", "test_requires": [{"requires": ["hypothesis", "pytest"]}], "version": "3.0.4"} -------------------------------------------------------------------------------- /src/itsdangerous/encoding.py: -------------------------------------------------------------------------------- 1 | import base64 2 | import string 3 | import struct 4 | 5 | from ._compat import text_type 6 | from .exc import BadData 7 | 8 | 9 | def want_bytes(s, encoding="utf-8", errors="strict"): 10 | if isinstance(s, text_type): 11 | s = s.encode(encoding, errors) 12 | return s 13 | 14 | 15 | def base64_encode(string): 16 | """Base64 encode a string of bytes or text. The resulting bytes are 17 | safe to use in URLs. 18 | """ 19 | string = want_bytes(string) 20 | return base64.urlsafe_b64encode(string).rstrip(b"=") 21 | 22 | 23 | def base64_decode(string): 24 | """Base64 decode a URL-safe string of bytes or text. The result is 25 | bytes. 26 | """ 27 | string = want_bytes(string, encoding="ascii", errors="ignore") 28 | string += b"=" * (-len(string) % 4) 29 | 30 | try: 31 | return base64.urlsafe_b64decode(string) 32 | except (TypeError, ValueError): 33 | raise BadData("Invalid base64-encoded data") 34 | 35 | 36 | # The alphabet used by base64.urlsafe_* 37 | _base64_alphabet = (string.ascii_letters + string.digits + "-_=").encode("ascii") 38 | 39 | _int64_struct = struct.Struct(">Q") 40 | _int_to_bytes = _int64_struct.pack 41 | _bytes_to_int = _int64_struct.unpack 42 | 43 | 44 | def int_to_bytes(num): 45 | return _int_to_bytes(num).lstrip(b"\x00") 46 | 47 | 48 | def bytes_to_int(bytestr): 49 | return _bytes_to_int(bytestr.rjust(8, b"\x00"))[0] 50 | -------------------------------------------------------------------------------- /src/archivenow/itsdangerous/encoding.py: -------------------------------------------------------------------------------- 1 | import base64 2 | import string 3 | import struct 4 | 5 | from ._compat import text_type 6 | from .exc import BadData 7 | 8 | 9 | def want_bytes(s, encoding="utf-8", errors="strict"): 10 | if isinstance(s, text_type): 11 | s = s.encode(encoding, errors) 12 | return s 13 | 14 | 15 | def base64_encode(string): 16 | """Base64 encode a string of bytes or text. The resulting bytes are 17 | safe to use in URLs. 18 | """ 19 | string = want_bytes(string) 20 | return base64.urlsafe_b64encode(string).rstrip(b"=") 21 | 22 | 23 | def base64_decode(string): 24 | """Base64 decode a URL-safe string of bytes or text. The result is 25 | bytes. 26 | """ 27 | string = want_bytes(string, encoding="ascii", errors="ignore") 28 | string += b"=" * (-len(string) % 4) 29 | 30 | try: 31 | return base64.urlsafe_b64decode(string) 32 | except (TypeError, ValueError): 33 | raise BadData("Invalid base64-encoded data") 34 | 35 | 36 | # The alphabet used by base64.urlsafe_* 37 | _base64_alphabet = (string.ascii_letters + string.digits + "-_=").encode("ascii") 38 | 39 | _int64_struct = struct.Struct(">Q") 40 | _int_to_bytes = _int64_struct.pack 41 | _bytes_to_int = _int64_struct.unpack 42 | 43 | 44 | def int_to_bytes(num): 45 | return _int_to_bytes(num).lstrip(b"\x00") 46 | 47 | 48 | def bytes_to_int(bytestr): 49 | return _bytes_to_int(bytestr.rjust(8, b"\x00"))[0] 50 | -------------------------------------------------------------------------------- /src/jinja2/constants.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | #: list of lorem ipsum words used by the lipsum() helper function 3 | LOREM_IPSUM_WORDS = u"""\ 4 | a ac accumsan ad adipiscing aenean aliquam aliquet amet ante aptent arcu at 5 | auctor augue bibendum blandit class commodo condimentum congue consectetuer 6 | consequat conubia convallis cras cubilia cum curabitur curae cursus dapibus 7 | diam dictum dictumst dignissim dis dolor donec dui duis egestas eget eleifend 8 | elementum elit enim erat eros est et etiam eu euismod facilisi facilisis fames 9 | faucibus felis fermentum feugiat fringilla fusce gravida habitant habitasse hac 10 | hendrerit hymenaeos iaculis id imperdiet in inceptos integer interdum ipsum 11 | justo lacinia lacus laoreet lectus leo libero ligula litora lobortis lorem 12 | luctus maecenas magna magnis malesuada massa mattis mauris metus mi molestie 13 | mollis montes morbi mus nam nascetur natoque nec neque netus nibh nisi nisl non 14 | nonummy nostra nulla nullam nunc odio orci ornare parturient pede pellentesque 15 | penatibus per pharetra phasellus placerat platea porta porttitor posuere 16 | potenti praesent pretium primis proin pulvinar purus quam quis quisque rhoncus 17 | ridiculus risus rutrum sagittis sapien scelerisque sed sem semper senectus sit 18 | sociis sociosqu sodales sollicitudin suscipit suspendisse taciti tellus tempor 19 | tempus tincidunt torquent tortor tristique turpis ullamcorper ultrices 20 | ultricies urna ut varius vehicula vel velit venenatis vestibulum vitae vivamus 21 | viverra volutpat vulputate""" 22 | -------------------------------------------------------------------------------- /src/archivenow/jinja2/constants.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | #: list of lorem ipsum words used by the lipsum() helper function 3 | LOREM_IPSUM_WORDS = u"""\ 4 | a ac accumsan ad adipiscing aenean aliquam aliquet amet ante aptent arcu at 5 | auctor augue bibendum blandit class commodo condimentum congue consectetuer 6 | consequat conubia convallis cras cubilia cum curabitur curae cursus dapibus 7 | diam dictum dictumst dignissim dis dolor donec dui duis egestas eget eleifend 8 | elementum elit enim erat eros est et etiam eu euismod facilisi facilisis fames 9 | faucibus felis fermentum feugiat fringilla fusce gravida habitant habitasse hac 10 | hendrerit hymenaeos iaculis id imperdiet in inceptos integer interdum ipsum 11 | justo lacinia lacus laoreet lectus leo libero ligula litora lobortis lorem 12 | luctus maecenas magna magnis malesuada massa mattis mauris metus mi molestie 13 | mollis montes morbi mus nam nascetur natoque nec neque netus nibh nisi nisl non 14 | nonummy nostra nulla nullam nunc odio orci ornare parturient pede pellentesque 15 | penatibus per pharetra phasellus placerat platea porta porttitor posuere 16 | potenti praesent pretium primis proin pulvinar purus quam quis quisque rhoncus 17 | ridiculus risus rutrum sagittis sapien scelerisque sed sem semper senectus sit 18 | sociis sociosqu sodales sollicitudin suscipit suspendisse taciti tellus tempor 19 | tempus tincidunt torquent tortor tristique turpis ullamcorper ultrices 20 | ultricies urna ut varius vehicula vel velit venenatis vestibulum vitae vivamus 21 | viverra volutpat vulputate""" 22 | -------------------------------------------------------------------------------- /src/werkzeug/wrappers/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | werkzeug.wrappers 3 | ~~~~~~~~~~~~~~~~~ 4 | 5 | The wrappers are simple request and response objects which you can 6 | subclass to do whatever you want them to do. The request object contains 7 | the information transmitted by the client (webbrowser) and the response 8 | object contains all the information sent back to the browser. 9 | 10 | An important detail is that the request object is created with the WSGI 11 | environ and will act as high-level proxy whereas the response object is an 12 | actual WSGI application. 13 | 14 | Like everything else in Werkzeug these objects will work correctly with 15 | unicode data. Incoming form data parsed by the response object will be 16 | decoded into an unicode object if possible and if it makes sense. 17 | 18 | :copyright: 2007 Pallets 19 | :license: BSD-3-Clause 20 | """ 21 | from .accept import AcceptMixin 22 | from .auth import AuthorizationMixin 23 | from .auth import WWWAuthenticateMixin 24 | from .base_request import BaseRequest 25 | from .base_response import BaseResponse 26 | from .common_descriptors import CommonRequestDescriptorsMixin 27 | from .common_descriptors import CommonResponseDescriptorsMixin 28 | from .etag import ETagRequestMixin 29 | from .etag import ETagResponseMixin 30 | from .request import PlainRequest 31 | from .request import Request 32 | from .request import StreamOnlyMixin 33 | from .response import Response 34 | from .response import ResponseStream 35 | from .response import ResponseStreamMixin 36 | from .user_agent import UserAgentMixin 37 | -------------------------------------------------------------------------------- /src/archivenow/werkzeug/wrappers/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | werkzeug.wrappers 3 | ~~~~~~~~~~~~~~~~~ 4 | 5 | The wrappers are simple request and response objects which you can 6 | subclass to do whatever you want them to do. The request object contains 7 | the information transmitted by the client (webbrowser) and the response 8 | object contains all the information sent back to the browser. 9 | 10 | An important detail is that the request object is created with the WSGI 11 | environ and will act as high-level proxy whereas the response object is an 12 | actual WSGI application. 13 | 14 | Like everything else in Werkzeug these objects will work correctly with 15 | unicode data. Incoming form data parsed by the response object will be 16 | decoded into an unicode object if possible and if it makes sense. 17 | 18 | :copyright: 2007 Pallets 19 | :license: BSD-3-Clause 20 | """ 21 | from .accept import AcceptMixin 22 | from .auth import AuthorizationMixin 23 | from .auth import WWWAuthenticateMixin 24 | from .base_request import BaseRequest 25 | from .base_response import BaseResponse 26 | from .common_descriptors import CommonRequestDescriptorsMixin 27 | from .common_descriptors import CommonResponseDescriptorsMixin 28 | from .etag import ETagRequestMixin 29 | from .etag import ETagResponseMixin 30 | from .request import PlainRequest 31 | from .request import Request 32 | from .request import StreamOnlyMixin 33 | from .response import Response 34 | from .response import ResponseStream 35 | from .response import ResponseStreamMixin 36 | from .user_agent import UserAgentMixin 37 | -------------------------------------------------------------------------------- /src/archivenow/handlers/warc_handler.py: -------------------------------------------------------------------------------- 1 | import requests 2 | import os.path 3 | import distutils.spawn 4 | 5 | class WARC_handler(object): 6 | 7 | def __init__(self): 8 | self.enabled = True 9 | self.name = 'Generate WARC file' 10 | self.api_required = False 11 | 12 | def push(self, uri_org, p_args=[], session=requests.Session()): 13 | msg = '' 14 | if p_args['agent'] == 'squidwarc': 15 | # squidwarc 16 | #if not distutils.spawn.find_executable("squidwarc"): 17 | # return 'wget is not installed!' 18 | os.system('python ~/squidwarc_one_page/generte_warcs.py 9222 "'+uri_org+'" '+p_args['warc']+'.warc &> /dev/null') 19 | if os.path.exists(p_args['warc']): 20 | return p_args['warc'] 21 | elif os.path.exists(p_args['warc']+'.warc'): 22 | return p_args['warc']+'.warc' 23 | else: 24 | return 'squidwarc failed to generate the WARC file' 25 | 26 | else: 27 | if not distutils.spawn.find_executable("wget"): 28 | return 'wget is not installed!' 29 | # wget 30 | os.system('wget -E -H -k -p -q --delete-after --no-warc-compression --warc-file="'+p_args['warc']+'" "'+uri_org+'"') 31 | if os.path.exists(p_args['warc']): 32 | return p_args['warc'] 33 | elif os.path.exists(p_args['warc']+'.warc'): 34 | return p_args['warc']+'.warc' 35 | else: 36 | return 'wget failed to generate the WARC file' 37 | -------------------------------------------------------------------------------- /src/Flask-1.1.2.dist-info/LICENSE.rst: -------------------------------------------------------------------------------- 1 | Copyright 2010 Pallets 2 | 3 | Redistribution and use in source and binary forms, with or without 4 | modification, are permitted provided that the following conditions are 5 | met: 6 | 7 | 1. Redistributions of source code must retain the above copyright 8 | notice, this list of conditions and the following disclaimer. 9 | 10 | 2. Redistributions in binary form must reproduce the above copyright 11 | notice, this list of conditions and the following disclaimer in the 12 | documentation and/or other materials provided with the distribution. 13 | 14 | 3. Neither the name of the copyright holder nor the names of its 15 | contributors may be used to endorse or promote products derived from 16 | this software without specific prior written permission. 17 | 18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 20 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 21 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 22 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 23 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED 24 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 25 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 26 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 27 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 28 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 | -------------------------------------------------------------------------------- /src/click-7.1.2.dist-info/LICENSE.rst: -------------------------------------------------------------------------------- 1 | Copyright 2014 Pallets 2 | 3 | Redistribution and use in source and binary forms, with or without 4 | modification, are permitted provided that the following conditions are 5 | met: 6 | 7 | 1. Redistributions of source code must retain the above copyright 8 | notice, this list of conditions and the following disclaimer. 9 | 10 | 2. Redistributions in binary form must reproduce the above copyright 11 | notice, this list of conditions and the following disclaimer in the 12 | documentation and/or other materials provided with the distribution. 13 | 14 | 3. Neither the name of the copyright holder nor the names of its 15 | contributors may be used to endorse or promote products derived from 16 | this software without specific prior written permission. 17 | 18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 20 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 21 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 22 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 23 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED 24 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 25 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 26 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 27 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 28 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 | -------------------------------------------------------------------------------- /src/dbshare2.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | import sys, os, requests, json, time 5 | 6 | file_path = sys.argv[1] 7 | db_token = sys.argv[2] 8 | db_folder = sys.argv[3] 9 | 10 | timestamp = time.strftime('%Y%m%d%H%M%S') 11 | 12 | token = 'Bearer ' + db_token 13 | file_name = os.path.basename(file_path) 14 | file_ts = timestamp + "_" + file_name 15 | 16 | 17 | def upload(file): 18 | url = "https://content.dropboxapi.com/2/files/upload" 19 | 20 | headers = { 21 | "Authorization": token, 22 | "Content-Type": "application/octet-stream", 23 | "Dropbox-API-Arg": "{\"path\":\"/" + db_folder + "/" + file_ts + "\",\"mode\":{\".tag\":\"add\"},\"autorename\":true,\"mute\":false}" 24 | } 25 | 26 | data = open(file_path, "rb").read() 27 | 28 | r = requests.post(url, headers=headers, data=data) 29 | json_data = r.text 30 | parsed_json = json.loads(json_data) 31 | return parsed_json['path_lower'] 32 | 33 | 34 | def get_link(file): 35 | headers = {'Authorization': token,'Content-Type': 'application/json'} 36 | payload = {'path': file} 37 | 38 | r = requests.post("https://api.dropboxapi.com/2/sharing/create_shared_link_with_settings", json=payload, headers=headers) 39 | json_data = r.text 40 | parsed_json = json.loads(json_data) 41 | url_preview = parsed_json['url'] 42 | url_download = url_preview.replace("dl=0", "dl=1") 43 | 44 | try: 45 | return url_download 46 | except: 47 | return parsed_json['error']['shared_link_already_exists']['metadata']['url'] 48 | 49 | 50 | uploaded = upload(file) 51 | url = get_link(uploaded) 52 | 53 | sys.stdout.write(url) -------------------------------------------------------------------------------- /src/Jinja2-2.11.2.dist-info/LICENSE.rst: -------------------------------------------------------------------------------- 1 | Copyright 2007 Pallets 2 | 3 | Redistribution and use in source and binary forms, with or without 4 | modification, are permitted provided that the following conditions are 5 | met: 6 | 7 | 1. Redistributions of source code must retain the above copyright 8 | notice, this list of conditions and the following disclaimer. 9 | 10 | 2. Redistributions in binary form must reproduce the above copyright 11 | notice, this list of conditions and the following disclaimer in the 12 | documentation and/or other materials provided with the distribution. 13 | 14 | 3. Neither the name of the copyright holder nor the names of its 15 | contributors may be used to endorse or promote products derived from 16 | this software without specific prior written permission. 17 | 18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 20 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 21 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 22 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 23 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED 24 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 25 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 26 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 27 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 28 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 | -------------------------------------------------------------------------------- /src/MarkupSafe-1.1.1.dist-info/LICENSE.rst: -------------------------------------------------------------------------------- 1 | Copyright 2010 Pallets 2 | 3 | Redistribution and use in source and binary forms, with or without 4 | modification, are permitted provided that the following conditions are 5 | met: 6 | 7 | 1. Redistributions of source code must retain the above copyright 8 | notice, this list of conditions and the following disclaimer. 9 | 10 | 2. Redistributions in binary form must reproduce the above copyright 11 | notice, this list of conditions and the following disclaimer in the 12 | documentation and/or other materials provided with the distribution. 13 | 14 | 3. Neither the name of the copyright holder nor the names of its 15 | contributors may be used to endorse or promote products derived from 16 | this software without specific prior written permission. 17 | 18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 20 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 21 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 22 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 23 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED 24 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 25 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 26 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 27 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 28 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 | -------------------------------------------------------------------------------- /src/Werkzeug-1.0.1.dist-info/LICENSE.rst: -------------------------------------------------------------------------------- 1 | Copyright 2007 Pallets 2 | 3 | Redistribution and use in source and binary forms, with or without 4 | modification, are permitted provided that the following conditions are 5 | met: 6 | 7 | 1. Redistributions of source code must retain the above copyright 8 | notice, this list of conditions and the following disclaimer. 9 | 10 | 2. Redistributions in binary form must reproduce the above copyright 11 | notice, this list of conditions and the following disclaimer in the 12 | documentation and/or other materials provided with the distribution. 13 | 14 | 3. Neither the name of the copyright holder nor the names of its 15 | contributors may be used to endorse or promote products derived from 16 | this software without specific prior written permission. 17 | 18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 20 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 21 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 22 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 23 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED 24 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 25 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 26 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 27 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 28 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 | -------------------------------------------------------------------------------- /src/archivenow/Flask-1.1.2.dist-info/LICENSE.rst: -------------------------------------------------------------------------------- 1 | Copyright 2010 Pallets 2 | 3 | Redistribution and use in source and binary forms, with or without 4 | modification, are permitted provided that the following conditions are 5 | met: 6 | 7 | 1. Redistributions of source code must retain the above copyright 8 | notice, this list of conditions and the following disclaimer. 9 | 10 | 2. Redistributions in binary form must reproduce the above copyright 11 | notice, this list of conditions and the following disclaimer in the 12 | documentation and/or other materials provided with the distribution. 13 | 14 | 3. Neither the name of the copyright holder nor the names of its 15 | contributors may be used to endorse or promote products derived from 16 | this software without specific prior written permission. 17 | 18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 20 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 21 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 22 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 23 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED 24 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 25 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 26 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 27 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 28 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 | -------------------------------------------------------------------------------- /src/archivenow/Jinja2-2.11.2.dist-info/LICENSE.rst: -------------------------------------------------------------------------------- 1 | Copyright 2007 Pallets 2 | 3 | Redistribution and use in source and binary forms, with or without 4 | modification, are permitted provided that the following conditions are 5 | met: 6 | 7 | 1. Redistributions of source code must retain the above copyright 8 | notice, this list of conditions and the following disclaimer. 9 | 10 | 2. Redistributions in binary form must reproduce the above copyright 11 | notice, this list of conditions and the following disclaimer in the 12 | documentation and/or other materials provided with the distribution. 13 | 14 | 3. Neither the name of the copyright holder nor the names of its 15 | contributors may be used to endorse or promote products derived from 16 | this software without specific prior written permission. 17 | 18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 20 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 21 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 22 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 23 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED 24 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 25 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 26 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 27 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 28 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 | -------------------------------------------------------------------------------- /src/archivenow/Werkzeug-1.0.1.dist-info/LICENSE.rst: -------------------------------------------------------------------------------- 1 | Copyright 2007 Pallets 2 | 3 | Redistribution and use in source and binary forms, with or without 4 | modification, are permitted provided that the following conditions are 5 | met: 6 | 7 | 1. Redistributions of source code must retain the above copyright 8 | notice, this list of conditions and the following disclaimer. 9 | 10 | 2. Redistributions in binary form must reproduce the above copyright 11 | notice, this list of conditions and the following disclaimer in the 12 | documentation and/or other materials provided with the distribution. 13 | 14 | 3. Neither the name of the copyright holder nor the names of its 15 | contributors may be used to endorse or promote products derived from 16 | this software without specific prior written permission. 17 | 18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 20 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 21 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 22 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 23 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED 24 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 25 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 26 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 27 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 28 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 | -------------------------------------------------------------------------------- /src/archivenow/click-7.1.2.dist-info/LICENSE.rst: -------------------------------------------------------------------------------- 1 | Copyright 2014 Pallets 2 | 3 | Redistribution and use in source and binary forms, with or without 4 | modification, are permitted provided that the following conditions are 5 | met: 6 | 7 | 1. Redistributions of source code must retain the above copyright 8 | notice, this list of conditions and the following disclaimer. 9 | 10 | 2. Redistributions in binary form must reproduce the above copyright 11 | notice, this list of conditions and the following disclaimer in the 12 | documentation and/or other materials provided with the distribution. 13 | 14 | 3. Neither the name of the copyright holder nor the names of its 15 | contributors may be used to endorse or promote products derived from 16 | this software without specific prior written permission. 17 | 18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 20 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 21 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 22 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 23 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED 24 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 25 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 26 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 27 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 28 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 | -------------------------------------------------------------------------------- /src/archivenow/MarkupSafe-1.1.1.dist-info/LICENSE.rst: -------------------------------------------------------------------------------- 1 | Copyright 2010 Pallets 2 | 3 | Redistribution and use in source and binary forms, with or without 4 | modification, are permitted provided that the following conditions are 5 | met: 6 | 7 | 1. Redistributions of source code must retain the above copyright 8 | notice, this list of conditions and the following disclaimer. 9 | 10 | 2. Redistributions in binary form must reproduce the above copyright 11 | notice, this list of conditions and the following disclaimer in the 12 | documentation and/or other materials provided with the distribution. 13 | 14 | 3. Neither the name of the copyright holder nor the names of its 15 | contributors may be used to endorse or promote products derived from 16 | this software without specific prior written permission. 17 | 18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 20 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 21 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 22 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 23 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED 24 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 25 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 26 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 27 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 28 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 | -------------------------------------------------------------------------------- /src/archivenow/handlers/st_handler.py: -------------------------------------------------------------------------------- 1 | import os 2 | import requests 3 | import re 4 | 5 | new_header = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36' 6 | 7 | headers = {'User-Agent': new_header} 8 | 9 | r_url = re.compile('archive here') 10 | re_exists_url = re.compile("archive here: http\S+?") 11 | 12 | class ST_handler(object): 13 | 14 | def __init__(self): 15 | self.enabled = True 16 | self.name = 'The Archive.st' 17 | self.api_required = False 18 | 19 | def push(self, uri_org, p_args=[], session=requests.Session()): 20 | msg = '' 21 | 22 | try: 23 | post_data = {"url": uri_org} 24 | r = session.post("https://archive.st/archive.php", 25 | data=post_data, headers=headers) 26 | 27 | page = str(r.content) 28 | 29 | if page in "
The Captcha is invalid. Please try again.
": 30 | raise ValueError('The Captcha is invalid.') 31 | 32 | results = r_url.findall(page) 33 | 34 | if results: 35 | msg = results[0] 36 | elif "ERROR" in page: 37 | new_results = re_exists_url.findall(page) 38 | msg = new_results[0] 39 | msg = msg.replace('http://', 'https://') 40 | msg = msg.replace('Archive.st', 'archive.st') 41 | 42 | except Exception as e: 43 | msg = "ERROR ({0}): {1}".format(self.name,e) 44 | 45 | return msg 46 | -------------------------------------------------------------------------------- /src/jinja2/optimizer.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """The optimizer tries to constant fold expressions and modify the AST 3 | in place so that it should be faster to evaluate. 4 | 5 | Because the AST does not contain all the scoping information and the 6 | compiler has to find that out, we cannot do all the optimizations we 7 | want. For example, loop unrolling doesn't work because unrolled loops 8 | would have a different scope. The solution would be a second syntax tree 9 | that stored the scoping rules. 10 | """ 11 | from . import nodes 12 | from .visitor import NodeTransformer 13 | 14 | 15 | def optimize(node, environment): 16 | """The context hint can be used to perform an static optimization 17 | based on the context given.""" 18 | optimizer = Optimizer(environment) 19 | return optimizer.visit(node) 20 | 21 | 22 | class Optimizer(NodeTransformer): 23 | def __init__(self, environment): 24 | self.environment = environment 25 | 26 | def generic_visit(self, node, *args, **kwargs): 27 | node = super(Optimizer, self).generic_visit(node, *args, **kwargs) 28 | 29 | # Do constant folding. Some other nodes besides Expr have 30 | # as_const, but folding them causes errors later on. 31 | if isinstance(node, nodes.Expr): 32 | try: 33 | return nodes.Const.from_untrusted( 34 | node.as_const(args[0] if args else None), 35 | lineno=node.lineno, 36 | environment=self.environment, 37 | ) 38 | except nodes.Impossible: 39 | pass 40 | 41 | return node 42 | -------------------------------------------------------------------------------- /src/archivenow/jinja2/optimizer.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """The optimizer tries to constant fold expressions and modify the AST 3 | in place so that it should be faster to evaluate. 4 | 5 | Because the AST does not contain all the scoping information and the 6 | compiler has to find that out, we cannot do all the optimizations we 7 | want. For example, loop unrolling doesn't work because unrolled loops 8 | would have a different scope. The solution would be a second syntax tree 9 | that stored the scoping rules. 10 | """ 11 | from . import nodes 12 | from .visitor import NodeTransformer 13 | 14 | 15 | def optimize(node, environment): 16 | """The context hint can be used to perform an static optimization 17 | based on the context given.""" 18 | optimizer = Optimizer(environment) 19 | return optimizer.visit(node) 20 | 21 | 22 | class Optimizer(NodeTransformer): 23 | def __init__(self, environment): 24 | self.environment = environment 25 | 26 | def generic_visit(self, node, *args, **kwargs): 27 | node = super(Optimizer, self).generic_visit(node, *args, **kwargs) 28 | 29 | # Do constant folding. Some other nodes besides Expr have 30 | # as_const, but folding them causes errors later on. 31 | if isinstance(node, nodes.Expr): 32 | try: 33 | return nodes.Const.from_untrusted( 34 | node.as_const(args[0] if args else None), 35 | lineno=node.lineno, 36 | environment=self.environment, 37 | ) 38 | except nodes.Impossible: 39 | pass 40 | 41 | return node 42 | -------------------------------------------------------------------------------- /src/urllib3/packages/backports/makefile.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | backports.makefile 4 | ~~~~~~~~~~~~~~~~~~ 5 | 6 | Backports the Python 3 ``socket.makefile`` method for use with anything that 7 | wants to create a "fake" socket object. 8 | """ 9 | import io 10 | 11 | from socket import SocketIO 12 | 13 | 14 | def backport_makefile( 15 | self, mode="r", buffering=None, encoding=None, errors=None, newline=None 16 | ): 17 | """ 18 | Backport of ``socket.makefile`` from Python 3.5. 19 | """ 20 | if not set(mode) <= {"r", "w", "b"}: 21 | raise ValueError("invalid mode %r (only r, w, b allowed)" % (mode,)) 22 | writing = "w" in mode 23 | reading = "r" in mode or not writing 24 | assert reading or writing 25 | binary = "b" in mode 26 | rawmode = "" 27 | if reading: 28 | rawmode += "r" 29 | if writing: 30 | rawmode += "w" 31 | raw = SocketIO(self, rawmode) 32 | self._makefile_refs += 1 33 | if buffering is None: 34 | buffering = -1 35 | if buffering < 0: 36 | buffering = io.DEFAULT_BUFFER_SIZE 37 | if buffering == 0: 38 | if not binary: 39 | raise ValueError("unbuffered streams must be binary") 40 | return raw 41 | if reading and writing: 42 | buffer = io.BufferedRWPair(raw, raw, buffering) 43 | elif reading: 44 | buffer = io.BufferedReader(raw, buffering) 45 | else: 46 | assert writing 47 | buffer = io.BufferedWriter(raw, buffering) 48 | if binary: 49 | return buffer 50 | text = io.TextIOWrapper(buffer, encoding, errors, newline) 51 | text.mode = mode 52 | return text 53 | -------------------------------------------------------------------------------- /src/click/globals.py: -------------------------------------------------------------------------------- 1 | from threading import local 2 | 3 | _local = local() 4 | 5 | 6 | def get_current_context(silent=False): 7 | """Returns the current click context. This can be used as a way to 8 | access the current context object from anywhere. This is a more implicit 9 | alternative to the :func:`pass_context` decorator. This function is 10 | primarily useful for helpers such as :func:`echo` which might be 11 | interested in changing its behavior based on the current context. 12 | 13 | To push the current context, :meth:`Context.scope` can be used. 14 | 15 | .. versionadded:: 5.0 16 | 17 | :param silent: if set to `True` the return value is `None` if no context 18 | is available. The default behavior is to raise a 19 | :exc:`RuntimeError`. 20 | """ 21 | try: 22 | return _local.stack[-1] 23 | except (AttributeError, IndexError): 24 | if not silent: 25 | raise RuntimeError("There is no active click context.") 26 | 27 | 28 | def push_context(ctx): 29 | """Pushes a new context to the current stack.""" 30 | _local.__dict__.setdefault("stack", []).append(ctx) 31 | 32 | 33 | def pop_context(): 34 | """Removes the top level from the stack.""" 35 | _local.stack.pop() 36 | 37 | 38 | def resolve_color_default(color=None): 39 | """"Internal helper to get the default value of the color flag. If a 40 | value is passed it's returned unchanged, otherwise it's looked up from 41 | the current context. 42 | """ 43 | if color is not None: 44 | return color 45 | ctx = get_current_context(silent=True) 46 | if ctx is not None: 47 | return ctx.color 48 | -------------------------------------------------------------------------------- /src/itsdangerous-1.1.0.dist-info/RECORD: -------------------------------------------------------------------------------- 1 | itsdangerous-1.1.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 2 | itsdangerous-1.1.0.dist-info/LICENSE.rst,sha256=_rKL-jSNgWsOfbrt3xhJnufoAHxngT241qs3xl4EbNQ,2120 3 | itsdangerous-1.1.0.dist-info/METADATA,sha256=yyKjL2WOg_WybH2Yt-7NIvGpV3B93IsMc2HbToWc7Sk,3062 4 | itsdangerous-1.1.0.dist-info/RECORD,, 5 | itsdangerous-1.1.0.dist-info/WHEEL,sha256=CihQvCnsGZQBGAHLEUMf0IdA4fRduS_NBUTMgCTtvPM,110 6 | itsdangerous-1.1.0.dist-info/top_level.txt,sha256=gKN1OKLk81i7fbWWildJA88EQ9NhnGMSvZqhfz9ICjk,13 7 | itsdangerous/__init__.py,sha256=Dr-SkfFdOyiR_WjiqIXnlFpYRMW0XvPBNV5muzE5N_A,708 8 | itsdangerous/__init__.pyc,, 9 | itsdangerous/_compat.py,sha256=oAAMcQAjwQXQpIbuHT3o-aL56ztm_7Fe-4lD7IteF6A,1133 10 | itsdangerous/_compat.pyc,, 11 | itsdangerous/_json.py,sha256=W7BLL4RPnSOjNdo2gfKT3BeARMCIikY6O75rwWV0XoE,431 12 | itsdangerous/_json.pyc,, 13 | itsdangerous/encoding.py,sha256=KhY85PsH3bGHe5JANN4LMZ_3b0IwUWRRnnw1wvLlaIg,1224 14 | itsdangerous/encoding.pyc,, 15 | itsdangerous/exc.py,sha256=KFxg7K2XMliMQAxL4jkRNgE8e73z2jcRaLrzwqVObnI,2959 16 | itsdangerous/exc.pyc,, 17 | itsdangerous/jws.py,sha256=6Lh9W-Lu8D9s7bRazs0Zb35eyAZm3pzLeZqHmRELeII,7470 18 | itsdangerous/jws.pyc,, 19 | itsdangerous/serializer.py,sha256=bT-dfjKec9zcKa8Qo8n7mHW_8M-XCTPMOFq1TQI_Fv4,8653 20 | itsdangerous/serializer.pyc,, 21 | itsdangerous/signer.py,sha256=OOZbK8XomBjQfOFEul8osesn7fc80MXB0L1r7E86_GQ,6345 22 | itsdangerous/signer.pyc,, 23 | itsdangerous/timed.py,sha256=on5Q5lX7LT_LaETOhzF1ZmrRbia8P98263R8FiRyM6Y,5635 24 | itsdangerous/timed.pyc,, 25 | itsdangerous/url_safe.py,sha256=xnFTaukIPmW6Qwn6uNQLgzdau8RuAKnp5N7ukuXykj0,2275 26 | itsdangerous/url_safe.pyc,, 27 | -------------------------------------------------------------------------------- /src/archivenow/click/globals.py: -------------------------------------------------------------------------------- 1 | from threading import local 2 | 3 | _local = local() 4 | 5 | 6 | def get_current_context(silent=False): 7 | """Returns the current click context. This can be used as a way to 8 | access the current context object from anywhere. This is a more implicit 9 | alternative to the :func:`pass_context` decorator. This function is 10 | primarily useful for helpers such as :func:`echo` which might be 11 | interested in changing its behavior based on the current context. 12 | 13 | To push the current context, :meth:`Context.scope` can be used. 14 | 15 | .. versionadded:: 5.0 16 | 17 | :param silent: if set to `True` the return value is `None` if no context 18 | is available. The default behavior is to raise a 19 | :exc:`RuntimeError`. 20 | """ 21 | try: 22 | return _local.stack[-1] 23 | except (AttributeError, IndexError): 24 | if not silent: 25 | raise RuntimeError("There is no active click context.") 26 | 27 | 28 | def push_context(ctx): 29 | """Pushes a new context to the current stack.""" 30 | _local.__dict__.setdefault("stack", []).append(ctx) 31 | 32 | 33 | def pop_context(): 34 | """Removes the top level from the stack.""" 35 | _local.stack.pop() 36 | 37 | 38 | def resolve_color_default(color=None): 39 | """"Internal helper to get the default value of the color flag. If a 40 | value is passed it's returned unchanged, otherwise it's looked up from 41 | the current context. 42 | """ 43 | if color is not None: 44 | return color 45 | ctx = get_current_context(silent=True) 46 | if ctx is not None: 47 | return ctx.color 48 | -------------------------------------------------------------------------------- /src/archivenow/itsdangerous-1.1.0.dist-info/RECORD: -------------------------------------------------------------------------------- 1 | itsdangerous-1.1.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 2 | itsdangerous-1.1.0.dist-info/LICENSE.rst,sha256=_rKL-jSNgWsOfbrt3xhJnufoAHxngT241qs3xl4EbNQ,2120 3 | itsdangerous-1.1.0.dist-info/METADATA,sha256=yyKjL2WOg_WybH2Yt-7NIvGpV3B93IsMc2HbToWc7Sk,3062 4 | itsdangerous-1.1.0.dist-info/RECORD,, 5 | itsdangerous-1.1.0.dist-info/WHEEL,sha256=CihQvCnsGZQBGAHLEUMf0IdA4fRduS_NBUTMgCTtvPM,110 6 | itsdangerous-1.1.0.dist-info/top_level.txt,sha256=gKN1OKLk81i7fbWWildJA88EQ9NhnGMSvZqhfz9ICjk,13 7 | itsdangerous/__init__.py,sha256=Dr-SkfFdOyiR_WjiqIXnlFpYRMW0XvPBNV5muzE5N_A,708 8 | itsdangerous/__init__.pyc,, 9 | itsdangerous/_compat.py,sha256=oAAMcQAjwQXQpIbuHT3o-aL56ztm_7Fe-4lD7IteF6A,1133 10 | itsdangerous/_compat.pyc,, 11 | itsdangerous/_json.py,sha256=W7BLL4RPnSOjNdo2gfKT3BeARMCIikY6O75rwWV0XoE,431 12 | itsdangerous/_json.pyc,, 13 | itsdangerous/encoding.py,sha256=KhY85PsH3bGHe5JANN4LMZ_3b0IwUWRRnnw1wvLlaIg,1224 14 | itsdangerous/encoding.pyc,, 15 | itsdangerous/exc.py,sha256=KFxg7K2XMliMQAxL4jkRNgE8e73z2jcRaLrzwqVObnI,2959 16 | itsdangerous/exc.pyc,, 17 | itsdangerous/jws.py,sha256=6Lh9W-Lu8D9s7bRazs0Zb35eyAZm3pzLeZqHmRELeII,7470 18 | itsdangerous/jws.pyc,, 19 | itsdangerous/serializer.py,sha256=bT-dfjKec9zcKa8Qo8n7mHW_8M-XCTPMOFq1TQI_Fv4,8653 20 | itsdangerous/serializer.pyc,, 21 | itsdangerous/signer.py,sha256=OOZbK8XomBjQfOFEul8osesn7fc80MXB0L1r7E86_GQ,6345 22 | itsdangerous/signer.pyc,, 23 | itsdangerous/timed.py,sha256=on5Q5lX7LT_LaETOhzF1ZmrRbia8P98263R8FiRyM6Y,5635 24 | itsdangerous/timed.pyc,, 25 | itsdangerous/url_safe.py,sha256=xnFTaukIPmW6Qwn6uNQLgzdau8RuAKnp5N7ukuXykj0,2275 26 | itsdangerous/url_safe.pyc,, 27 | -------------------------------------------------------------------------------- /src/idna-2.10.dist-info/LICENSE.rst: -------------------------------------------------------------------------------- 1 | License 2 | ------- 3 | 4 | License: bsd-3-clause 5 | 6 | Copyright (c) 2013-2020, Kim Davies. All rights reserved. 7 | 8 | Redistribution and use in source and binary forms, with or without 9 | modification, are permitted provided that the following conditions are met: 10 | 11 | #. Redistributions of source code must retain the above copyright 12 | notice, this list of conditions and the following disclaimer. 13 | 14 | #. Redistributions in binary form must reproduce the above 15 | copyright notice, this list of conditions and the following 16 | disclaimer in the documentation and/or other materials provided with 17 | the distribution. 18 | 19 | #. Neither the name of the copyright holder nor the names of the 20 | contributors may be used to endorse or promote products derived 21 | from this software without specific prior written permission. 22 | 23 | #. THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS "AS IS" AND ANY 24 | EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 25 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 26 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR 27 | CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 28 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 29 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 30 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 31 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 32 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 33 | USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH 34 | DAMAGE. 35 | -------------------------------------------------------------------------------- /src/chardet/__init__.py: -------------------------------------------------------------------------------- 1 | ######################## BEGIN LICENSE BLOCK ######################## 2 | # This library is free software; you can redistribute it and/or 3 | # modify it under the terms of the GNU Lesser General Public 4 | # License as published by the Free Software Foundation; either 5 | # version 2.1 of the License, or (at your option) any later version. 6 | # 7 | # This library is distributed in the hope that it will be useful, 8 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 9 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 10 | # Lesser General Public License for more details. 11 | # 12 | # You should have received a copy of the GNU Lesser General Public 13 | # License along with this library; if not, write to the Free Software 14 | # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 15 | # 02110-1301 USA 16 | ######################### END LICENSE BLOCK ######################### 17 | 18 | 19 | from .compat import PY2, PY3 20 | from .universaldetector import UniversalDetector 21 | from .version import __version__, VERSION 22 | 23 | 24 | def detect(byte_str): 25 | """ 26 | Detect the encoding of the given byte string. 27 | 28 | :param byte_str: The byte sequence to examine. 29 | :type byte_str: ``bytes`` or ``bytearray`` 30 | """ 31 | if not isinstance(byte_str, bytearray): 32 | if not isinstance(byte_str, bytes): 33 | raise TypeError('Expected object of type bytes or bytearray, got: ' 34 | '{0}'.format(type(byte_str))) 35 | else: 36 | byte_str = bytearray(byte_str) 37 | detector = UniversalDetector() 38 | detector.feed(byte_str) 39 | return detector.close() 40 | -------------------------------------------------------------------------------- /src/jinja2/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """Jinja is a template engine written in pure Python. It provides a 3 | non-XML syntax that supports inline expressions and an optional 4 | sandboxed environment. 5 | """ 6 | from markupsafe import escape 7 | from markupsafe import Markup 8 | 9 | from .bccache import BytecodeCache 10 | from .bccache import FileSystemBytecodeCache 11 | from .bccache import MemcachedBytecodeCache 12 | from .environment import Environment 13 | from .environment import Template 14 | from .exceptions import TemplateAssertionError 15 | from .exceptions import TemplateError 16 | from .exceptions import TemplateNotFound 17 | from .exceptions import TemplateRuntimeError 18 | from .exceptions import TemplatesNotFound 19 | from .exceptions import TemplateSyntaxError 20 | from .exceptions import UndefinedError 21 | from .filters import contextfilter 22 | from .filters import environmentfilter 23 | from .filters import evalcontextfilter 24 | from .loaders import BaseLoader 25 | from .loaders import ChoiceLoader 26 | from .loaders import DictLoader 27 | from .loaders import FileSystemLoader 28 | from .loaders import FunctionLoader 29 | from .loaders import ModuleLoader 30 | from .loaders import PackageLoader 31 | from .loaders import PrefixLoader 32 | from .runtime import ChainableUndefined 33 | from .runtime import DebugUndefined 34 | from .runtime import make_logging_undefined 35 | from .runtime import StrictUndefined 36 | from .runtime import Undefined 37 | from .utils import clear_caches 38 | from .utils import contextfunction 39 | from .utils import environmentfunction 40 | from .utils import evalcontextfunction 41 | from .utils import is_undefined 42 | from .utils import select_autoescape 43 | 44 | __version__ = "2.11.2" 45 | -------------------------------------------------------------------------------- /src/werkzeug/wrappers/request.py: -------------------------------------------------------------------------------- 1 | from .accept import AcceptMixin 2 | from .auth import AuthorizationMixin 3 | from .base_request import BaseRequest 4 | from .common_descriptors import CommonRequestDescriptorsMixin 5 | from .cors import CORSRequestMixin 6 | from .etag import ETagRequestMixin 7 | from .user_agent import UserAgentMixin 8 | 9 | 10 | class Request( 11 | BaseRequest, 12 | AcceptMixin, 13 | ETagRequestMixin, 14 | UserAgentMixin, 15 | AuthorizationMixin, 16 | CORSRequestMixin, 17 | CommonRequestDescriptorsMixin, 18 | ): 19 | """Full featured request object implementing the following mixins: 20 | 21 | - :class:`AcceptMixin` for accept header parsing 22 | - :class:`ETagRequestMixin` for etag and cache control handling 23 | - :class:`UserAgentMixin` for user agent introspection 24 | - :class:`AuthorizationMixin` for http auth handling 25 | - :class:`~werkzeug.wrappers.cors.CORSRequestMixin` for Cross 26 | Origin Resource Sharing headers 27 | - :class:`CommonRequestDescriptorsMixin` for common headers 28 | 29 | """ 30 | 31 | 32 | class StreamOnlyMixin(object): 33 | """If mixed in before the request object this will change the behavior 34 | of it to disable handling of form parsing. This disables the 35 | :attr:`files`, :attr:`form` attributes and will just provide a 36 | :attr:`stream` attribute that however is always available. 37 | 38 | .. versionadded:: 0.9 39 | """ 40 | 41 | disable_data_descriptor = True 42 | want_form_data_parsed = False 43 | 44 | 45 | class PlainRequest(StreamOnlyMixin, Request): 46 | """A request object without special form parsing capabilities. 47 | 48 | .. versionadded:: 0.9 49 | """ 50 | -------------------------------------------------------------------------------- /src/archivenow/jinja2/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """Jinja is a template engine written in pure Python. It provides a 3 | non-XML syntax that supports inline expressions and an optional 4 | sandboxed environment. 5 | """ 6 | from markupsafe import escape 7 | from markupsafe import Markup 8 | 9 | from .bccache import BytecodeCache 10 | from .bccache import FileSystemBytecodeCache 11 | from .bccache import MemcachedBytecodeCache 12 | from .environment import Environment 13 | from .environment import Template 14 | from .exceptions import TemplateAssertionError 15 | from .exceptions import TemplateError 16 | from .exceptions import TemplateNotFound 17 | from .exceptions import TemplateRuntimeError 18 | from .exceptions import TemplatesNotFound 19 | from .exceptions import TemplateSyntaxError 20 | from .exceptions import UndefinedError 21 | from .filters import contextfilter 22 | from .filters import environmentfilter 23 | from .filters import evalcontextfilter 24 | from .loaders import BaseLoader 25 | from .loaders import ChoiceLoader 26 | from .loaders import DictLoader 27 | from .loaders import FileSystemLoader 28 | from .loaders import FunctionLoader 29 | from .loaders import ModuleLoader 30 | from .loaders import PackageLoader 31 | from .loaders import PrefixLoader 32 | from .runtime import ChainableUndefined 33 | from .runtime import DebugUndefined 34 | from .runtime import make_logging_undefined 35 | from .runtime import StrictUndefined 36 | from .runtime import Undefined 37 | from .utils import clear_caches 38 | from .utils import contextfunction 39 | from .utils import environmentfunction 40 | from .utils import evalcontextfunction 41 | from .utils import is_undefined 42 | from .utils import select_autoescape 43 | 44 | __version__ = "2.11.2" 45 | -------------------------------------------------------------------------------- /src/archivenow/werkzeug/wrappers/request.py: -------------------------------------------------------------------------------- 1 | from .accept import AcceptMixin 2 | from .auth import AuthorizationMixin 3 | from .base_request import BaseRequest 4 | from .common_descriptors import CommonRequestDescriptorsMixin 5 | from .cors import CORSRequestMixin 6 | from .etag import ETagRequestMixin 7 | from .user_agent import UserAgentMixin 8 | 9 | 10 | class Request( 11 | BaseRequest, 12 | AcceptMixin, 13 | ETagRequestMixin, 14 | UserAgentMixin, 15 | AuthorizationMixin, 16 | CORSRequestMixin, 17 | CommonRequestDescriptorsMixin, 18 | ): 19 | """Full featured request object implementing the following mixins: 20 | 21 | - :class:`AcceptMixin` for accept header parsing 22 | - :class:`ETagRequestMixin` for etag and cache control handling 23 | - :class:`UserAgentMixin` for user agent introspection 24 | - :class:`AuthorizationMixin` for http auth handling 25 | - :class:`~werkzeug.wrappers.cors.CORSRequestMixin` for Cross 26 | Origin Resource Sharing headers 27 | - :class:`CommonRequestDescriptorsMixin` for common headers 28 | 29 | """ 30 | 31 | 32 | class StreamOnlyMixin(object): 33 | """If mixed in before the request object this will change the behavior 34 | of it to disable handling of form parsing. This disables the 35 | :attr:`files`, :attr:`form` attributes and will just provide a 36 | :attr:`stream` attribute that however is always available. 37 | 38 | .. versionadded:: 0.9 39 | """ 40 | 41 | disable_data_descriptor = True 42 | want_form_data_parsed = False 43 | 44 | 45 | class PlainRequest(StreamOnlyMixin, Request): 46 | """A request object without special form parsing capabilities. 47 | 48 | .. versionadded:: 0.9 49 | """ 50 | -------------------------------------------------------------------------------- /src/archivenow/handlers/cc_handler.py: -------------------------------------------------------------------------------- 1 | import requests 2 | import json 3 | 4 | class CC_handler(object): 5 | 6 | def __init__(self): 7 | self.enabled = True 8 | self.name = 'The Perma.cc Archive' 9 | self.api_required = True 10 | 11 | def push(self, uri_org, p_args=[], session=requests.Session()): 12 | msg = '' 13 | try: 14 | 15 | APIKEY = p_args['cc_api_key'] 16 | 17 | r = session.post('https://api.perma.cc/v1/archives/?api_key='+APIKEY, timeout=120, 18 | data=json.dumps({"url":uri_org}), 19 | headers={'Content-type': 'application/json'}, 20 | allow_redirects=True) 21 | r.raise_for_status() 22 | 23 | if 'Location' in r.headers: 24 | return 'https://perma.cc/'+r.headers['Location'].rsplit('/',1)[1] 25 | else: 26 | for r2 in r.history: 27 | if 'Location' in r2.headers: 28 | return 'https://perma.cc/'+r2.headers['Location'].rsplit('/',1)[1] 29 | entity_json = r.json() 30 | if 'guid' in entity_json: 31 | return str('https://perma.cc/'+entity_json['guid']) 32 | msg = "Error ("+self.name+ "): No HTTP Location header is returned in the response" 33 | except Exception as e: 34 | if (msg == '') and ('_api_key' in str(e)): 35 | msg = "Error (" + self.name+ "): " + 'An API Key is required ' 36 | elif (msg == ''): 37 | msg = "Error (" + self.name+ "): " + str(e) 38 | pass; 39 | return msg 40 | -------------------------------------------------------------------------------- /src/requests-2.24.0.dist-info/metadata.json: -------------------------------------------------------------------------------- 1 | {"license": "Apache 2.0", "name": "requests", "metadata_version": "2.0", "generator": "bdist_wheel (0.24.0)", "project_url": "Source, https://github.com/psf/requests", "summary": "Python HTTP for Humans.", "run_requires": [{"requires": ["PySocks (!=1.5.7,>=1.5.6)"], "extra": "socks"}, {"environment": "sys_platform == \"win32\" and python_version == \"2.7\"", "requires": ["win-inet-pton"], "extra": "socks"}, {"requires": ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)"], "extra": "security"}, {"requires": ["chardet (>=3.0.2,<4)", "idna (>=2.5,<3)", "urllib3 (!=1.25.1,<1.26,!=1.25.0,>=1.21.1)", "certifi (>=2017.4.17)"]}], "version": "2.24.0", "extensions": {"python.details": {"project_urls": {"Home": "https://requests.readthedocs.io"}, "document_names": {"description": "DESCRIPTION.rst", "license": "LICENSE.txt"}, "contacts": [{"role": "author", "email": "me@kennethreitz.org", "name": "Kenneth Reitz"}]}}, "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "description_content_type": "text/markdown", "test_requires": [{"requires": ["pytest-httpbin (==0.0.7)", "pytest-cov", "pytest-mock", "pytest-xdist", "PySocks (!=1.5.7,>=1.5.6)", "pytest (>=3)"]}], "classifiers": ["Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Natural Language :: English", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy"], "extras": ["security", "socks"]} --------------------------------------------------------------------------------