├── deepweblinks ├── __init__.py ├── plugins │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── fetch_request.cpython-311.pyc │ │ ├── link_analysis.cpython-311.pyc │ │ └── link_analysis.cpython-311-pytest-7.4.0.pyc │ ├── fetch_request.py │ └── link_analysis.py ├── animation.py └── main.py ├── requirements.txt ├── README.md ├── pyproject.toml └── poetry.lock /deepweblinks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepweblinks/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests = "2.31.0" 2 | colorama = "0.4.6" 3 | bs4 = "4.12.2" 4 | -------------------------------------------------------------------------------- /deepweblinks/plugins/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotr00t0day/DeepWeb/HEAD/deepweblinks/plugins/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /deepweblinks/plugins/__pycache__/fetch_request.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotr00t0day/DeepWeb/HEAD/deepweblinks/plugins/__pycache__/fetch_request.cpython-311.pyc -------------------------------------------------------------------------------- /deepweblinks/plugins/__pycache__/link_analysis.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotr00t0day/DeepWeb/HEAD/deepweblinks/plugins/__pycache__/link_analysis.cpython-311.pyc -------------------------------------------------------------------------------- /deepweblinks/plugins/__pycache__/link_analysis.cpython-311-pytest-7.4.0.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotr00t0day/DeepWeb/HEAD/deepweblinks/plugins/__pycache__/link_analysis.cpython-311-pytest-7.4.0.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DeepWeb 2 | DeepWeb is a tool that extracts links from a webpage and does a deep analysis on every link. 3 | 4 | # Installation 5 | 6 | cd DeepWeb
7 | 8 | pip3 install -r requirements.txt
9 | 10 | # Usage 11 | 12 | cd deepweblinks
13 | 14 | python3 main.py https://site.com 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.poetry] 2 | name = "deepweb" 3 | version = "0.1.0" 4 | description = "DeepWeb does a deep analysis on links extracted from a website." 5 | authors = ["c0d3Ninja"] 6 | readme = "README.md" 7 | 8 | [tool.poetry.dependencies] 9 | python = "^3.11" 10 | requests = "^2.31.0" 11 | colorama = "^0.4.6" 12 | bs4 = "^0.0.1" 13 | 14 | 15 | [build-system] 16 | requires = ["poetry-core"] 17 | build-backend = "poetry.core.masonry.api" 18 | -------------------------------------------------------------------------------- /deepweblinks/plugins/fetch_request.py: -------------------------------------------------------------------------------- 1 | from urllib.parse import urljoin 2 | from colorama import Fore 3 | import requests 4 | import re 5 | 6 | requests.packages.urllib3.disable_warnings() 7 | 8 | user_agent_ = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" 9 | header = {"User-Agent": user_agent_} 10 | 11 | def get_requests(domain): 12 | s = requests.Session() 13 | r = s.get(f"{domain}", verify=False, headers=header) 14 | content = r.content 15 | links = re.findall('(?:href=")(.*?)"', content.decode('utf-8')) 16 | duplicate_links = set(links) 17 | no_duplicates = [] 18 | for page_links in links: 19 | page_links = urljoin(f"{domain}", page_links) 20 | if page_links not in duplicate_links: 21 | no_duplicates.append(page_links) 22 | return ("\n".join(map(str, no_duplicates))) 23 | -------------------------------------------------------------------------------- /deepweblinks/animation.py: -------------------------------------------------------------------------------- 1 | import time 2 | import sys 3 | 4 | 5 | def load_animation(text): 6 | load_str = f"{text}" 7 | ls_len = len(load_str) 8 | animation = "|/-\\" 9 | anicount = 0 10 | counttime = 0 11 | i = 0 12 | 13 | while (counttime != 100): 14 | time.sleep(0.075) 15 | load_str_list = list(load_str) 16 | x = ord(load_str_list[i]) 17 | y = 0 18 | if x != 32 and x != 46: 19 | if x > 90: 20 | y = x-32 21 | else: 22 | y = x + 32 23 | load_str_list[i] = chr(y) 24 | res = '' 25 | for j in range(ls_len): 26 | res = res + load_str_list[j] 27 | sys.stdout.write("\r"+res + animation[anicount]) 28 | sys.stdout.flush() 29 | load_str = res 30 | 31 | anicount = (anicount + 1) % 4 32 | i = (i + 1) % ls_len 33 | counttime = counttime + 1 34 | -------------------------------------------------------------------------------- /deepweblinks/main.py: -------------------------------------------------------------------------------- 1 | from plugins import fetch_request, link_analysis 2 | from colorama import Fore 3 | import animation 4 | import argparse 5 | 6 | 7 | parser = argparse.ArgumentParser() 8 | group = parser.add_mutually_exclusive_group() 9 | 10 | parser.add_argument('-t', '--target', 11 | help="Target to scan", 12 | metavar="https://www.domain.com") 13 | 14 | group.add_argument('-s', '--save', action='store', 15 | help='save output to a file', 16 | metavar="output.txt") 17 | 18 | 19 | args = parser.parse_args() 20 | 21 | banner = f""" 22 | {Fore.MAGENTA} 23 | 24 | ▓█████▄ ▓█████ ▓█████ ██▓███ █ █░▓█████ ▄▄▄▄ 25 | ▒██▀ ██▌▓█ ▀ ▓█ ▀ ▓██░ ██▒▓█░ █ ░█░▓█ ▀ ▓█████▄ 26 | ░██ █▌▒███ ▒███ ▓██░ ██▓▒▒█░ █ ░█ ▒███ ▒██▒ ▄██ 27 | ░▓█▄ ▌▒▓█ ▄ ▒▓█ ▄ ▒██▄█▓▒ ▒░█░ █ ░█ ▒▓█ ▄ ▒██░█▀ 28 | ░▒████▓ ░▒████▒░▒████▒▒██▒ ░ ░░░██▒██▓ ░▒████▒░▓█ ▀█▓ 29 | ▒▒▓ ▒ ░░ ▒░ ░░░ ▒░ ░▒▓▒░ ░ ░░ ▓░▒ ▒ ░░ ▒░ ░░▒▓███▀▒ 30 | ░ ▒ ▒ ░ ░ ░ ░ ░ ░░▒ ░ ▒ ░ ░ ░ ░ ░▒░▒ ░ 31 | ░ ░ ░ ░ ░ ░░ ░ ░ ░ ░ ░ 32 | ░ ░ ░ ░ ░ ░ ░ ░ ░ 33 | ░ ░ 34 | 35 | {Fore.CYAN}Author: {Fore.WHITE} c0d3Ninja 36 | {Fore.CYAN}Version: {Fore.WHITE} 0.1.3 37 | """ 38 | 39 | print(banner) 40 | 41 | if args.target: 42 | target = args.target 43 | if "https://" in target: 44 | target = target.replace("https://", "") 45 | if "http://" in target: 46 | target = target.replace("http://", "") 47 | print(f"{Fore.WHITE}") 48 | animation.load_animation(f"Extracting Links from {target}") 49 | print("\n") 50 | links = fetch_request.get_requests(f"{args.target}") 51 | print(f"{Fore.GREEN}{links}") 52 | print(f"{Fore.WHITE}\n") 53 | animation.load_animation("Getting Domain names") 54 | print(f"{Fore.GREEN}\n") 55 | link_analysis.do_link_analysis(links) 56 | -------------------------------------------------------------------------------- /deepweblinks/plugins/link_analysis.py: -------------------------------------------------------------------------------- 1 | from colorama import Fore 2 | from animation import load_animation 3 | from bs4 import BeautifulSoup 4 | import requests 5 | 6 | 7 | def do_link_analysis(links: str): 8 | domains = [] 9 | domains.append(links) 10 | dot_com_domains = [] 11 | no_duplicates = [] 12 | for domain_list in domains: 13 | domain_name = domain_list.split("/") 14 | for domain_names in domain_name: 15 | domain_names = domain_names.strip() 16 | if ".com" in domain_names: 17 | domain_names = domain_names.replace("https:", "") 18 | domain_names = domain_names.replace("www.", "") 19 | domain_names = domain_names.strip() 20 | domain_names = domain_names.split("#")[0] 21 | dot_com_domains.append(domain_names) 22 | for x in dot_com_domains: 23 | if x not in no_duplicates: 24 | no_duplicates.append(x) 25 | print("\n".join(map(str, no_duplicates))) 26 | print("\n") 27 | 28 | print(f"{Fore.WHITE}") 29 | 30 | load_animation("Getting url paths") 31 | 32 | # Split the path from the url 33 | path_no_duplicates = [] 34 | path_links = [] 35 | for domains_ in domains: 36 | split_domain = domains_.split("/") 37 | for i in split_domain: 38 | if "https:" in i: 39 | i = i.replace("https:", "") 40 | i = i.strip() 41 | if i in dot_com_domains: 42 | pass 43 | else: 44 | path_links.append(i) 45 | for x_paths in path_links: 46 | if x_paths not in path_no_duplicates: 47 | path_no_duplicates.append(f"/{x_paths}") 48 | print(f"{Fore.GREEN}") 49 | print("\n".join(map(str, path_no_duplicates))) 50 | 51 | print("\n") 52 | print(f"{Fore.WHITE}") 53 | load_animation("Gettting admin and login pages") 54 | print("\n") 55 | 56 | # Find admin and login pages 57 | pages = [] 58 | for admin_login_pages in domains: 59 | with open("urls.txt", "w") as f: 60 | f.write(admin_login_pages) 61 | admin_login_pages2 = admin_login_pages.split(".com/") 62 | if "admin" in admin_login_pages2 or "login" in admin_login_pages2: 63 | pages.append(admin_login_pages) 64 | with open("urls.txt", "r") as fread: 65 | url_list = [x.strip() for x in fread.readlines()] 66 | url_list = set(url_list) 67 | for urls in url_list: 68 | try: 69 | s = requests.Session() 70 | r = s.get(urls) 71 | soup = BeautifulSoup(r.content, 'html.parser', from_encoding="iso-8859-1") 72 | for title in soup.find_all('title'): 73 | print(f"{urls} - {title.get_text()}") 74 | if "admin" in title.get_text() or "login" in title.get_text(): 75 | pages.append(urls) 76 | else: 77 | pass 78 | except requests.exceptions.ConnectionError: 79 | pass 80 | forms = soup.find_all('form') 81 | username_types = ['text', 'email', 'username', 'password'] 82 | for form in forms: 83 | input_fields = form.find_all('input') 84 | types = [input_field.get('type') for input_field in input_fields] 85 | if 'password' in types and any(username_type in types for username_type in username_types): 86 | pages.append(urls) 87 | if pages: 88 | for page_list in pages: 89 | print(f"{Fore.GREEN} {page_list}") 90 | if not pages: 91 | print(f"{Fore.RED} No Admin or Login pages found") 92 | 93 | -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- 1 | # This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. 2 | 3 | [[package]] 4 | name = "beautifulsoup4" 5 | version = "4.12.2" 6 | description = "Screen-scraping library" 7 | optional = false 8 | python-versions = ">=3.6.0" 9 | files = [ 10 | {file = "beautifulsoup4-4.12.2-py3-none-any.whl", hash = "sha256:bd2520ca0d9d7d12694a53d44ac482d181b4ec1888909b035a3dbf40d0f57d4a"}, 11 | {file = "beautifulsoup4-4.12.2.tar.gz", hash = "sha256:492bbc69dca35d12daac71c4db1bfff0c876c00ef4a2ffacce226d4638eb72da"}, 12 | ] 13 | 14 | [package.dependencies] 15 | soupsieve = ">1.2" 16 | 17 | [package.extras] 18 | html5lib = ["html5lib"] 19 | lxml = ["lxml"] 20 | 21 | [[package]] 22 | name = "bs4" 23 | version = "0.0.1" 24 | description = "Dummy package for Beautiful Soup" 25 | optional = false 26 | python-versions = "*" 27 | files = [ 28 | {file = "bs4-0.0.1.tar.gz", hash = "sha256:36ecea1fd7cc5c0c6e4a1ff075df26d50da647b75376626cc186e2212886dd3a"}, 29 | ] 30 | 31 | [package.dependencies] 32 | beautifulsoup4 = "*" 33 | 34 | [[package]] 35 | name = "certifi" 36 | version = "2023.5.7" 37 | description = "Python package for providing Mozilla's CA Bundle." 38 | optional = false 39 | python-versions = ">=3.6" 40 | files = [ 41 | {file = "certifi-2023.5.7-py3-none-any.whl", hash = "sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716"}, 42 | {file = "certifi-2023.5.7.tar.gz", hash = "sha256:0f0d56dc5a6ad56fd4ba36484d6cc34451e1c6548c61daad8c320169f91eddc7"}, 43 | ] 44 | 45 | [[package]] 46 | name = "charset-normalizer" 47 | version = "3.1.0" 48 | description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." 49 | optional = false 50 | python-versions = ">=3.7.0" 51 | files = [ 52 | {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, 53 | {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, 54 | {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, 55 | {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, 56 | {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, 57 | {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, 58 | {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, 59 | {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, 60 | {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, 61 | {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, 62 | {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, 63 | {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, 64 | {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, 65 | {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, 66 | {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, 67 | {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, 68 | {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, 69 | {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, 70 | {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, 71 | {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, 72 | {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, 73 | {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, 74 | {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, 75 | {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, 76 | {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, 77 | {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, 78 | {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, 79 | {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, 80 | {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, 81 | {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, 82 | {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, 83 | {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, 84 | {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, 85 | {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, 86 | {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, 87 | {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, 88 | {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, 89 | {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, 90 | {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, 91 | {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, 92 | {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, 93 | {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, 94 | {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, 95 | {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, 96 | {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, 97 | {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, 98 | {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, 99 | {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, 100 | {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, 101 | {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, 102 | {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, 103 | {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, 104 | {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, 105 | {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, 106 | {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, 107 | {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, 108 | {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, 109 | {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, 110 | {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, 111 | {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, 112 | {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, 113 | {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, 114 | {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, 115 | {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, 116 | {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, 117 | {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, 118 | {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, 119 | {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, 120 | {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, 121 | {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, 122 | {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, 123 | {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, 124 | {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, 125 | {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, 126 | {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, 127 | ] 128 | 129 | [[package]] 130 | name = "colorama" 131 | version = "0.4.6" 132 | description = "Cross-platform colored terminal text." 133 | optional = false 134 | python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" 135 | files = [ 136 | {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, 137 | {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, 138 | ] 139 | 140 | [[package]] 141 | name = "idna" 142 | version = "3.4" 143 | description = "Internationalized Domain Names in Applications (IDNA)" 144 | optional = false 145 | python-versions = ">=3.5" 146 | files = [ 147 | {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, 148 | {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, 149 | ] 150 | 151 | [[package]] 152 | name = "requests" 153 | version = "2.31.0" 154 | description = "Python HTTP for Humans." 155 | optional = false 156 | python-versions = ">=3.7" 157 | files = [ 158 | {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, 159 | {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, 160 | ] 161 | 162 | [package.dependencies] 163 | certifi = ">=2017.4.17" 164 | charset-normalizer = ">=2,<4" 165 | idna = ">=2.5,<4" 166 | urllib3 = ">=1.21.1,<3" 167 | 168 | [package.extras] 169 | socks = ["PySocks (>=1.5.6,!=1.5.7)"] 170 | use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] 171 | 172 | [[package]] 173 | name = "soupsieve" 174 | version = "2.4.1" 175 | description = "A modern CSS selector implementation for Beautiful Soup." 176 | optional = false 177 | python-versions = ">=3.7" 178 | files = [ 179 | {file = "soupsieve-2.4.1-py3-none-any.whl", hash = "sha256:1c1bfee6819544a3447586c889157365a27e10d88cde3ad3da0cf0ddf646feb8"}, 180 | {file = "soupsieve-2.4.1.tar.gz", hash = "sha256:89d12b2d5dfcd2c9e8c22326da9d9aa9cb3dfab0a83a024f05704076ee8d35ea"}, 181 | ] 182 | 183 | [[package]] 184 | name = "urllib3" 185 | version = "2.0.3" 186 | description = "HTTP library with thread-safe connection pooling, file post, and more." 187 | optional = false 188 | python-versions = ">=3.7" 189 | files = [ 190 | {file = "urllib3-2.0.3-py3-none-any.whl", hash = "sha256:48e7fafa40319d358848e1bc6809b208340fafe2096f1725d05d67443d0483d1"}, 191 | {file = "urllib3-2.0.3.tar.gz", hash = "sha256:bee28b5e56addb8226c96f7f13ac28cb4c301dd5ea8a6ca179c0b9835e032825"}, 192 | ] 193 | 194 | [package.extras] 195 | brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] 196 | secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] 197 | socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] 198 | zstd = ["zstandard (>=0.18.0)"] 199 | 200 | [metadata] 201 | lock-version = "2.0" 202 | python-versions = "^3.11" 203 | content-hash = "be19c8a98a2535e2e5f76dc5a35478dd3e98530b059bc50c809a0c91e602ae72" 204 | --------------------------------------------------------------------------------