__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

aptanhua@216.73.216.200: ~ $
import logging

from pip._vendor import requests

from pip._vendor.cachecontrol.adapter import CacheControlAdapter
from pip._vendor.cachecontrol.cache import DictCache
from pip._vendor.cachecontrol.controller import logger

from argparse import ArgumentParser


def setup_logging():
    logger.setLevel(logging.DEBUG)
    handler = logging.StreamHandler()
    logger.addHandler(handler)


def get_session():
    adapter = CacheControlAdapter(
        DictCache(),
        cache_etags=True,
        serializer=None,
        heuristic=None,
    )
    sess = requests.Session()
    sess.mount('http://', adapter)
    sess.mount('https://', adapter)

    sess.cache_controller = adapter.controller
    return sess


def get_args():
    parser = ArgumentParser()
    parser.add_argument('url', help='The URL to try and cache')
    return parser.parse_args()


def main(args=None):
    args = get_args()
    sess = get_session()

    # Make a request to get a response
    resp = sess.get(args.url)

    # Turn on logging
    setup_logging()

    # try setting the cache
    sess.cache_controller.cache_response(resp.request, resp.raw)

    # Now try to get it
    if sess.cache_controller.cached_request(resp.request):
        print('Cached!')
    else:
        print('Not cached :(')


if __name__ == '__main__':
    main()

Filemanager

Name Type Size Permission Actions
caches Folder 0755
__init__.py File 302 B 0644
__init__.pyc File 583 B 0644
__init__.pyo File 583 B 0644
_cmd.py File 1.29 KB 0644
_cmd.pyc File 2.01 KB 0644
_cmd.pyo File 2.01 KB 0644
adapter.py File 4.5 KB 0644
adapter.pyc File 3.44 KB 0644
adapter.pyo File 3.44 KB 0644
cache.py File 790 B 0644
cache.pyc File 2.34 KB 0644
cache.pyo File 2.34 KB 0644
compat.py File 380 B 0644
compat.pyc File 618 B 0644
compat.pyo File 618 B 0644
controller.py File 12.72 KB 0644
controller.pyc File 8.87 KB 0644
controller.pyo File 8.87 KB 0644
filewrapper.py File 2.47 KB 0644
filewrapper.pyc File 2.6 KB 0644
filewrapper.pyo File 2.6 KB 0644
heuristics.py File 4.04 KB 0644
heuristics.pyc File 5.8 KB 0644
heuristics.pyo File 5.8 KB 0644
serialize.py File 6.38 KB 0644
serialize.pyc File 5.95 KB 0644
serialize.pyo File 5.95 KB 0644
wrapper.py File 498 B 0644
wrapper.pyc File 696 B 0644
wrapper.pyo File 696 B 0644