Current Path: > > usr > lib > python3.6 > site-packages > pip > > > > _vendor > cachecontrol
Operation : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 Software : Apache Server IP : 198.54.126.42 | Your IP: 216.73.216.8 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
caches | Directory | - | - | |
__init__.py | File | 302 bytes | April 06 2024 13:40:45. | |
_cmd.py | File | 1320 bytes | April 06 2024 13:40:45. | |
adapter.py | File | 4608 bytes | April 06 2024 13:40:45. | |
cache.py | File | 790 bytes | April 06 2024 13:40:45. | |
compat.py | File | 380 bytes | April 06 2024 13:40:45. | |
controller.py | File | 13024 bytes | April 06 2024 13:40:45. | |
filewrapper.py | File | 2531 bytes | April 06 2024 13:40:45. | |
heuristics.py | File | 4141 bytes | April 06 2024 13:40:45. | |
serialize.py | File | 6536 bytes | April 06 2024 13:40:45. | |
wrapper.py | File | 498 bytes | April 06 2024 13:40:45. |
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()
SILENT KILLER Tool