applied-ai-018 commited on
Commit
f1316e7
·
verified ·
1 Parent(s): 6b0a2c3

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. scripts/count_tokens.py +67 -0
  2. scripts/gemini_api.py +36 -0
  3. scripts/get_domain_list.py +60 -0
  4. scripts/get_other_unique.py +156 -0
  5. scripts/get_unique.py +26 -0
  6. scripts/global_dedup_without_bloom.py +99 -0
  7. scripts/global_filtered_without_bloom_dummy_token_counts_dummy.csv +2 -0
  8. scripts/global_filtered_without_bloom_new_token_counts_dummy.csv +52 -0
  9. scripts/global_filtered_without_bloom_token_counts.csv +52 -0
  10. scripts/heuristic_filtered_without_bloom_new_token_counts_dummy.csv +52 -0
  11. scripts/heuristic_filtered_without_bloom_token_counts_dummy.csv +52 -0
  12. scripts/linewise_filtering.py +129 -0
  13. scripts/local_dedup.py +126 -0
  14. scripts/local_dedup_without_bloom.py +84 -0
  15. scripts/local_filtered_without_bloom_dummy_token_counts_dummy.csv +2 -0
  16. scripts/local_filtered_without_bloom_token_counts.csv +52 -0
  17. scripts/merge_subdomains.py +41 -0
  18. scripts/mined.csv +52 -0
  19. scripts/mined_token_counts.csv +52 -0
  20. scripts/mined_token_counts_dummy.csv +52 -0
  21. scripts/mined_word_counts.csv +52 -0
  22. scripts/myenv/lib/python3.10/site-packages/pip-22.0.2.dist-info/INSTALLER +1 -0
  23. scripts/myenv/lib/python3.10/site-packages/pip-22.0.2.dist-info/LICENSE.txt +20 -0
  24. scripts/myenv/lib/python3.10/site-packages/pip-22.0.2.dist-info/METADATA +92 -0
  25. scripts/myenv/lib/python3.10/site-packages/pip-22.0.2.dist-info/RECORD +1037 -0
  26. scripts/myenv/lib/python3.10/site-packages/pip-22.0.2.dist-info/REQUESTED +0 -0
  27. scripts/myenv/lib/python3.10/site-packages/pip-22.0.2.dist-info/WHEEL +5 -0
  28. scripts/myenv/lib/python3.10/site-packages/pip-22.0.2.dist-info/entry_points.txt +5 -0
  29. scripts/myenv/lib/python3.10/site-packages/pip-22.0.2.dist-info/top_level.txt +1 -0
  30. scripts/myenv/lib/python3.10/site-packages/pkg_resources/__init__.py +0 -0
  31. scripts/myenv/lib/python3.10/site-packages/pkg_resources/__pycache__/__init__.cpython-310.pyc +0 -0
  32. scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/__init__.py +0 -0
  33. scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-310.pyc +0 -0
  34. scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-310.pyc +0 -0
  35. scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-310.pyc +0 -0
  36. scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/appdirs.py +608 -0
  37. scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__about__.py +26 -0
  38. scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__init__.py +25 -0
  39. scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-310.pyc +0 -0
  40. scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-310.pyc +0 -0
  41. scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc +0 -0
  42. scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc +0 -0
  43. scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-310.pyc +0 -0
  44. scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-310.pyc +0 -0
  45. scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-310.pyc +0 -0
  46. scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc +0 -0
  47. scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-310.pyc +0 -0
  48. scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-310.pyc +0 -0
  49. scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_manylinux.py +301 -0
  50. scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_musllinux.py +136 -0
scripts/count_tokens.py ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import pandas as pd
3
+ import json
4
+ import gzip
5
+ from tqdm import tqdm
6
+ from multiprocessing import Pool
7
+ import sys
8
+
9
+ # os.environ["HF_TOKEN"] = "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"
10
+
11
+ # from transformers import AutoTokenizer
12
+
13
+ # tokenizer = AutoTokenizer.from_pretrained('google/gemma-7b')
14
+
15
+ def count_words_in_file(file_path):
16
+ language_id = os.path.basename(file_path).split('_')[0]
17
+ words_count = 0
18
+ token_count = 0
19
+
20
+
21
+ try:
22
+ with gzip.open(file_path, 'rt') as f:
23
+ for line in f:
24
+ data = json.loads(line)
25
+ words_count += len(data["raw_content"].split())
26
+ # token_count += len(tokenizer.encode(data["raw_content"]))
27
+ except:
28
+ print("bad zip file")
29
+ return language_id, 0
30
+ return language_id, words_count#, token_count
31
+
32
+ def process_folder(folder_path, langs):
33
+ files = [os.path.join(folder_path, f) for f in os.listdir(folder_path) if f.endswith('.json.gz')]
34
+ # For only specific language, uncomment the below line
35
+ # files = [os.path.join(folder_path, f) for f in os.listdir(folder_path) if f.endswith('.json.gz') and langs[0] in f]
36
+
37
+ folder_name = folder_path.split('/')[-1]
38
+ with Pool() as pool:
39
+ results = list(tqdm(pool.imap(count_words_in_file, files), total=len(files), desc=f'Processing {folder_name}') )
40
+ return results
41
+
42
+ def main(input_folder, output_file):
43
+ folders = [f.path for f in os.scandir(input_folder) if f.is_dir()]
44
+ snaps = ["2018-17", "2018-22", "2018-26", "2018-30", "2018-34", "2018-39", "2018-43", "2018-47", "2018-51", "2019-04", "2019-09", "2019-13", "2019-18", "2019-22", "2019-26", "2019-30", "2019-35", "2019-39", "2019-43", "2019-47", "2019-51", "2020-05", "2020-10", "2020-16", "2020-24", "2020-29", "2020-34", "2020-40", "2020-45", "2020-50", "2021-04", "2021-10", "2021-17", "2021-21", "2021-25", "2021-31", "2021-39", "2021-43", "2021-49", "2022-05", "2022-21", "2022-27", "2022-33", "2022-40", "2022-49", "2023-06", "2023-14", "2023-23", "2023-40", "2023-50", "2024-10"]
45
+ langs = ["as", "bn", "gu", "kn", "hi", "ml", "mr", "ne", "or", "sa", "sd", "ta", "ur", "te", "mai"]
46
+ # langs = ["hi"] # For specific language
47
+ column_names = {}
48
+ column_names["snapshot-id"] = sorted(snaps)
49
+ for lang in sorted(langs):
50
+ column_names[lang] = [0] * len(snaps)
51
+
52
+ for idx, folder in enumerate(sorted(snaps)):
53
+ results = process_folder(input_folder + "/" + folder, langs)
54
+ for language_id, number in results:
55
+ column_names[language_id][idx] += number
56
+ print([column_names[language_id][idx] for language_id in langs])
57
+
58
+ df = pd.DataFrame(column_names)
59
+
60
+ df.to_csv(output_file, index=False)
61
+
62
+ if __name__ == "__main__":
63
+ folder = sys.argv[1]
64
+ input_folder = f"/mnt/weka/peacock/idc/wet-data/output/{folder}"
65
+ # output_file = f"{folder}_token_counts_dummy.csv"
66
+ output_file = f"{folder}_hindi_word_counts.csv"
67
+ main(input_folder, output_file)
scripts/gemini_api.py ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import google.generativeai as genai
2
+ from vertexai.preview.generative_models import (
3
+ HarmCategory,
4
+ HarmBlockThreshold )
5
+ from google.cloud.aiplatform_v1beta1.types.content import SafetySetting
6
+
7
+ GOOGLE_API_KEY="AIzaSyBiWhI-TOWmlahl5puqDAsAvFu0N1_R1HQ"
8
+
9
+ genai.configure(api_key=GOOGLE_API_KEY)
10
+ gemini_model = genai.GenerativeModel('gemini-pro')
11
+
12
+
13
+ # prompt = "The task is to filter out a set of documents. The documents contains a lot of toxic content all in hindi language. I want to filter them based on the words present in the document. Please list all the toxic and highly sensitive words in hindi language that will help filter this content."
14
+ # prompt = 'Generate a list of toxic and banned words in hindi that can be used to filter common crawl data.'
15
+ prompt="Give the list of toxic words in hindi"
16
+ response = gemini_model.generate_content(prompt,
17
+ safety_settings = [
18
+ SafetySetting(
19
+ category=HarmCategory.HARM_CATEGORY_SEXUALLY_EXPLICIT,
20
+ threshold=HarmBlockThreshold.BLOCK_NONE,
21
+ ),
22
+ SafetySetting(
23
+ category=HarmCategory.HARM_CATEGORY_DANGEROUS_CONTENT,
24
+ threshold=HarmBlockThreshold.BLOCK_NONE,
25
+ ),
26
+ SafetySetting(
27
+ category=HarmCategory.HARM_CATEGORY_HATE_SPEECH,
28
+ threshold=HarmBlockThreshold.BLOCK_NONE,
29
+ ),
30
+ SafetySetting(
31
+ category=HarmCategory.HARM_CATEGORY_HARASSMENT,
32
+ threshold=HarmBlockThreshold.BLOCK_NONE,
33
+ ),
34
+ ])
35
+
36
+ print(response)
scripts/get_domain_list.py ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import gzip
3
+ import json
4
+ from multiprocessing import Pool
5
+ from tqdm import tqdm
6
+
7
+ def process_file(file_path):
8
+ domain_count = {}
9
+ with gzip.open(file_path, 'rt') as f:
10
+ for line in f:
11
+ json_obj = json.loads(line)
12
+ source_domain = json_obj.get('source_domain')
13
+ if source_domain:
14
+ domain_count[source_domain] = domain_count.get(source_domain, 0) + 1
15
+
16
+ return domain_count
17
+
18
+ def process_files_in_directory(directory):
19
+ file_paths = directory
20
+ with Pool() as pool:
21
+ results = pool.map(process_file, file_paths)
22
+ return results
23
+
24
+ def main():
25
+ snapshots = ["2018-17", "2018-22", "2018-26", "2018-30", "2018-34", "2018-39", "2018-43", "2018-47", "2018-51", "2019-04", "2019-09", "2019-13", "2019-18", "2019-22", "2019-26", "2019-30", "2019-35", "2019-39", "2019-43", "2019-47", "2019-51", "2020-05", "2020-10", "2020-16", "2020-24", "2020-29", "2020-34", "2020-40", "2020-45", "2020-50", "2021-04", "2021-10", "2021-17", "2021-21", "2021-25", "2021-31", "2021-39", "2021-43", "2021-49", "2022-05", "2022-21", "2022-27", "2022-33", "2022-40", "2022-49", "2023-06", "2023-14", "2023-23", "2023-40", "2023-50", "2024-10"]
26
+ langs = ["as", "bn", "gu", "kn", "hi", "ml", "mr", "ne", "or", "sa", "sd", "ta", "ur", "te", "mai"]
27
+ output_directory = '/mnt/weka/peacock/wet-data/output/domain_list_non_toxic'
28
+ language_domain_count = {}
29
+ for lang in langs:
30
+ language_domain_count[lang] = {}
31
+ for snap in snapshots:
32
+ input_directory = f'/mnt/weka/peacock/wet-data/output/toxic_filtered_without_bloom_new/{snap}'
33
+
34
+
35
+ if not os.path.exists(output_directory):
36
+ os.makedirs(output_directory)
37
+
38
+ language_files = {}
39
+
40
+ for file_name in os.listdir(input_directory):
41
+ if file_name.endswith('.json.gz'):
42
+ language_id = file_name.split('_')[0]
43
+ if language_id not in language_files:
44
+ language_files[language_id] = []
45
+ language_files[language_id].append(os.path.join(input_directory, file_name))
46
+
47
+ for language_id, file_paths in language_files.items():
48
+ for result in process_files_in_directory(file_paths):
49
+ for domain, count in result.items():
50
+ language_domain_count[language_id][domain] = language_domain_count[language_id].get(domain, 0) + count
51
+ print("Done with", snap)
52
+ sorted_domain_count = {}
53
+ for lang in langs:
54
+ sorted_domain_count[lang] = dict(sorted(language_domain_count[lang].items(), key=lambda item: item[1], reverse=True))
55
+ output_file_path = os.path.join(output_directory, f'{lang}_domain_count.json')
56
+ with open(output_file_path, 'w') as f:
57
+ json.dump(sorted_domain_count[lang], f, indent=4)
58
+
59
+ if __name__ == "__main__":
60
+ main()
scripts/get_other_unique.py ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # import os
2
+ # import gzip
3
+ # import json
4
+ # from tqdm import tqdm
5
+
6
+ # processed_domains = set()
7
+ # with open("unique_source_documents.json", 'r') as file:
8
+ # for obj in json.load(file):
9
+ # processed_domains.add(obj["source_domain"])
10
+
11
+ # other_selected_domains = list()
12
+
13
+ # def is_similar(url, source_domain):
14
+ # url = url.replace("https://", "").replace("http://", "").replace("www.", "").replace(".html", "").replace("home", "").replace("index", "").strip("/")
15
+ # source_domain = source_domain.replace("www.", "")
16
+ # return url == source_domain
17
+
18
+ # def extract_domains_from_file_with_url(filepath):
19
+ # with gzip.open(filepath, 'rt', encoding='utf-8') as f:
20
+ # for line in f:
21
+ # data = json.loads(line)
22
+ # source_domain = data.get('source_domain')
23
+ # url = data.get('url')
24
+ # print("Inside function")
25
+ # if source_domain not in processed_domains and is_similar(url, source_domain):
26
+ # processed_domains.add(source_domain)
27
+
28
+ # json_obj = {}
29
+ # json_obj["url"] = data["url"]
30
+ # json_obj["source_domain"] = data["source_domain"]
31
+ # json_obj["title"] = data["title"]
32
+ # json_obj["raw_content"] = " ".join(data["raw_content"].split()[:50])
33
+
34
+ # other_selected_domains.append(json_obj)
35
+
36
+ # # Function to find unique domains in snapshots folder
37
+ # def find_unique_domains_with_url(folder_path):
38
+
39
+ # total_files = sum(len(files) for _, _, files in os.walk(folder_path))
40
+ # progress_bar = tqdm(total=total_files, desc="Processing")
41
+ # files_to_be_processed = []
42
+ # for snapshot in os.listdir(folder_path):
43
+ # for file in os.listdir(os.path.join(folder_path, snapshot)):
44
+ # file_path = os.path.join(folder_path, snapshot, file)
45
+ # if(file.endswith("json.gz")):
46
+ # files_to_be_processed.append(file_path)
47
+
48
+
49
+ # for root, dirs, files in os.walk(folder_path):
50
+ # for file in files[:100]:
51
+ # print(file)
52
+ # if file.endswith('.json.gz'):
53
+ # file_path = os.path.join(root, file)
54
+ # extract_domains_from_file_with_url(file_path)
55
+ # progress_bar.update(1)
56
+ # break
57
+ # progress_bar.close()
58
+
59
+ # # Path to the snapshots folder
60
+ # snapshots_folder = '/mnt/weka/peacock/wet-data/output/toxic_filtered_without_bloom_new'
61
+
62
+ # # Find unique domains
63
+ # find_unique_domains_with_url(snapshots_folder)
64
+
65
+ # with open("new_unique_source_documents_with_url.json", 'w') as file:
66
+ # json.dump(other_selected_domains, file, indent=4, ensure_ascii=False)
67
+
68
+
69
+ # def extract_domains_from_file(filepath):
70
+ # with gzip.open(filepath, 'rt', encoding='utf-8') as f:
71
+ # for line in f:
72
+ # data = json.loads(line)
73
+ # source_domain = data.get('source_domain')
74
+ # if source_domain not in processed_domains:
75
+ # processed_domains.add(source_domain)
76
+
77
+ # json_obj = {}
78
+ # json_obj["url"] = data["url"]
79
+ # json_obj["source_domain"] = data["source_domain"]
80
+ # json_obj["title"] = data["title"]
81
+ # json_obj["raw_content"] = " ".join(data["raw_content"].split()[:50])
82
+
83
+ # other_selected_domains.append(json_obj)
84
+
85
+ # # Function to find unique domains in snapshots folder
86
+ # def find_unique_domains(folder_path):
87
+ # total_files = sum(len(files) for _, _, files in os.walk(folder_path))
88
+ # progress_bar = tqdm(total=total_files, desc="Processing")
89
+ # for root, dirs, files in os.walk(folder_path):
90
+ # for file in files:
91
+ # if file.endswith('.json.gz'):
92
+ # file_path = os.path.join(root, file)
93
+ # extract_domains_from_file(file_path)
94
+ # progress_bar.update(1)
95
+ # progress_bar.close()
96
+
97
+ # # Path to the snapshots folder
98
+ # snapshots_folder = '/mnt/weka/peacock/wet-data/output/toxic_filtered_without_bloom_new'
99
+
100
+ # # Find unique domains
101
+ # find_unique_domains(snapshots_folder)
102
+
103
+ # with open("new_unique_source_documents.json", 'w') as file:
104
+ # json.dump(other_selected_domains, file, indent=4, ensure_ascii=False)
105
+
106
+
107
+
108
+ import os
109
+ import gzip
110
+ import json
111
+ from tqdm import tqdm
112
+
113
+ other_selected_domains = list()
114
+ processed_domains = set()
115
+ with open("new_unique_source_documents_with_url.json", 'r') as file:
116
+ for obj in json.load(file):
117
+ processed_domains.add(obj["source_domain"])
118
+ other_selected_domains.append(obj)
119
+
120
+
121
+ def extract_domains_from_file(filepath):
122
+ with gzip.open(filepath, 'rt', encoding='utf-8') as f:
123
+ for line in f:
124
+ data = json.loads(line)
125
+ source_domain = data.get('source_domain')
126
+ if source_domain not in processed_domains:
127
+ processed_domains.add(source_domain)
128
+
129
+ json_obj = {}
130
+ json_obj["url"] = data["url"]
131
+ json_obj["source_domain"] = data["source_domain"]
132
+ json_obj["title"] = data["title"]
133
+ json_obj["raw_content"] = " ".join(data["raw_content"].split()[:50])
134
+
135
+ other_selected_domains.append(json_obj)
136
+
137
+ # Function to find unique domains in snapshots folder
138
+ def find_unique_domains(folder_path):
139
+ total_files = sum(len(files) for _, _, files in os.walk(folder_path))
140
+ progress_bar = tqdm(total=total_files, desc="Processing")
141
+ for root, dirs, files in os.walk(folder_path):
142
+ for file in files:
143
+ if file.endswith('.json.gz'):
144
+ file_path = os.path.join(root, file)
145
+ extract_domains_from_file(file_path)
146
+ progress_bar.update(1)
147
+ progress_bar.close()
148
+
149
+ # Path to the snapshots folder
150
+ snapshots_folder = '/mnt/weka/peacock/wet-data/output/toxic_filtered_without_bloom_new'
151
+
152
+ # Find unique domains
153
+ find_unique_domains(snapshots_folder)
154
+
155
+ with open("new_unique_source_documents.json", 'w') as file:
156
+ json.dump(other_selected_domains, file, indent=4, ensure_ascii=False)
scripts/get_unique.py ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+
3
+ def keep_only_one_source_domain(json_file_path):
4
+ with open(json_file_path, 'r') as file:
5
+ data = json.load(file)
6
+
7
+ seen_domains = set()
8
+ unique_data = []
9
+
10
+ for item in data:
11
+ source_domain = item.get('source_domain')
12
+ json_obj = {}
13
+ json_obj["url"] = item["url"]
14
+ json_obj["source_domain"] = item["source_domain"]
15
+ json_obj["title"] = item["title"]
16
+ json_obj["raw_content"] = " ".join(item["raw_content"].split()[:50])
17
+ if source_domain not in seen_domains:
18
+ seen_domains.add(source_domain)
19
+ unique_data.append(json_obj)
20
+
21
+ with open("unique_source_documents.json", 'w') as file:
22
+ json.dump(unique_data, file, indent=4, ensure_ascii=False)
23
+
24
+ # Usage example:
25
+ json_file_path = 'selected_documents.json' # Replace 'data.json' with the path to your JSON file
26
+ keep_only_one_source_domain(json_file_path)
scripts/global_dedup_without_bloom.py ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import gzip
4
+ import pandas as pd
5
+ from tqdm import tqdm
6
+ from multiprocessing import Pool
7
+
8
+ def process_file(file_info):
9
+ input_path, output_path, clusters_file = file_info
10
+
11
+ # Read line numbers to avoid from clusters file
12
+ if(clusters_file != "<NOT_EXISTS>"):
13
+ try:
14
+ clusters_df = pd.read_parquet(clusters_file)
15
+ except FileNotFoundError:
16
+ with open("temp.txt", "a+") as f:
17
+ f.write(clusters_file + '\n')
18
+ clusters_df = pd.DataFrame()
19
+ clusters_df['id'] = []
20
+ clusters_df['id_int'] = []
21
+ clusters_df['clusters_id'] = []
22
+ else:
23
+ with open("temp.txt", "a+") as f:
24
+ f.write(clusters_file + '\n')
25
+ clusters_df = pd.DataFrame()
26
+ clusters_df['id'] = []
27
+ clusters_df['id_int'] = []
28
+ clusters_df['clusters_id'] = []
29
+
30
+ clusters_df['line_number'] = clusters_df['id'].apply(lambda x: int(x.split('/')[-1]))
31
+
32
+ duplicate_docs = set()
33
+
34
+ for _, row in clusters_df.iterrows():
35
+ if(row['id_int'] != row['cluster_id']):
36
+ duplicate_docs.add(int(row['id'].split('/')[-1]))
37
+
38
+ # Read JSON objects and filter them
39
+ with gzip.open(input_path, 'rt') as input_file:
40
+ try:
41
+ filtered_documents = [json.loads(line) for idx, line in enumerate(input_file) if idx not in duplicate_docs]
42
+ except:
43
+ print(input_file)
44
+ return
45
+
46
+ # Write filtered JSON objects to new file
47
+ with gzip.open(output_path, 'wt') as output_file:
48
+ for doc in filtered_documents:
49
+ output_file.write(json.dumps(doc, ensure_ascii=False) + '\n')
50
+
51
+
52
+ def filter_json_files(input_folder, output_folder, clusters_folder, snap):
53
+ # Create output folder if it doesn't exist
54
+ if not os.path.exists(output_folder):
55
+ os.makedirs(output_folder)
56
+
57
+ file_infos = []
58
+
59
+ clusters_file = "<NOT_EXISTS>"
60
+ # Iterate through each JSON file in the input folder
61
+ for filename in sorted(os.listdir(input_folder)):
62
+ if filename.endswith(".json.gz"):
63
+ input_path = os.path.join(input_folder, filename)
64
+ output_path = os.path.join(output_folder, filename)
65
+
66
+ # Determine the corresponding clusters file
67
+ for i in range(1, 11):
68
+ clusters_file_path = os.path.join(clusters_folder, f"total_{i}" , filename.split('_')[0], f"{snap}_{filename.split('_')[-1].split('.')[0]}.clusters.parquet")
69
+
70
+ if(os.path.exists(clusters_file_path)):
71
+ clusters_file = clusters_file_path
72
+ break
73
+
74
+ # print((input_path, output_path, clusters_file))
75
+ file_infos.append((input_path, output_path, clusters_file))
76
+
77
+
78
+
79
+ # Initialize tqdm with the total number of files
80
+ with tqdm(total=len(file_infos)) as pbar:
81
+ # Create a pool of workers
82
+ with Pool(processes=160) as pool:
83
+ # Use tqdm as a context manager to automatically close the pool and update the progress bar
84
+ for _ in pool.imap_unordered(process_file, file_infos):
85
+ pbar.update()
86
+
87
+
88
+ print("Filtering done for ", input_folder.split('/')[-1])
89
+
90
+ snapshots = ["2018-17", "2018-22", "2018-26", "2018-30", "2018-34", "2018-39", "2018-43", "2018-47", "2018-51", "2019-04", "2019-09", "2019-13", "2019-18", "2019-22", "2019-26", "2019-30", "2019-35", "2019-39", "2019-43", "2019-47", "2019-51", "2020-05", "2020-10", "2020-16", "2020-24", "2020-29", "2020-34", "2020-40", "2020-45", "2020-50", "2021-04", "2021-10", "2021-17", "2021-21", "2021-25", "2021-31", "2021-39", "2021-43", "2021-49", "2022-05", "2022-21", "2022-27", "2022-33", "2022-40", "2022-49", "2023-06", "2023-14", "2023-23", "2023-40", "2023-50", "2024-10"]
91
+
92
+ # snapshots = ["2023-06", "2023-14", "2023-23", "2023-40", "2023-50", "2024-10"]
93
+
94
+ for snap in snapshots:
95
+ input_folder = f"/mnt/weka/peacock/wet-data/output/local_filtered_without_bloom/{snap}"
96
+ output_folder = f"/mnt/weka/peacock/wet-data/output/global_filtered_without_bloom_new/{snap}"
97
+ clusters_folder = f"/mnt/weka/peacock/wet-data/output/fuzzy-clusters"
98
+
99
+ filter_json_files(input_folder, output_folder, clusters_folder, snap)
scripts/global_filtered_without_bloom_dummy_token_counts_dummy.csv ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ snapshot-id,as,bn,gu,hi,kn,mai,ml,mr,ne,or,sa,sd,ta,te,ur
2
+ 2018-17,22296465,2214357835,253318265,2895575475,265987043,0,696619500,297280744,349760713,77627460,13459340,21588965,1759133503,401707300,657632585
scripts/global_filtered_without_bloom_new_token_counts_dummy.csv ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ snapshot-id,as,bn,gu,hi,kn,mai,ml,mr,ne,or,sa,sd,ta,te,ur
2
+ 2018-17,22296465,2214357835,253318265,2895575475,265987043,0,696619500,297280744,349760713,77627460,13459340,21588965,1759133503,401707300,657632585
3
+ 2018-22,18637507,2297255818,255032242,3297613140,335933176,6067,930688043,339146106,325115807,76840947,17914451,29625476,2112669332,462720294,670789727
4
+ 2018-26,30998325,2684254438,348964487,3672034911,396541757,7551,1067381659,385199398,430855165,84746236,18453946,43210477,2301426667,517233188,853186383
5
+ 2018-30,35279051,2951834093,427892172,5002061000,664333903,8215,1630418911,457387120,466232081,121520882,24591468,41189429,3491676195,782656609,872125496
6
+ 2018-34,28915014,2508784939,258602143,3081850695,369196666,9577,676644674,322420288,381889851,160595108,13540005,29704761,1501872219,434983614,770508262
7
+ 2018-39,39371843,4972254907,539073459,5110814858,909006218,1805,1461944809,545469199,526722008,237927567,19621047,103067333,2730753757,972273467,1445187450
8
+ 2018-43,35762748,3253378765,319513120,3697422755,550987569,13937,912639185,429578316,507093772,234625505,18914199,34388261,1836175916,576202756,928488102
9
+ 2018-47,35319246,4130481864,483741351,4540174206,840315462,790,1284343092,563291180,472925512,218712108,16469856,114319173,2340397850,911056410,1033606416
10
+ 2018-51,35646570,3449780408,354209636,4093897420,571936817,8068,872127916,461031294,543750204,242043633,20420356,42893389,1865511190,641166583,1085966170
11
+ 2019-04,62804020,3834023995,429446300,4603585967,652917946,5309,1168584733,550116111,547600650,223063174,16016396,67715856,2246385307,702889304,947968398
12
+ 2019-09,32748572,4144460149,453423830,4496148579,553304814,1624,1197719653,519507581,593526955,230253278,23607075,62550910,2119801292,792836879,885394187
13
+ 2019-13,49329366,3146651159,378140038,3877696014,432709296,0,913876724,455427993,485773345,172638864,14871689,54676026,1685811683,590186814,725388925
14
+ 2019-18,39435026,3157680153,382665283,4324148088,430284814,2482,956323266,451209249,474071942,186852743,20244564,47884328,1749918553,682045115,743868445
15
+ 2019-22,41541958,3709649603,432928631,4283228189,516926606,7911,1071418775,476428602,553333492,146618696,23404671,66883621,2083395129,773095148,805657561
16
+ 2019-26,51426336,3620308184,438714320,4588564195,581193424,12361,1122384668,479847849,583930932,165966838,27766125,28376402,2134765234,794088484,877636352
17
+ 2019-30,47386606,4185100293,487721480,5125102960,627342885,5466,1205008172,547263507,644404405,174124206,20349017,58176775,2000437092,879096577,905471165
18
+ 2019-35,51939237,4655264105,532171625,5772859564,697542716,12538,1267215469,616214761,759700175,204431191,31607914,46310175,2259807033,993492231,985925228
19
+ 2019-39,43381575,4450396588,501785701,5209318498,791352224,9287,1121130083,559601932,671700762,178639499,24108830,58504222,2008339734,943894470,952825388
20
+ 2019-43,79770203,5006289410,626048792,6725173287,1000431449,29719,1395011697,722200673,697580668,187270395,41049597,41464960,2391058919,1359941333,1166941617
21
+ 2019-47,37442205,4457288181,407512837,5001216636,676351262,8896,1047965732,714022268,619083036,134624532,38614872,61594371,2028422195,952591205,1013696661
22
+ 2019-51,47397716,3936581663,407873943,4650172811,671682251,12925,1029236172,663613600,561073649,135937318,37580755,29651246,2016901971,901079622,963238282
23
+ 2020-05,53771741,4486728812,468476031,5340436862,747978049,6851,1190314360,849426053,651517371,149436366,51747277,77463161,2552189249,1124323682,1063279018
24
+ 2020-10,54552738,3999439264,419100249,4874253749,669030846,3169,1109183319,604078486,603786481,132765867,42138574,28808296,1834955625,914133997,835247528
25
+ 2020-16,46686145,4383057920,412736675,5016034365,583240412,5200,1126087527,627549244,633279909,130179344,56541361,54236653,2084926000,973431443,859425607
26
+ 2020-24,56353720,5730212401,500620775,5875765088,711847150,14135,1388528542,720151495,894494138,200764126,47734388,66830987,2321860728,1129124685,1093846208
27
+ 2020-29,75539628,5590412325,552475731,5934274012,753074623,2180,1383977062,736467884,874977596,196675316,53694753,94219416,2720950295,1078268627,1125010574
28
+ 2020-34,57085611,4726682658,483551814,5065565909,673374528,8901,1387757209,733027748,735677458,169121132,53943098,40674101,2103760139,968405569,951835050
29
+ 2020-40,102372694,6160707836,569820350,6500343389,837845740,9124,1452974067,897596325,1048125198,348070962,52421174,47030512,2543568830,1149794309,1218327821
30
+ 2020-45,124584062,5256293078,494620184,6153114321,754964531,16741,1402870052,698980696,998033187,391509904,35430643,32076964,2238374879,1083725088,1033079338
31
+ 2020-50,79070227,5038187895,497544503,6141082067,692122383,61323,1249497608,668614081,914330890,340605844,39373620,35369278,2116179678,1043219873,997996395
32
+ 2021-04,115623080,6277166464,612344401,7419838221,841433482,22151,1492107544,907946417,1220378187,385141245,48838971,35829512,2717662924,1204307372,1163306959
33
+ 2021-10,59279503,5575956153,642115235,6333603718,887801182,24806,1281335114,850553012,1137844901,356093292,22999325,33554746,2235772098,1034227512,1123397831
34
+ 2021-17,99722887,5972592460,721100377,6621561573,885276191,9076,1262684919,867841473,1213286037,378225543,24803179,31546993,2439583742,1103293663,1138502324
35
+ 2021-21,69218678,5428456658,704207008,5909650277,825698454,18357,1165156827,847324434,1085251574,366483623,40963588,35358023,2107225371,1029614982,1041144121
36
+ 2021-25,107145186,5372958544,797673077,6535774315,894506288,35512,1177028249,942724528,1167623859,314415069,32016497,78774125,2141894370,1073689541,1048473415
37
+ 2021-31,129346367,6155844774,818909342,7345399777,1053808009,86328,1310718256,979683249,1277536802,307850718,42922234,56431877,2643361025,1218673698,1150878257
38
+ 2021-39,114510884,6121887423,805752669,6943386714,981182222,26735,1413156693,984846731,1447202089,300431318,35808115,62219470,2686472235,1290680023,1349765572
39
+ 2021-43,134152393,6674719963,702492003,7131663342,829904225,103179,1356691643,1033569348,1377895027,413020571,40426795,49373395,2733850132,1215787514,1402472991
40
+ 2021-49,85400122,5077341853,557756454,5475472279,737426323,148910,1104198844,867940399,1069896454,409780423,30014344,52664549,2190361614,955748017,1137978023
41
+ 2022-05,101509978,5579860901,637521108,6339957412,888843053,7297,1269093721,940564638,1239946489,337882073,32574398,48794189,2426305722,1141671271,1184296525
42
+ 2022-21,164420820,6474893165,720033237,7927944080,1040782254,4785,1580822321,1155138669,1300309990,403940382,55345941,63470804,2953579048,1410801514,1482467253
43
+ 2022-27,140243756,6145108881,798219027,7193244611,1016550917,15124,1590965287,1036661638,1314715096,358292373,60825435,74599888,2922219083,1299814902,1289090262
44
+ 2022-33,98189676,5672736845,715781416,6369981097,969004747,6657,1451235741,904859450,1227945359,387300105,29367977,68533958,2371108439,1204027317,1130365354
45
+ 2022-40,181311011,6797521337,882546639,8587007563,955252962,3351,1602281040,1188831956,1406303034,405892462,47505923,68351059,2915512336,1262766962,1321752362
46
+ 2022-49,198368897,7486567542,921818616,8943571998,1022010441,8250,1734994182,1245322167,1527783983,440015776,44277568,64270500,3111446719,1479486067,1434080241
47
+ 2023-06,262711972,7084372011,958540760,9369060885,1070659599,7499,1678553699,1242445760,1527350008,469960159,38987782,83567571,3170867634,1389230542,1421413455
48
+ 2023-14,188040225,7814389332,1017262145,9497386532,1164907002,6521,1706048176,1382576591,1493017781,508051117,59710956,95800793,3155810069,1416965321,1435524481
49
+ 2023-23,200275167,6911055517,1007766588,9199820010,995363977,5799,1628702320,1285409007,1430196154,483551450,56882794,75511135,2947055719,1311414772,1293843343
50
+ 2023-40,174171337,8217886249,908272783,10378523360,1097590260,8014,1726971276,1376142155,2025791925,505076873,51265007,101567119,3062350038,1448891268,1434600719
51
+ 2023-50,195860528,7833918293,839814624,10092884135,960843282,3609,1632409696,1278380582,2015499106,429751241,42006260,96064978,2744952180,1215320418,1326801869
52
+ 2024-10,169343197,7520445163,786487195,9569878160,992674414,0,1445349712,1394377732,1972771990,451789281,52039062,99238013,2715565224,1239744529,1344991752
scripts/global_filtered_without_bloom_token_counts.csv ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ snapshot-id,as,bn,gu,hi,kn,mai,ml,mr,ne,or,sa,sd,ta,te,ur
2
+ 2019-35,32642427,2618872915,315310459,3609748142,359125302,8149,961023729,414241163,412680150,87348149,23559548,38145182,2474654521,541518626,807589820
3
+ 2021-39,25860999,2680688199,309510282,3947483588,413475612,6067,1210543829,425526249,370616266,85664039,27081777,43548022,2728028221,589566976,786467800
4
+ 2019-30,42077775,3086057487,409449682,4425089534,493801633,11983,1362462108,496735243,494184831,94190540,29605968,58807086,3056524170,652223429,986901631
5
+ 2021-17,44376111,3331562812,486045793,5668726962,738033617,8215,1903904438,549795244,516215811,128992145,31747547,55760822,4097136873,899695437,992051134
6
+ 2022-21,38239946,2960777361,322744473,3651673263,454681921,14799,866213172,412977888,443369761,172134359,23927596,48231556,2071308419,567465251,911658147
7
+ 2019-51,51691554,5626855060,642734590,5950492947,1012681467,5444,1693133337,696422310,606585677,259488088,29663853,143973069,3459441880,1164835602,1639337972
8
+ 2021-04,44742450,3747270640,394909000,4333954650,647047558,18369,1087455289,558059988,576821113,245485109,29015778,49110335,2389053840,715306481,1101567053
9
+ 2022-33,47365520,4761989096,580887000,5451937794,940457364,790,1509957393,716332329,550004605,237980728,25325475,175259806,3064516894,1100790340,1236877271
10
+ 2023-06,44260702,3964473638,438462854,4746324490,660685128,8068,1037175449,567463659,616349866,255464735,29931306,56468286,2420090540,775351529,1263231538
11
+ 2019-13,73463472,4402277435,519078157,5394211119,748481753,10932,1357986927,681591856,615389386,235946205,24877682,110089145,2887716069,864913641,1133106715
12
+ 2018-47,46147277,4641741887,528448564,5165328228,633186775,6072,1345518444,612461622,668922642,246148734,35102700,80247098,2645991279,928490719,1061083861
13
+ 2020-10,64646278,3518594978,439406765,4402873229,481244270,0,1019527401,526586636,540178037,181480126,22759782,86174156,2051759596,677433657,861473351
14
+ 2020-50,57869291,3654087168,460566269,5087580774,522186095,6930,1128209134,554124357,552742324,205256569,35096878,64603061,2286564118,831983501,928952949
15
+ 2023-14,59592257,4127324521,496215307,4849068792,577797164,12376,1204768992,561152706,613178999,160264774,34238088,112615757,2530067599,877854801,965603847
16
+ 2018-34,67486015,4104983924,513472851,5303339778,669008560,14843,1296408339,581943464,660977987,184090849,42370658,37315951,2706555590,943410618,1064728193
17
+ 2019-39,131163524,4772090278,584011859,6047188519,727264060,12321,1438926685,672629600,726467007,205964276,40908651,118234817,2688338859,1038919661,1166088891
18
+ 2018-26,74680325,5258069194,633097507,6602779915,791302541,20205,1477931679,735334020,849043833,236961273,58474614,63623818,2947999067,1165199583,1221474462
19
+ 2021-43,64131679,5177691248,598522072,6158042153,897143517,13734,1342000331,694013684,765695588,209387642,47193621,115055744,2742025739,1113880304,1245549070
20
+ 2019-47,112681686,5652385287,729177841,7604346168,1093817137,33231,1618632470,844213410,788597682,221846611,67955984,60607403,3104016495,1541991809,1414444638
21
+ 2019-09,59546733,5106106238,496468272,5840848948,768534335,17231,1258451800,839925800,704782251,164578518,63527961,119875104,2721783362,1112164806,1283465030
22
+ 2019-18,67130239,4425850715,483979552,5294258363,765555915,20363,1203135593,772057107,625796765,161555704,72682247,47590296,2639710761,1064694803,1136591564
23
+ 2021-49,77668806,5128622361,571048278,6228013878,864514276,15543,1425795059,993604516,740516703,181979170,93708105,130735062,3390294090,1330011210,1283431968
24
+ 2020-34,65761782,4428188401,485945466,5413283017,741911785,11887,1245091928,702134567,661159935,149097950,67200715,38054695,2285180225,1021208700,973558734
25
+ 2021-25,67287434,5008160776,509041879,5839201093,695060070,14861,1318953318,762876641,716306380,162505357,91354866,93113226,2824688107,1149672568,1058061748
26
+ 2023-50,69921477,6155170225,559948082,6350964494,782496102,15611,1520326615,803969925,945143402,223449237,70489131,99941046,2758208442,1226586216,1248214072
27
+ 2020-05,90723756,6129526349,634405099,6654812199,845381625,20432,1563013807,856535534,944589385,225793003,90763898,103549612,3310186362,1248001952,1297559381
28
+ 2019-26,74446959,5184775169,543259846,5586653242,741388076,11983,1555100874,837837826,788483252,191069328,89938360,47317685,2541706064,1104910076,1091365546
29
+ 2020-45,124890007,6751268889,660380349,7347261541,933599511,26492,1642181924,1032002584,1130460137,374769322,86787125,53995858,3148325497,1320518102,1401117243
30
+ 2018-17,145372696,5698838728,551312121,6674833944,829115499,26414,1559394370,793975371,1051299821,411035975,60144391,37913133,2683972795,1214563084,1164459260
31
+ 2022-49,98861765,5509718178,565823871,6802763359,767240485,71749,1410956283,773205998,977835098,361296177,74527223,41691346,2620766198,1195572764,1144261564
32
+ 2020-29,130080014,6853886794,697745556,8364269726,990736322,22151,1714386849,1056422370,1311451470,415354996,72299251,42309922,3379652410,1382994502,1344921800
33
+ 2018-51,70057048,6039261024,713904648,7127115838,1065010568,50818,1478051546,974042470,1211662711,376058007,36450257,41696873,2789197870,1238877740,1299243436
34
+ 2024-10,112558210,6561312533,810883334,7485768553,1001988531,16035,1452759073,999294699,1296757989,399766492,39839467,37613160,3031618344,1315365373,1303520908
35
+ 2021-31,80945105,5920988811,776560510,6651717501,970953307,45374,1336347548,959846176,1156222944,385149812,59024965,43346364,2630116337,1198980579,1210620680
36
+ 2021-10,116836384,5734613176,855972838,7067577500,1000513052,39994,1290381763,1025846442,1220703324,329440830,45530958,82771577,2527543682,1183094693,1179838663
37
+ 2018-39,149143242,6785893339,929661903,8439028060,1220707502,89899,1532366795,1146541615,1382033592,337962909,62655733,63072842,3410675951,1403791355,1352362184
38
+ 2021-21,128509244,6622634911,881392300,7686970167,1071378508,31224,1583914134,1096209471,1524502646,319019668,49196485,67099793,3258687332,1440598063,1549829233
39
+ 2023-23,154643827,7313365087,810477922,8241890250,958978976,154966,1590780515,1199113437,1484519837,441158929,61642146,55953388,3511098132,1406541625,1611596089
40
+ 2019-04,94602419,5401089109,606222248,5935645617,826522695,226200,1207406793,942018922,1116891104,421391587,39452288,55851406,2538263400,1040076810,1259940939
41
+ 2020-40,119508237,6141925281,722266536,7256182084,1005999769,7297,1474497756,1075863987,1335349332,364744648,44905545,53985722,3076040188,1325202679,1414108542
42
+ 2023-40,181249579,7055128011,819854397,8919232497,1140712888,4785,1785500545,1303717376,1382639241,422755290,70239832,70724541,3648240124,1572612373,1656519205
43
+ 2022-05,153877478,6693423612,903908325,8122601035,1116252416,15124,1806082123,1168333213,1391425050,377515408,96449963,80883354,3604673841,1468438643,1456594162
44
+ 2019-43,108187660,6060174346,786666034,6922365552,1023294627,8201,1554756198,985025220,1278997890,397716969,52173432,74066893,2699894162,1283561850,1244987767
45
+ 2020-24,196966793,7383670696,999351113,9629611631,1055182840,4912,1827688825,1336928655,1488969091,430302333,70622031,76514364,3635480989,1433435142,1487269500
46
+ 2022-40,219138223,8160623105,1026139836,10039614787,1132181181,8757,1954811968,1397721488,1628568808,461882553,78959908,73781653,3827049813,1656486820,1638728284
47
+ 2020-16,262711972,7084372011,958540760,9369060885,1070659599,7499,1678553699,1242445760,1527350008,469960159,38987782,83567571,3170867634,1389230542,1421413455
48
+ 2018-43,188040225,7814389332,1017262145,9497386532,1164907002,6521,1706048176,1382576591,1493017781,508051117,59710956,95800793,3155810069,1416965321,1435524481
49
+ 2018-22,200275167,6911055517,1007766588,9199820010,995363977,5799,1628702320,1285409007,1430196154,483551450,56882794,75511135,2947055719,1311414772,1293843343
50
+ 2022-27,174171337,8217886249,908272783,10378523360,1097590260,8014,1726971276,1376142155,2025791925,505076873,51265007,101567119,3062350038,1448891268,1434600719
51
+ 2018-30,195860528,7833918293,839814624,10092884135,960843282,3609,1632409696,1278380582,2015499106,429751241,42006260,96064978,2744952180,1215320418,1326801869
52
+ 2019-22,169343197,7520445163,786487195,9569878160,992674414,0,1445349712,1394377732,1972771990,451789281,52039062,99238013,2715565224,1239744529,1344991752
scripts/heuristic_filtered_without_bloom_new_token_counts_dummy.csv ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ snapshot-id,as,bn,gu,hi,kn,mai,ml,mr,ne,or,sa,sd,ta,te,ur
2
+ 2018-17,20010349,1809869172,175938007,2152550092,186547701,0,520366589,207521314,325245295,78286314,9811781,17388706,1146768638,280681033,485755384
3
+ 2018-22,16449524,1900344566,185993187,2476914418,236232748,8403,675654762,237104436,297257597,68410496,12554774,25829720,1383213456,322169190,489183743
4
+ 2018-26,27291874,2219164332,244458027,2774067165,281325211,9407,805051830,270540450,395988596,75355037,12296124,36813535,1509852426,359184997,627028301
5
+ 2018-30,32448350,2413051231,302769125,3771543332,460280502,9569,1208784647,325432404,429058053,114586971,22806489,35200312,2300812354,542329011,641350220
6
+ 2018-34,26080549,2093849265,189108449,2266403455,247820931,13317,499463499,221730672,346220030,142632231,8705780,25271863,959259043,298306612,559381147
7
+ 2018-39,33189689,4177427925,400337425,3655693376,626081696,2014,1110743859,383855959,474981335,213141430,19005201,80067411,1697722588,657149201,1072094181
8
+ 2018-43,30602592,2720619573,228099257,2690641067,364076383,19079,685135681,295891170,458941631,211058890,13143060,27687008,1160969925,392765654,675268668
9
+ 2018-47,30826475,3433584668,358414887,3315227810,568882804,896,970213218,397011967,422705878,185166064,12477115,93190383,1481475365,614827290,783596475
10
+ 2018-51,29663549,2925807113,252391177,3030381708,373471811,9824,648180843,315412067,492279677,201706880,14136800,36053911,1208370164,443079356,792160495
11
+ 2019-04,55946063,3242805896,312696236,3365070886,421242653,7627,868999711,390349169,486376907,201080252,12717826,57125111,1409499308,463142747,697186983
12
+ 2019-09,28631497,3549188658,329848650,3382265793,369341957,1719,911942689,375403948,534242296,201363999,22023263,48595939,1374353217,532755527,668064235
13
+ 2019-13,45389120,2643706361,273200019,2867394331,289312631,0,695590916,329419803,434694182,154781306,10915271,49029473,1083282430,398532566,542457783
14
+ 2019-18,33654045,2680604039,275627531,3169767685,289894564,2305,720982589,325225530,421412270,163018101,14257360,37989874,1088323314,449198845,548942296
15
+ 2019-22,34348531,3120122196,317334930,3155591139,347218356,9408,788560407,342850261,497783491,126263183,15579330,60750466,1335812071,512860181,600572622
16
+ 2019-26,42402612,3069871258,316280530,3399156357,382993996,15594,817217248,344388673,517716067,141352690,18204367,20913885,1342229304,527130807,630050394
17
+ 2019-30,39257078,3491343266,351637992,3746661095,421063611,7837,888459895,386916643,568293789,158608733,14362423,48727265,1257868098,592466310,658702443
18
+ 2019-35,42944300,3942693443,371566130,4196064236,472959964,16834,937315036,430437779,682724233,184020651,21905976,36545884,1437153303,668506709,712974046
19
+ 2019-39,34991151,3724222425,348802488,3782143658,533153455,10845,831388749,387261281,604093924,160227806,15563139,49358822,1291016115,634745230,699154804
20
+ 2019-43,68091093,4217570715,411168110,4819999730,661720545,39173,1022106029,482535823,630624459,166254763,24489102,31020614,1513879879,889475012,831022482
21
+ 2019-47,29929633,3774930773,291203413,3639584291,438546209,9904,769033854,482446262,550909609,123314197,27932707,52472422,1279533617,617812520,732243243
22
+ 2019-51,36994636,3304443523,288388196,3353482025,417308806,17469,750035448,443330834,501610893,122194217,26182431,22669305,1254764413,582398169,679504489
23
+ 2020-05,42424946,3749581881,335767621,3797831183,460189166,7109,861639196,563023628,574686937,131640481,37540179,69104519,1610595783,734482609,737083274
24
+ 2020-10,43724695,3385109214,285262865,3514378980,427916531,3456,824839035,409694521,532600053,120234953,32734926,20922630,1160801798,606479164,609841381
25
+ 2020-16,36042957,3694353175,287656506,3692269300,376134617,4293,835962223,421432260,558301785,115841793,40027073,45095392,1343570255,632862751,618399997
26
+ 2020-24,44816313,4906343977,352154436,4355037275,468638827,17929,1043105441,511022003,791663635,179855353,30718653,54016929,1488343361,744923062,796671249
27
+ 2020-29,60158080,4754778674,384293656,4422900920,486558429,2251,1028047781,521333191,769368070,180239415,35404577,81543538,1720742617,703602519,821079301
28
+ 2020-34,45525811,4035445172,324298960,3735679813,426697967,12510,1036688568,521425835,645527319,148275490,36190836,30806992,1315261950,633002781,678421585
29
+ 2020-40,82871262,5269249497,393619882,4881924285,549322493,10379,1079810147,645001062,926800590,315606841,37827654,36389428,1609169679,762480394,884851005
30
+ 2020-45,104682923,4465834577,343489628,4658048650,479145643,22752,1028103994,490313264,878537949,360462361,21075868,23336326,1427277955,715482912,717438442
31
+ 2020-50,64516602,4276965548,343805928,4615398037,441552234,33762,905602419,469407874,809374628,318818866,25893923,26680589,1359468349,684211856,699484820
32
+ 2021-04,92166195,5316869273,444479581,5671394713,542790858,30411,1070879391,649314802,1078631619,360278405,32720388,27405974,1731571995,793274511,837058085
33
+ 2021-10,45396415,4734992136,471329770,4750124660,566079145,15628,912043383,594672272,1006268624,340995279,16434596,23867054,1415361325,662863019,802996595
34
+ 2021-17,83808243,5084607354,527389115,5017561299,557136643,6030,892943346,620405135,1068542956,358519394,14919944,23030901,1534578147,688543161,807773136
35
+ 2021-21,56733125,4562688668,513323313,4448499599,527200045,8672,814341684,603896578,955891795,347525208,26315613,26410761,1348330979,647646661,746580501
36
+ 2021-25,89217002,4588272072,594377601,4962386909,572701937,30731,851684785,682616363,1031634973,301271955,22254091,63500641,1404225778,722203150,748462108
37
+ 2021-31,105751929,5227833246,590383223,5627028159,702520025,63007,936514548,702995762,1124934198,289286053,26664638,40847120,1716011519,821721268,826927672
38
+ 2021-39,94395152,5242226265,589980594,5190467546,643675130,19152,999270930,709622577,1283412780,278619036,23810212,47511427,1734880140,882774922,1015932987
39
+ 2021-43,111352596,5717041166,511055881,5312248195,568443024,108979,969494996,744625084,1216875525,387328382,31031198,36812626,1739664267,831883073,1044955384
40
+ 2021-49,72549102,4318771615,397826475,4064492905,520344758,154860,795070542,605888576,941035074,389265454,23099075,40023613,1402315159,653975726,829228594
41
+ 2022-05,81926599,4772208692,456912727,4703114011,636860542,7854,894999723,661373971,1101849158,322667895,23176449,36543250,1563614031,800295190,858018955
42
+ 2022-21,135336504,5488424403,519140932,5929311006,667508046,3921,1098318949,822734456,1135210998,379345981,35451068,47740572,1849000939,939280128,1097606955
43
+ 2022-27,110445564,5196697703,572853060,5400262971,662384689,11504,1095490568,734030522,1155113058,328380244,32115413,55613031,1889774044,875454186,936074466
44
+ 2022-33,79387365,4828973611,517924983,4780984926,615706516,4958,999886735,648715944,1068134263,355341789,16654771,51910935,1486409660,794119664,801522220
45
+ 2022-40,150452402,5756719545,649562065,6486016844,660087119,4399,1141241823,853658728,1214641708,374881993,34740082,49540150,1885356810,849353049,954062375
46
+ 2022-49,164767537,6377930609,675055483,6705454114,708941945,6362,1236542189,891803478,1317755566,411947299,23063636,45329128,2013026471,960187195,1032822744
47
+ 2023-06,213647738,5968213655,704263181,7120666287,743035677,11259,1188738035,883863852,1304909050,444049570,23901903,61711674,2043876293,886691214,1028539253
48
+ 2023-14,154104270,6708777736,760098399,7252614740,793022057,4893,1214060109,974199871,1283674515,475912518,38212079,70220689,2029615173,954566030,1034473726
49
+ 2023-23,167992758,5984033402,748927869,7037666340,698643473,6219,1154835994,895406172,1218916334,453177024,36252329,54364070,1929991230,891049622,943525884
50
+ 2023-40,146849843,7159751773,662315874,8034449705,777007502,6644,1233139793,967332208,1733169504,470624371,32779831,73205079,1925605526,984419368,1035456144
51
+ 2023-50,167983980,6737457664,609308447,7771269266,687776115,1739,1197140333,914106522,1721789923,409203705,26581941,73517536,1734417664,809109092,947488317
52
+ 2024-10,148991821,6518610807,565810662,7282266285,714766334,0,1054178888,1028240750,1697621201,426685048,34090472,77673790,1672292212,835104088,970594687
scripts/heuristic_filtered_without_bloom_token_counts_dummy.csv ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ snapshot-id,as,bn,gu,hi,kn,mai,ml,mr,ne,or,sa,sd,ta,te,ur
2
+ 2018-17,21513333,1961757163,190798101,2290903037,200701794,0,545273709,225459889,342060807,81576116,11121845,18713273,1254892850,302064971,516961624
3
+ 2018-22,17581638,2050804744,198618555,2630614068,251891350,0,711975307,255786092,314303715,72357416,14244909,27116549,1511817585,346648520,520582030
4
+ 2018-26,29424338,2404383646,265765525,2943158864,300696836,0,845601422,293732403,418092539,80023355,14169607,39145456,1656911271,386993770,664773625
5
+ 2018-30,34768812,2620197277,327261857,4021794540,490982625,0,1276300074,350506173,452803643,119716114,25844412,37194425,2515401351,583024447,679955557
6
+ 2018-34,27656895,2250184472,200305228,2416508163,263581490,0,522905380,237778384,366099100,149217600,9955776,26783866,1053231699,320267447,598731481
7
+ 2018-39,35476714,4455463016,417717900,3905248710,660605871,0,1150034839,411601049,501697629,220356019,21584103,86320685,1819831213,707311989,1147458954
8
+ 2018-43,32530608,2921526363,242154949,2864691458,386934771,0,712977576,318689218,484447453,218997799,15157513,30073500,1276553195,422246900,720560681
9
+ 2018-47,32780724,3657357892,372868141,3514406084,600663767,0,1006968551,421333845,447320770,192791433,14485436,98710599,1588691555,661862677,831644392
10
+ 2018-51,31676274,3119846934,267723086,3202076637,399312399,0,679191220,338919081,517672862,212183508,16263719,38119985,1300530609,475834954,847732732
11
+ 2019-04,60116760,3454882358,328893368,3560928960,449684491,0,908368581,414372694,515174204,208878972,14339990,59067588,1517946706,500190389,744820686
12
+ 2019-09,30303845,3764576965,343996946,3559918132,392923447,0,945483935,398014321,564813927,211031545,24943864,50297157,1474154344,571670309,711560373
13
+ 2019-13,48371075,2819053546,286648463,3035261063,307927059,0,721008708,349672062,460703498,160502482,12687804,50151716,1166014355,428344955,580016242
14
+ 2019-18,36186290,2848405298,289821267,3388280627,307764702,0,749832872,345029793,447287407,170628059,16229803,39141099,1180407095,484636390,588754204
15
+ 2019-22,36970401,3318433990,332830177,3353180657,369609355,0,821255838,367136018,527253830,132144179,17905339,61931407,1439869453,552923329,641507659
16
+ 2019-26,45925855,3261938276,332253002,3622507091,407671755,0,854723891,368032688,548611837,148424595,20835091,22052862,1459072099,571611251,677699461
17
+ 2019-30,42107168,3717298865,367856017,4006970211,446581046,0,926077511,411753269,603652641,165887741,16475428,49978048,1361623698,638456888,711910345
18
+ 2019-35,46220164,4193647525,395017755,4489167804,501711495,0,977813663,458564820,723270622,192568784,24862459,37942211,1560627821,722834503,770254331
19
+ 2019-39,37858337,3974179194,377567815,4060816861,566319802,0,868001717,415409184,639110017,166781668,17907237,51453673,1403039767,686651647,751946546
20
+ 2019-43,73734765,4497762282,446519519,5169413387,707018884,0,1072871965,521322947,665985080,174590749,28082664,33678012,1643539250,965432127,898924909
21
+ 2019-47,32549781,4018258208,307115092,3908599319,471369696,0,810943725,515781087,584118890,129110544,32311759,54835302,1399170771,672628962,791891608
22
+ 2019-51,40197903,3519625750,305029842,3594125247,445474420,0,789455255,474366323,530166847,127800057,29919588,24059150,1380124622,633212142,737620630
23
+ 2020-05,45809203,3992072690,355105276,4090957484,494257747,0,904529547,602695979,610761943,138024493,43382045,71142091,1767953733,802778553,802761041
24
+ 2020-10,46945236,3596268870,301866975,3760691680,455212800,0,860784320,436795999,565061954,125896703,37616529,22668219,1262141778,657934841,655971493
25
+ 2020-16,38709291,3930609567,306790451,3952861821,402480065,0,874289741,454469923,592982112,121414625,46407543,47839800,1462491802,688125720,667924457
26
+ 2020-24,48680927,5201924333,375157951,4661004562,501700069,0,1089013610,541214515,839084570,188846684,36502252,57508060,1624898105,808545582,858163822
27
+ 2020-29,65030584,5040026680,406367999,4728992132,520576750,0,1074542888,554565476,815820129,188670742,41610384,84785587,1880243812,772197713,885113471
28
+ 2020-34,49412518,4274686985,341432003,4000951375,459189598,0,1083533262,554977945,682593244,155458105,42953714,32981507,1440921124,695229056,735916415
29
+ 2020-40,88118976,5578296620,414094633,5200092531,584737430,0,1125746734,681642595,976645758,326353753,44613573,38850536,1751969094,838494192,952907216
30
+ 2020-45,110686968,4723312059,360432307,4933094077,514087387,0,1072794506,516669424,926189573,371748203,25134137,25110375,1554177577,780608930,780701473
31
+ 2020-50,68559753,4522786619,360022014,4898644673,473732805,0,945879620,493613835,852116880,327902463,30790451,28560323,1475787032,748657038,758226879
32
+ 2021-04,97898868,5614189783,465047923,6006147472,582164780,0,1121510788,683579181,1136347752,369705477,38645019,29195083,1882077133,862470106,901332159
33
+ 2021-10,49365807,5002078205,490289961,5053065858,609445475,0,956573038,627515970,1057148773,350514317,18879737,25996785,1554944223,734168707,865266764
34
+ 2021-17,89562176,5376246760,548926318,5337336050,599047546,0,938151767,654215003,1124779621,368801924,17831001,25016224,1689889831,770610723,871354739
35
+ 2021-21,60631488,4831442728,537332384,4731969995,566187640,0,858133751,639262892,1004421712,357089096,30603566,28343589,1480872636,721631995,805389233
36
+ 2021-25,93178981,4842870085,619156969,5262170698,606736080,0,888385301,716392872,1081502605,310036414,25991781,66616309,1525716976,777717950,805468341
37
+ 2021-31,111812557,5527986254,616468373,5956086674,745021243,0,980247793,742098955,1183882015,297752803,31619920,44207750,1874893443,889127174,888207397
38
+ 2021-39,99387010,5533953919,615949945,5517581854,683928881,0,1045632672,748815591,1349253117,287612829,27778833,50739855,1901786281,951240021,1083353911
39
+ 2021-43,118370668,6036316066,536629095,5663438283,608060301,0,1017138750,789659485,1278742130,397780340,35820577,39425229,1936429515,899745483,1116495736
40
+ 2021-49,76265988,4565661421,420471950,4309838320,553542749,0,833298362,648754008,987796418,398882797,26320456,42895406,1556163036,704516349,888966744
41
+ 2022-05,87069971,5046123121,481758062,5007148821,678037223,0,940781162,704735331,1157630219,330867174,26813485,39343691,1725187785,856856311,921470369
42
+ 2022-21,142588028,5815856514,548057790,6334275059,719373631,0,1161772364,876007766,1196123689,390337358,41384747,50852560,2063116995,1011756515,1172482359
43
+ 2022-27,116096436,5503907946,603379844,5761933412,717612142,0,1169996017,782419052,1214056117,338520131,38921265,59609288,2097021554,954561945,1004468883
44
+ 2022-33,83538438,5102544179,544546102,5073063680,666025113,0,1062710984,683448898,1119838288,364924561,20076403,55587020,1642582256,864610319,864131397
45
+ 2022-40,157663394,6106175025,681997008,6901758809,702619665,0,1198305126,904944676,1279138871,387176812,40759277,53915083,2075328843,914967881,1024058354
46
+ 2022-49,172573241,6760924578,706902139,7116204722,751272463,0,1295355534,944821913,1386454065,424546138,27918960,49191088,2217359337,1041887323,1109224790
47
+ 2023-06,223854682,6335300443,736296431,7558278071,789107812,0,1244387854,935587340,1373691329,456909865,27978009,66712190,2236625701,964704438,1105548860
48
+ 2023-14,162200200,7108610638,792672863,7681085986,842173121,0,1272667480,1031917148,1351594943,491058569,45123877,75616375,2244900848,1025128584,1113946699
49
+ 2023-23,176561225,6323566271,783664180,7465060894,743453087,0,1208474629,948219620,1286938905,467308591,42217487,58885785,2114362126,955004847,1012723899
50
+ 2023-40,155496331,7556099679,696729360,8515626881,822712835,0,1290468452,1026279360,1825287675,485592570,38164112,79410366,2147995096,1065091426,1115490391
51
+ 2023-50,177096897,7119506598,639992546,8241839107,731496510,0,1251306582,968125662,1811935818,422693069,30800971,78677907,1913544837,874921182,1021356711
52
+ 2024-10,156496931,6886232865,595933005,7704353582,757213299,0,1101444496,1085990691,1786007614,440817806,39029274,82947277,1871565372,896530546,1044649823
scripts/linewise_filtering.py ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import gzip
4
+ import re
5
+ from tqdm import tqdm
6
+ from multiprocessing import Pool
7
+
8
+ langs = ["as", "bn", "gu", "kn", "hi", "ml", "mr", "ne", "or", "sa", "sd", "ta", "ur", "te", "mai"]
9
+
10
+ language_characters = {
11
+ "as": {"range": (0x0980, 0x09FF)}, # Assamese
12
+ "bn": {"range": (0x0980, 0x09FF)}, # Bengali
13
+ "gu": {"range": (0x0A80, 0x0AFF)}, # Gujarati
14
+ "kn": {"range": (0x0C80, 0x0CFF)}, # Kannada
15
+ "hi": {"range": (0x0900, 0x097F)}, # Hindi
16
+ "ml": {"range": (0x0D00, 0x0D7F)}, # Malayalam
17
+ "mr": {"range": (0x0900, 0x097F)}, # Marathi
18
+ "ne": {"range": (0x0900, 0x097F)}, # Nepali
19
+ "or": {"range": (0x0B00, 0x0B7F)}, # Oriya
20
+ "sa": {"range": (0x0900, 0x097F)}, # Sanskrit
21
+ "sd": {"range": (0x0600, 0x06FF)}, # Sindhi
22
+ "ta": {"range": (0x0B80, 0x0BFF)}, # Tamil
23
+ "ur": {"range": (0x0600, 0x06FF)}, # Urdu
24
+ "te": {"range": (0x0C00, 0x0C7F)}, # Telugu
25
+ "mai": {"range": (0x0900, 0x097F)} # Maithili
26
+ }
27
+
28
+ language_percentage = 40
29
+ num_of_words = 4
30
+
31
+ def check_language_percentage(text, language):
32
+ unicode_range = language_characters.get(language)
33
+
34
+ language_character_count = sum(unicode_range["range"][0] <= ord(char) <= unicode_range["range"][1] for char in text)
35
+
36
+ # Calculate the percentage of characters belonging to the specified language
37
+ percentage = (language_character_count / len(text)) * 100
38
+
39
+ # Check if the percentage meets the threshold of 30%
40
+ if percentage >= language_percentage:
41
+ return True
42
+ else:
43
+ return False
44
+
45
+ def valid(json_obj, lang):
46
+ content = json_obj["raw_content"]
47
+
48
+ sentences = content.split('\n')
49
+
50
+ filtered_sentences = []
51
+
52
+ for sentence in sentences:
53
+ end_of_sentence_pattern = r'[।?!]+'
54
+ lines = re.split(end_of_sentence_pattern, sentence)
55
+ lines = [line for line in lines if line != ""]
56
+ filtered_lines = []
57
+
58
+ for i in range(len(lines)):
59
+ if(not(lines[i] == "।" or lines[i] == "?" or lines[i] == "!")):
60
+ if(check_language_percentage(lines[i], lang) and len(lines[i].split()) >= num_of_words):
61
+ filtered_lines.append(lines[i])
62
+ i += 1
63
+ if(i+1 < len(lines)):
64
+ filtered_lines.append(lines[i])
65
+ else:
66
+ i += 1
67
+ # else:
68
+ # filtered_lines.append(lines[i])
69
+ filtered_sentences.append("".join(filtered_lines))
70
+ json_obj["raw_content"] = re.sub(r'\n+', '\n', "\n".join(filtered_sentences))
71
+ return json_obj
72
+
73
+
74
+
75
+
76
+ def process_file(file_info):
77
+ input_path, output_path = file_info
78
+
79
+ lang = input_path.split('/')[-1].split('_')[0]
80
+
81
+ filtered_documents = []
82
+ # Read JSON objects and filter them
83
+ with gzip.open(input_path, 'rt') as input_file:
84
+ for line in input_file:
85
+ json_obj = json.loads(line)
86
+ new_obj = valid(json_obj, lang)
87
+ if(len(new_obj["raw_content"].split()) >= 50):
88
+ filtered_documents.append(new_obj)
89
+
90
+
91
+ # Write filtered JSON objects to new file
92
+ with gzip.open(output_path, 'wt') as output_file:
93
+ for doc in filtered_documents:
94
+ output_file.write(json.dumps(doc, ensure_ascii=False) + '\n')
95
+
96
+
97
+ def filter_json_files(input_folder, output_folder):
98
+ # Create output folder if it doesn't exist
99
+ if not os.path.exists(output_folder):
100
+ os.makedirs(output_folder)
101
+
102
+ file_infos = []
103
+
104
+ # Iterate through each JSON file in the input folder
105
+ for filename in sorted(os.listdir(input_folder)):
106
+ if filename.endswith(".json.gz"):
107
+ input_path = os.path.join(input_folder, filename)
108
+ output_path = os.path.join(output_folder, filename)
109
+
110
+ file_infos.append((input_path, output_path))
111
+
112
+ # Initialize tqdm with the total number of files
113
+ with tqdm(total=len(file_infos)) as pbar:
114
+ # Create a pool of workers
115
+ with Pool(processes=160) as pool:
116
+ # Use tqdm as a context manager to automatically close the pool and update the progress bar
117
+ for _ in pool.imap_unordered(process_file, file_infos):
118
+ pbar.update()
119
+
120
+ print("Filtering done for ", input_folder.split('/')[-1])
121
+
122
+ snapshots = ["2018-17", "2018-22", "2018-26", "2018-30", "2018-34", "2018-39", "2018-43", "2018-47", "2018-51", "2019-04", "2019-09", "2019-13", "2019-18", "2019-22", "2019-26", "2019-30", "2019-35", "2019-39", "2019-43", "2019-47", "2019-51", "2020-05", "2020-10", "2020-16", "2020-24", "2020-29", "2020-34", "2020-40", "2020-45", "2020-50", "2021-04", "2021-10", "2021-17", "2021-21", "2021-25", "2021-31", "2021-39", "2021-43", "2021-49", "2022-05", "2022-21", "2022-27", "2022-33", "2022-40", "2022-49", "2023-06", "2023-14", "2023-23", "2023-40", "2023-50", "2024-10"]
123
+
124
+
125
+ for snap in snapshots:
126
+ input_folder = f"/mnt/weka/peacock/wet-data/output/global_filtered_without_bloom_new/{snap}"
127
+ output_folder = f"/mnt/weka/peacock/wet-data/output/heuristic_filtered_without_bloom_new/{snap}"
128
+
129
+ filter_json_files(input_folder, output_folder)
scripts/local_dedup.py ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import gzip
4
+ import pandas as pd
5
+ from tqdm import tqdm
6
+ from multiprocessing import Pool, TimeoutError
7
+ import signal
8
+ import sys
9
+
10
+ def process_file(file_info):
11
+ input_path, output_path, clusters_file, bloom_file = file_info
12
+
13
+ # Read line numbers to avoid from clusters file
14
+ try:
15
+ clusters_df = pd.read_parquet(clusters_file)
16
+ except FileNotFoundError:
17
+ with open("temp.txt", "a+") as f:
18
+ f.write(clusters_file + '\n')
19
+ clusters_df = pd.DataFrame()
20
+ clusters_df['id'] = []
21
+ clusters_df['id_int'] = []
22
+ clusters_df['clusters_id'] = []
23
+
24
+ clusters_df['line_number'] = clusters_df['id'].apply(lambda x: int(x.split('/')[-1]))
25
+
26
+ duplicate_docs = set()
27
+
28
+ if(bloom_file != "None"):
29
+ bloom_df = pd.read_parquet(bloom_file)
30
+
31
+ curr_file = input_path.split('/')[-1]
32
+ for _, row in bloom_df.iterrows():
33
+ if(curr_file == row["doc_id"].split('/')[0]):
34
+ duplicate_docs.add(int(row["doc_id"].split('/')[1]))
35
+
36
+ for _, row in clusters_df.iterrows():
37
+ if(row['id_int'] != row['cluster_id']):
38
+ duplicate_docs.add(int(row['id'].split('/')[-1]))
39
+
40
+ # Read JSON objects and filter them
41
+ with gzip.open(input_path, 'rt') as input_file:
42
+ try:
43
+ filtered_documents = [json.loads(line) for idx, line in enumerate(input_file) if idx not in duplicate_docs]
44
+ except:
45
+ print(input_file)
46
+ return
47
+
48
+ # Write filtered JSON objects to new file
49
+ with gzip.open(output_path, 'wt') as output_file:
50
+ for doc in filtered_documents:
51
+ output_file.write(json.dumps(doc, ensure_ascii=False) + '\n')
52
+
53
+
54
+
55
+ # def process_file_with_timeout(arg):
56
+ # def handler(signum, frame):
57
+ # raise TimeoutError("end of time")
58
+ # signal.signal(signal.SIGALRM, handler)
59
+ # signal.alarm(500)
60
+ # try:
61
+ # process_file(arg)
62
+ # except TimeoutError:
63
+ # print("timeout")
64
+ # return
65
+
66
+ def filter_json_files(input_folder, output_folder, clusters_folder, bloom_folder):
67
+ # Create output folder if it doesn't exist
68
+ if not os.path.exists(output_folder):
69
+ os.makedirs(output_folder)
70
+
71
+ file_infos = []
72
+
73
+ # Iterate through each JSON file in the input folder
74
+ for filename in sorted(os.listdir(input_folder)):
75
+ if filename.endswith(".json.gz"):
76
+ input_path = os.path.join(input_folder, filename)
77
+ output_path = os.path.join(output_folder, filename)
78
+
79
+ # Determine the corresponding clusters file
80
+ clusters_file = os.path.join(clusters_folder, filename.split('_')[0], f"{filename.split('_')[-1].split('.')[0]}.clusters.parquet")
81
+ try:
82
+ bloom_file = os.path.join(bloom_folder, filename.split('_')[0], [x for x in os.listdir(os.path.join(bloom_folder, filename.split('_')[0])) if x.endswith(".parquet")][-1])
83
+ except FileNotFoundError:
84
+ bloom_file = "None"
85
+
86
+ # print((input_path, output_path, clusters_file))
87
+ file_infos.append((input_path, output_path, clusters_file, bloom_file))
88
+
89
+
90
+
91
+ # Initialize tqdm with the total number of files
92
+ with tqdm(total=len(file_infos)) as pbar:
93
+ # Create a pool of workers
94
+ with Pool(processes=160) as pool:
95
+ # Use tqdm as a context manager to automatically close the pool and update the progress bar
96
+ for _ in pool.imap_unordered(process_file, file_infos):
97
+ pbar.update()
98
+
99
+
100
+ print("Filtering done for ", input_folder.split('/')[-1])
101
+
102
+ # snapshots = {}
103
+ # snapshots[0] = ["2018-17", "2018-22", "2018-26", "2018-30", "2018-34", "2018-39", "2018-43", "2018-47", "2018-51", "2019-04", "2019-09", "2019-13", "2019-18"]
104
+ # snapshots[0] = ["2018-30", "2018-34", "2018-39", "2018-43", "2018-47", "2018-51", "2019-04", "2019-09", "2019-13", "2019-18"]
105
+
106
+ # snapshots[1] = ["2019-22", "2019-26", "2019-30", "2019-35", "2019-39", "2019-43", "2019-47", "2019-51", "2020-05", "2020-10", "2020-16", "2020-24"]
107
+ # snapshots[2] = ["2020-29", "2020-34", "2020-40", "2020-45", "2020-50", "2021-04", "2021-10", "2021-17", "2021-21", "2021-25", "2021-31", "2021-39"]
108
+ # snapshots[3] = ["2021-43", "2021-49", "2022-05", "2022-21", "2022-27", "2022-33", "2022-40", "2022-49", "2023-06", "2023-14", "2023-23", "2023-40", "2023-50", "2024-10"]
109
+
110
+ # snapshots = ["2020-05", "2020-10", "2020-16", "2020-24", "2020-29", "2020-34", "2020-40", "2020-45", "2020-50", "2021-04", "2021-10", "2021-17", "2021-21", "2021-25", "2021-31", "2021-39", "2021-43", "2021-49", "2022-05", "2022-21", "2022-27", "2022-33", "2022-40", "2022-49", "2023-06", "2023-14", "2023-23", "2023-40", "2023-50", "2024-10"]
111
+
112
+ # snapshots = ["2019-51"]
113
+
114
+
115
+
116
+ snapshots = ["2018-17", "2018-22", "2018-26", "2018-30", "2018-34", "2018-39", "2018-43", "2018-47", "2018-51", "2019-04", "2019-09", "2019-13", "2019-18", "2019-22", "2019-26", "2019-30", "2019-35", "2019-39", "2019-43", "2019-47", "2019-51", "2020-05", "2020-10", "2020-16", "2020-24", "2020-29", "2020-34", "2020-40", "2020-45", "2020-50", "2021-04", "2021-10", "2021-17", "2021-21", "2021-25", "2021-31", "2021-39", "2021-43", "2021-49", "2022-05", "2022-21", "2022-27", "2022-33", "2022-40", "2022-49", "2023-06", "2023-14", "2023-23", "2023-40", "2023-50", "2024-10"]
117
+
118
+ snapshots = [sys.argv[1]]
119
+
120
+ for snap in snapshots:
121
+ input_folder = f"/mnt/weka/peacock/wet-data/output/mined/{snap}"
122
+ output_folder = f"/mnt/weka/peacock/wet-data/output/local_filtered/{snap}"
123
+ clusters_folder = f"/mnt/weka/peacock/wet-data/output/fuzzy-clusters/{snap}"
124
+ bloom_folder = f"/mnt/weka/peacock/wet-data/output/bloomfilter/{snap}"
125
+
126
+ filter_json_files(input_folder, output_folder, clusters_folder, bloom_folder)
scripts/local_dedup_without_bloom.py ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import gzip
4
+ import pandas as pd
5
+ from tqdm import tqdm
6
+ from multiprocessing import Pool
7
+
8
+ def process_file(file_info):
9
+ input_path, output_path, clusters_file = file_info
10
+
11
+ # Read line numbers to avoid from clusters file
12
+ try:
13
+ clusters_df = pd.read_parquet(clusters_file)
14
+ except FileNotFoundError:
15
+ with open("temp.txt", "a+") as f:
16
+ f.write(clusters_file + '\n')
17
+ clusters_df = pd.DataFrame()
18
+ clusters_df['id'] = []
19
+ clusters_df['id_int'] = []
20
+ clusters_df['clusters_id'] = []
21
+
22
+ clusters_df['line_number'] = clusters_df['id'].apply(lambda x: int(x.split('/')[-1]))
23
+
24
+ duplicate_docs = set()
25
+
26
+ for _, row in clusters_df.iterrows():
27
+ if(row['id_int'] != row['cluster_id']):
28
+ duplicate_docs.add(int(row['id'].split('/')[-1]))
29
+
30
+ # Read JSON objects and filter them
31
+ with gzip.open(input_path, 'rt') as input_file:
32
+ try:
33
+ filtered_documents = [json.loads(line) for idx, line in enumerate(input_file) if idx not in duplicate_docs]
34
+ except:
35
+ print(input_file)
36
+ return
37
+
38
+ # Write filtered JSON objects to new file
39
+ with gzip.open(output_path, 'wt') as output_file:
40
+ for doc in filtered_documents:
41
+ output_file.write(json.dumps(doc, ensure_ascii=False) + '\n')
42
+
43
+
44
+ def filter_json_files(input_folder, output_folder, clusters_folder):
45
+ # Create output folder if it doesn't exist
46
+ if not os.path.exists(output_folder):
47
+ os.makedirs(output_folder)
48
+
49
+ file_infos = []
50
+
51
+ # Iterate through each JSON file in the input folder
52
+ for filename in sorted(os.listdir(input_folder)):
53
+ if filename.endswith(".json.gz"):
54
+ input_path = os.path.join(input_folder, filename)
55
+ output_path = os.path.join(output_folder, filename)
56
+
57
+ # Determine the corresponding clusters file
58
+ clusters_file = os.path.join(clusters_folder, filename.split('_')[0], f"{filename.split('_')[-1].split('.')[0]}.clusters.parquet")
59
+
60
+ # print((input_path, output_path, clusters_file))
61
+ file_infos.append((input_path, output_path, clusters_file))
62
+
63
+
64
+
65
+ # Initialize tqdm with the total number of files
66
+ with tqdm(total=len(file_infos)) as pbar:
67
+ # Create a pool of workers
68
+ with Pool(processes=160) as pool:
69
+ # Use tqdm as a context manager to automatically close the pool and update the progress bar
70
+ for _ in pool.imap_unordered(process_file, file_infos):
71
+ pbar.update()
72
+
73
+
74
+ print("Filtering done for ", input_folder.split('/')[-1])
75
+
76
+ snapshots = ["2018-17", "2018-22", "2018-26", "2018-30", "2018-34", "2018-39", "2018-43", "2018-47", "2018-51", "2019-04", "2019-09", "2019-13", "2019-18", "2019-22", "2019-26", "2019-30", "2019-35", "2019-39", "2019-43", "2019-47", "2019-51", "2020-05", "2020-10", "2020-16", "2020-24", "2020-29", "2020-34", "2020-40", "2020-45", "2020-50", "2021-04", "2021-10", "2021-17", "2021-21", "2021-25", "2021-31", "2021-39", "2021-43", "2021-49", "2022-05", "2022-21", "2022-27", "2022-33", "2022-40", "2022-49", "2023-06", "2023-14", "2023-23", "2023-40", "2023-50", "2024-10"]
77
+
78
+ for snap in snapshots:
79
+ input_folder = f"/mnt/weka/peacock/wet-data/output/mined/{snap}"
80
+ output_folder = f"/mnt/weka/peacock/wet-data/output/local_filtered_without_bloom_dummy/{snap}"
81
+ clusters_folder = f"/mnt/weka/peacock/wet-data/output/fuzzy-clusters/{snap}"
82
+
83
+ filter_json_files(input_folder, output_folder, clusters_folder)
84
+ break
scripts/local_filtered_without_bloom_dummy_token_counts_dummy.csv ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ snapshot-id,as,bn,gu,hi,kn,mai,ml,mr,ne,or,sa,sd,ta,te,ur
2
+ 2018-17,32642427,2618872915,315310459,3609748142,359125302,8149,961023729,414241163,412680150,87348149,23559548,38145182,2474654521,541518626,807589820
scripts/local_filtered_without_bloom_token_counts.csv ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ snapshot-id,as,bn,gu,hi,kn,mai,ml,mr,ne,or,sa,sd,ta,te,ur
2
+ 2019-22,32642427,2618872915,315310459,3609748142,359125302,8149,961023729,414241163,412680150,87348149,23559548,38145182,2474654521,541518626,807589820
3
+ 2018-17,25860999,2680688199,309510282,3947483588,413475612,6067,1210543829,425526249,370616266,85664039,27081777,43548022,2728028221,589566976,786467800
4
+ 2021-10,42077775,3086057487,409449682,4425089534,493801633,11983,1362462108,496735243,494184831,94190540,29605968,58807086,3056524170,652223429,986901631
5
+ 2021-39,44376111,3331562812,486045793,5668726962,738033617,8215,1903904438,549795244,516215811,128992145,31747547,55760822,4097136873,899695437,992051134
6
+ 2021-49,38239946,2960777361,322744473,3651673263,454681921,14799,866213172,412977888,443369761,172134359,23927596,48231556,2071308419,567465251,911658147
7
+ 2019-13,51691554,5626855060,642734590,5950492947,1012681467,5444,1693133337,696422310,606585677,259488088,29663853,143973069,3459441880,1164835602,1639337972
8
+ 2020-45,44742450,3747270640,394909000,4333954650,647047558,18369,1087455289,558059988,576821113,245485109,29015778,49110335,2389053840,715306481,1101567053
9
+ 2023-23,47365520,4761989096,580887000,5451937794,940457364,790,1509957393,716332329,550004605,237980728,25325475,175259806,3064516894,1100790340,1236877271
10
+ 2020-05,44260702,3964473638,438462854,4746324490,660685128,8068,1037175449,567463659,616349866,255464735,29931306,56468286,2420090540,775351529,1263231538
11
+ 2018-26,73463472,4402277435,519078157,5394211119,748481753,10932,1357986927,681591856,615389386,235946205,24877682,110089145,2887716069,864913641,1133106715
12
+ 2019-09,46147277,4641741887,528448564,5165328228,633186775,6072,1345518444,612461622,668922642,246148734,35102700,80247098,2645991279,928490719,1061083861
13
+ 2023-06,64646278,3518594978,439406765,4402873229,481244270,0,1019527401,526586636,540178037,181480126,22759782,86174156,2051759596,677433657,861473351
14
+ 2023-40,57869291,3654087168,460566269,5087580774,522186095,6930,1128209134,554124357,552742324,205256569,35096878,64603061,2286564118,831983501,928952949
15
+ 2020-24,59592257,4127324521,496215307,4849068792,577797164,12376,1204768992,561152706,613178999,160264774,34238088,112615757,2530067599,877854801,965603847
16
+ 2019-04,67486015,4104983924,513472851,5303339778,669008560,14843,1296408339,581943464,660977987,184090849,42370658,37315951,2706555590,943410618,1064728193
17
+ 2018-30,131163524,4772090278,584011859,6047188519,727264060,12321,1438926685,672629600,726467007,205964276,40908651,118234817,2688338859,1038919661,1166088891
18
+ 2021-31,74680325,5258069194,633097507,6602779915,791302541,20205,1477931679,735334020,849043833,236961273,58474614,63623818,2947999067,1165199583,1221474462
19
+ 2019-43,64131679,5177691248,598522072,6158042153,897143517,13734,1342000331,694013684,765695588,209387642,47193621,115055744,2742025739,1113880304,1245549070
20
+ 2020-34,112681686,5652385287,729177841,7604346168,1093817137,33231,1618632470,844213410,788597682,221846611,67955984,60607403,3104016495,1541991809,1414444638
21
+ 2018-34,59546733,5106106238,496468272,5840848948,768534335,17231,1258451800,839925800,704782251,164578518,63527961,119875104,2721783362,1112164806,1283465030
22
+ 2020-16,67130239,4425850715,483979552,5294258363,765555915,20363,1203135593,772057107,625796765,161555704,72682247,47590296,2639710761,1064694803,1136591564
23
+ 2018-47,77668806,5128622361,571048278,6228013878,864514276,15543,1425795059,993604516,740516703,181979170,93708105,130735062,3390294090,1330011210,1283431968
24
+ 2019-39,65761782,4428188401,485945466,5413283017,741911785,11887,1245091928,702134567,661159935,149097950,67200715,38054695,2285180225,1021208700,973558734
25
+ 2022-33,67287434,5008160776,509041879,5839201093,695060070,14861,1318953318,762876641,716306380,162505357,91354866,93113226,2824688107,1149672568,1058061748
26
+ 2021-43,69921477,6155170225,559948082,6350964494,782496102,15611,1520326615,803969925,945143402,223449237,70489131,99941046,2758208442,1226586216,1248214072
27
+ 2020-50,90723756,6129526349,634405099,6654812199,845381625,20432,1563013807,856535534,944589385,225793003,90763898,103549612,3310186362,1248001952,1297559381
28
+ 2021-25,74446959,5184775169,543259846,5586653242,741388076,11983,1555100874,837837826,788483252,191069328,89938360,47317685,2541706064,1104910076,1091365546
29
+ 2019-30,124890007,6751268889,660380349,7347261541,933599511,26492,1642181924,1032002584,1130460137,374769322,86787125,53995858,3148325497,1320518102,1401117243
30
+ 2023-14,145372696,5698838728,551312121,6674833944,829115499,26414,1559394370,793975371,1051299821,411035975,60144391,37913133,2683972795,1214563084,1164459260
31
+ 2021-21,98861765,5509718178,565823871,6802763359,767240485,71749,1410956283,773205998,977835098,361296177,74527223,41691346,2620766198,1195572764,1144261564
32
+ 2022-27,130080014,6853886794,697745556,8364269726,990736322,22151,1714386849,1056422370,1311451470,415354996,72299251,42309922,3379652410,1382994502,1344921800
33
+ 2022-05,70057048,6039261024,713904648,7127115838,1065010568,50818,1478051546,974042470,1211662711,376058007,36450257,41696873,2789197870,1238877740,1299243436
34
+ 2019-35,112558210,6561312533,810883334,7485768553,1001988531,16035,1452759073,999294699,1296757989,399766492,39839467,37613160,3031618344,1315365373,1303520908
35
+ 2018-51,80945105,5920988811,776560510,6651717501,970953307,45374,1336347548,959846176,1156222944,385149812,59024965,43346364,2630116337,1198980579,1210620680
36
+ 2019-18,116836384,5734613176,855972838,7067577500,1000513052,39994,1290381763,1025846442,1220703324,329440830,45530958,82771577,2527543682,1183094693,1179838663
37
+ 2021-04,149143242,6785893339,929661903,8439028060,1220707502,89899,1532366795,1146541615,1382033592,337962909,62655733,63072842,3410675951,1403791355,1352362184
38
+ 2019-51,128509244,6622634911,881392300,7686970167,1071378508,31224,1583914134,1096209471,1524502646,319019668,49196485,67099793,3258687332,1440598063,1549829233
39
+ 2019-26,154643827,7313365087,810477922,8241890250,958978976,154966,1590780515,1199113437,1484519837,441158929,61642146,55953388,3511098132,1406541625,1611596089
40
+ 2022-21,94602419,5401089109,606222248,5935645617,826522695,226200,1207406793,942018922,1116891104,421391587,39452288,55851406,2538263400,1040076810,1259940939
41
+ 2022-49,119508237,6141925281,722266536,7256182084,1005999769,7297,1474497756,1075863987,1335349332,364744648,44905545,53985722,3076040188,1325202679,1414108542
42
+ 2021-17,181249579,7055128011,819854397,8919232497,1140712888,4785,1785500545,1303717376,1382639241,422755290,70239832,70724541,3648240124,1572612373,1656519205
43
+ 2020-29,153877478,6693423612,903908325,8122601035,1116252416,15124,1806082123,1168333213,1391425050,377515408,96449963,80883354,3604673841,1468438643,1456594162
44
+ 2020-10,108187660,6060174346,786666034,6922365552,1023294627,8201,1554756198,985025220,1278997890,397716969,52173432,74066893,2699894162,1283561850,1244987767
45
+ 2019-47,196966793,7383670696,999351113,9629611631,1055182840,4912,1827688825,1336928655,1488969091,430302333,70622031,76514364,3635480989,1433435142,1487269500
46
+ 2023-50,219138223,8160623105,1026139836,10039614787,1132181181,8757,1954811968,1397721488,1628568808,461882553,78959908,73781653,3827049813,1656486820,1638728284
47
+ 2018-22,289499280,7854580244,1090340770,10981045796,1213860435,7499,1916672913,1436692366,1642303836,498640151,88168204,96909640,3948374053,1617550093,1655192403
48
+ 2018-43,212316694,8558469891,1112381677,10755849631,1275388118,6521,1917256962,1546281647,1589212308,535293339,107478127,104524044,3759286078,1603421893,1666441493
49
+ 2024-10,231394566,7779774340,1169268627,11055853038,1153919390,5799,1890000418,1500116395,1549573439,522423590,121570895,87169798,3755243177,1549475991,1570600831
50
+ 2018-39,205437045,9118279611,1041721226,12120342009,1263071383,8014,1988490573,1587628185,2156643470,545117692,106961748,113766285,3803681727,1664408291,1712147832
51
+ 2022-40,220044035,8521256423,935660849,11444731193,1079245805,7985,1830461775,1433995799,2116983044,456297549,77545075,106092704,3300120240,1385483042,1528393248
52
+ 2020-40,194368546,8236562624,879581253,10850524556,1103678747,0,1619949249,1547071949,2074768233,478230917,92494991,111250770,3252954493,1401013204,1571331650
scripts/merge_subdomains.py ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+
4
+ def merge_json_files(directory):
5
+ merged_data = {}
6
+
7
+ for filename in os.listdir(directory):
8
+ if filename.endswith('.json'):
9
+ language_id = filename.split('.')[0].split('_')[0]
10
+ with open(os.path.join(directory, filename), 'r') as file:
11
+ data = json.load(file)
12
+ for subdomain, num_pages in data.items():
13
+ # domain = ".".join([subdomain.split('.')[-2],subdomain.split('.')[-1]])
14
+ domain = subdomain
15
+ if domain not in merged_data:
16
+ merged_data[domain] = dict()
17
+ merged_data[domain][language_id] = num_pages
18
+ merged_data[domain]["total"] = num_pages
19
+ else:
20
+ if(language_id not in merged_data[domain].keys()):
21
+ merged_data[domain][language_id] = num_pages
22
+ else:
23
+ merged_data[domain][language_id] += num_pages
24
+ merged_data[domain]["total"] += num_pages
25
+ sorted_domains = sorted([key for key in merged_data[domain].keys() if key != 'total']) + ['total']
26
+ merged_data[domain] = {key: merged_data[domain][key] for key in sorted_domains}
27
+
28
+ return merged_data
29
+
30
+ def save_merged_data(merged_data, output_file):
31
+ sorted_dict = dict(sorted(merged_data.items(), key=lambda m:m[1]["total"], reverse=True))
32
+ print(len(sorted_dict.keys()))
33
+ print(len([domain for domain in sorted_dict.keys() if sorted_dict[domain]["total"] >= 100]))
34
+ # with open(output_file, 'w') as file:
35
+ # json.dump(sorted_dict, file, indent=4)
36
+
37
+ directory_path = "/mnt/weka/peacock/wet-data/output/domain_list_non_toxic"
38
+ output_file_path = "/mnt/weka/peacock/wet-data/output/merged_data.json"
39
+
40
+ merged_data = merge_json_files(directory_path)
41
+ save_merged_data(merged_data, output_file_path)
scripts/mined.csv ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ snapshot-id,as,bn,gu,hi,kn,mai,ml,mr,ne,or,sa,sd,ta,te,ur
2
+ 2019-22,9413855,988878491,116293757,2287934430,114684498,4606,376958251,172416983,186178781,16161255,8991346,15736825,1130941708,204565177,474513299
3
+ 2018-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
4
+ 2018-51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
5
+ 2020-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
6
+ 2022-40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
7
+ 2018-39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
8
+ 2023-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
9
+ 2020-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
10
+ 2019-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
11
+ 2022-33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
12
+ 2020-10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
13
+ 2021-17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
14
+ 2019-43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
15
+ 2018-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
16
+ 2021-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
17
+ 2018-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
18
+ 2019-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
19
+ 2018-17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
20
+ 2020-45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
21
+ 2018-47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
22
+ 2019-18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
23
+ 2021-10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
24
+ 2019-51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
25
+ 2023-40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
26
+ 2023-50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
27
+ 2021-49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
28
+ 2019-35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
29
+ 2021-39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
30
+ 2023-06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
31
+ 2020-16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
32
+ 2020-34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
33
+ 2020-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
34
+ 2019-13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
35
+ 2019-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
36
+ 2021-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
37
+ 2022-49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
38
+ 2018-34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
39
+ 2019-09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
40
+ 2021-21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
41
+ 2022-21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
42
+ 2022-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
43
+ 2020-50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
44
+ 2023-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
45
+ 2019-47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
46
+ 2022-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
47
+ 2020-40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
48
+ 2019-39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
49
+ 2021-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
50
+ 2024-10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
51
+ 2018-43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
52
+ 2021-43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
scripts/mined_token_counts.csv ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ snapshot-id,as,bn,gu,hi,kn,mai,ml,mr,ne,or,sa,sd,ta,te,ur
2
+ 2019-22,39072921,3813655297,428848555,5347432710,527502845,12603,1753271170,546904860,569489015,96626072,37127825,41007165,4035818271,808841016,1027763654
3
+ 2018-22,31516426,3791331966,428061100,5646752192,542935390,6067,2009477173,604625836,521338192,101530964,33309220,46705566,4175086647,832456106,1030067219
4
+ 2018-51,53226132,4328629312,565428174,6289251368,674249053,11983,2207955506,677675422,765291271,107444814,41234421,63261787,5001537876,956653211,1264015559
5
+ 2020-29,57780143,4815557402,653480919,8338766654,1005582829,8215,3094621423,759067016,735503424,154142451,36738631,61005261,6452900063,1354643128,1324838308
6
+ 2022-40,59012660,4081935673,405647955,4970989529,592736864,14799,1257000778,557062557,632982542,179291394,28992416,51272986,3118477831,829879590,1214058099
7
+ 2018-39,80988108,7842162845,766050029,8185513685,1299720080,5444,2350697197,1087459288,1151940872,279719097,33371491,173609936,5034102606,1566780430,2175782435
8
+ 2023-23,62064519,5258407140,491773491,5869213872,888158316,18369,1544598740,968934253,921377431,253558280,34404760,53905745,3630248332,1114129985,1459142867
9
+ 2020-24,72671736,6562527674,668037223,7477393337,1287854556,790,2138316505,1051190844,1108075045,253121347,58289749,187383317,4458882713,1532157954,1600906673
10
+ 2019-30,68503649,5702339790,550850228,6415540154,971832237,8068,1468377552,786546589,983216639,261325754,34964896,59183117,3473306706,1128800898,1624607015
11
+ 2022-33,100915063,7061837340,626741607,7578033804,1000922214,10932,1911781863,1071825896,1054928360,249209200,29201696,115219408,4219842109,1503769818,1493300434
12
+ 2020-10,60108036,6499263917,625479909,6965237128,858349669,6072,1845128825,948422341,1240314477,267704517,97713451,89312585,3745214267,1557758650,1354879458
13
+ 2021-17,95629911,4962830467,537015633,6099723293,709982425,0,1398219460,912188272,801078537,190785851,27497289,88342204,2884801333,1235215828,1079138719
14
+ 2019-43,72349013,5228656700,559181368,7733385489,709710537,6930,1553429885,917944604,856940820,216153243,43131552,68663379,3359253172,1321069503,1207403404
15
+ 2018-30,87205528,5811980953,640475824,6882385138,774543106,16850,1909048137,848860462,1100000147,201879401,42158359,124195406,4049833611,1264990346,1230159145
16
+ 2021-31,85580156,5912456215,694833083,8019651555,928447857,19291,1925127823,920481581,1022698044,202522509,131980263,40822660,5191423658,1382185518,1421143711
17
+ 2018-26,131163524,6706951061,789071640,9614670248,1070472741,12321,2268024101,1062482244,1305711114,239832808,198847499,122048483,5558601829,1557730066,1570388065
18
+ 2019-04,95289930,7717825869,857812841,10865272230,1113908870,24669,2421358049,1134220956,1178632917,341779232,154058823,68395676,7362576633,1830875738,1641045987
19
+ 2018-17,85748302,7363557179,902879655,10122592569,1290484514,13734,2355339839,1278959508,1012786598,253364747,179540137,124785101,8144387427,1670660523,1638779829
20
+ 2020-45,198300953,8399753311,1060266834,12573149757,1549545778,33231,2781346552,1350219733,1075725681,320786044,155682802,71165590,11859763820,2366372355,1872475620
21
+ 2018-47,85808265,7470046438,812906639,9335177997,1033895027,17231,2447834760,1451229235,971994268,177919967,81279117,129528378,8684417423,1787745084,1934938091
22
+ 2019-18,90715057,6607642255,791547031,8914489607,1115800768,20363,2199187498,1287309319,839565397,172705855,90602224,54763002,8809018070,1876999950,1719761688
23
+ 2021-10,106574867,7846845181,1041452568,10307636028,1272209231,15543,2821561413,1662917059,1180705711,199083464,225732705,145371058,10717622464,2425565619,1758233641
24
+ 2019-51,96385717,6320084333,786553599,8624679927,1057735780,11887,2235599381,1133991948,834035000,160623940,89087496,47774740,7702621689,1584346893,1274517399
25
+ 2023-40,85796586,7789275444,862312615,10112687746,1101336248,14861,2591425884,1429273421,990731979,181308895,115213589,115388314,8094422131,1873800464,1477889980
26
+ 2023-50,90946945,8767646649,1000477904,10502996679,1115706980,17104,2758310721,1261308313,1236841606,239762617,87616545,123255567,7588186554,1929417507,1710213511
27
+ 2021-49,118928333,9117117255,1080165482,11200558421,1307324402,24804,2980917457,1473601365,1230351651,249429587,112376178,125612039,9129799999,2128428947,1736695294
28
+ 2019-35,107566444,7699137715,889833626,10084050274,1102427456,11983,2866693442,1331984600,1073952331,205702077,104395973,68753581,8720683293,2065122814,1428357316
29
+ 2021-39,160915238,9456552411,1060491369,11288122331,1377233341,26492,3424081848,1422533771,1507927295,407063409,101703803,74085653,7491650381,2045667337,1771483062
30
+ 2023-06,206128269,8645543120,953125919,10760365132,1101741486,35473,3035533911,1215054187,1377448477,459199150,70498005,65585891,7798253914,2153440050,1522193629
31
+ 2020-16,112115039,8080381018,864808114,10357897800,1017180420,71749,2318076537,1165947949,1215098884,404416654,85531671,55255827,6909791258,1970348160,1485620090
32
+ 2020-34,149373341,10812995080,1052584402,12796143535,1311066749,27220,3714130001,1581339121,1662465160,461990828,83620220,54280133,7953236997,2225958996,1728002733
33
+ 2020-05,79955821,8866601356,963090513,10577627303,1383194552,50818,2528919698,1485046575,1549513661,417058745,40818947,58935856,4048917000,1866726399,1701731781
34
+ 2019-13,137170188,10236600505,1132837039,11402196180,1379527452,16035,2985438173,1432884712,1680115365,445390009,44817062,53592387,4575015292,1877574668,1872929024
35
+ 2019-26,92777881,8829410500,1146802194,9964943808,1349575526,45374,3085589727,1361019145,1523148413,428206768,65556634,54221419,3910728327,1780662951,1582311761
36
+ 2021-25,128645830,8333493272,1247608741,9856755058,1422269176,47174,2128116568,1575281499,1523982187,369442861,51548920,94438220,4067169336,1751969394,1519521001
37
+ 2022-49,181759526,9931960929,1721620062,12016205574,1806107008,156032,3338277843,1670637387,1805452996,375853447,69849161,83613721,5849137623,2164545441,1835866678
38
+ 2018-34,196032700,9807888072,1776452951,10899323687,1704940992,31224,2966251248,1680952521,2004444656,360930326,66277329,86935411,5486603396,2266046655,1955186586
39
+ 2019-09,206488093,10922429948,1773127648,11987927417,1503242970,255687,3431188932,1673192573,2288398016,500614301,76910815,63754805,6084428839,2197475187,2071375478
40
+ 2021-21,128825053,7847133209,1478960321,8937644330,1266429751,307699,1994458254,1222437215,1533028413,472653419,58638129,63152337,4121130685,1482297798,1629765216
41
+ 2022-21,199212855,8697988095,1772491968,10138345421,1419461545,7297,2396237414,1436790950,1904318120,402318983,67173048,66268162,5196604747,1811099954,1818292661
42
+ 2022-27,246051216,10761146380,2014363105,12369033456,1679361131,4785,2714740373,1760058793,2018052494,460935709,189380082,87206375,6060091828,2116294272,2201078855
43
+ 2020-50,232326353,9665938194,2179808409,11667136752,1526332222,15124,2874393554,1634350662,2183724755,426081046,199499760,100146477,5960990898,2145709239,1829406472
44
+ 2023-14,142763066,8521289188,1792480540,10108449964,1379244126,8201,2344693020,1293337679,2010027315,443265863,98256958,83485598,4426101139,1714463476,1572142075
45
+ 2019-47,241121459,10791479327,2114916805,13201445408,1529051697,4912,2730229084,1716328979,2125382094,573767122,100527147,90575717,5771073140,2093724702,1877027262
46
+ 2022-05,281693564,11444600214,2158348195,13570392887,1550022981,8757,2991876823,1922287653,2233425194,519787305,275878015,97057935,6240019672,2245286458,2081715991
47
+ 2020-40,341562616,10763852743,1393187599,14334401978,1634247673,7499,2943822524,1893796560,2222293576,564362936,154558524,117487090,5661395358,2182397021,2246341757
48
+ 2019-39,254432575,11470269642,1459582811,14029443460,1711483145,6521,2770042589,2031040479,2251208988,591213197,218636695,117557384,5481243337,2227280159,2429229171
49
+ 2021-04,276672486,10638719505,1572078705,14356008918,1589062735,9460,2790807079,1945543225,2278783744,582834996,320775464,101859203,5600061505,2108724407,2060266296
50
+ 2024-10,283222027,12477904894,1591448844,15486542962,1783161667,8014,2958000005,2133815849,2932257926,605702876,209745517,132019009,5730496288,2397008591,2227768803
51
+ 2018-43,283741845,11375605709,1640828826,14868617117,1471087947,7985,2978289146,1912529313,2776490530,531719130,153397273,126053024,4868105498,1898808935,1959670243
52
+ 2021-43,214801441,11207955054,1637079841,13735558182,1445812620,0,2600105590,2043277382,2774901117,584964194,185189841,128478518,4867719908,1876900668,1972628028
scripts/mined_token_counts_dummy.csv ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ snapshot-id,as,bn,gu,hi,kn,mai,ml,mr,ne,or,sa,sd,ta,te,ur
2
+ 2018-17,39072921,3813655297,428848555,5347432710,527502845,12603,1753271170,546904860,569489015,96626072,37127825,41007165,4035818271,808841016,1027763654
3
+ 2018-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
4
+ 2018-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
5
+ 2018-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
6
+ 2018-34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
7
+ 2018-39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
8
+ 2018-43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
9
+ 2018-47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
10
+ 2018-51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
11
+ 2019-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
12
+ 2019-09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
13
+ 2019-13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
14
+ 2019-18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
15
+ 2019-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
16
+ 2019-26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
17
+ 2019-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
18
+ 2019-35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
19
+ 2019-39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
20
+ 2019-43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
21
+ 2019-47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
22
+ 2019-51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
23
+ 2020-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
24
+ 2020-10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
25
+ 2020-16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
26
+ 2020-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
27
+ 2020-29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
28
+ 2020-34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
29
+ 2020-40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
30
+ 2020-45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
31
+ 2020-50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
32
+ 2021-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
33
+ 2021-10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
34
+ 2021-17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
35
+ 2021-21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
36
+ 2021-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
37
+ 2021-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
38
+ 2021-39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
39
+ 2021-43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
40
+ 2021-49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
41
+ 2022-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
42
+ 2022-21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
43
+ 2022-27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
44
+ 2022-33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
45
+ 2022-40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
46
+ 2022-49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
47
+ 2023-06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
48
+ 2023-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
49
+ 2023-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
50
+ 2023-40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
51
+ 2023-50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
52
+ 2024-10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
scripts/mined_word_counts.csv ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ snapshot-id,as,bn,gu,hi,kn,mai,ml,mr,ne,or,sa,sd,ta,te,ur
2
+ 2019-22,9413855,988878491,116293757,2287934430,114684498,4606,376958251,172416983,186178781,16161255,8991346,15736825,1130941708,204565177,474513299
3
+ 2018-22,7898638,985201732,118122924,2431027233,126118685,2107,440294818,194730414,170924004,18098750,8434519,17948803,1174764051,212120045,470306954
4
+ 2018-51,12817174,1128714919,156289661,2726374209,154528705,4302,476345299,215796448,247281753,19502970,9854826,24246716,1402819261,241611222,579939129
5
+ 2020-29,14239989,1234886882,181634646,3594705181,237331334,3022,690608819,241542975,240244840,27192496,8811950,23407185,1823166901,351711775,605390037
6
+ 2022-40,15402518,1054292022,111350642,2135207022,134622853,5274,276181612,175917238,204983845,30939722,7217155,19786276,882943288,210307213,552091804
7
+ 2018-39,18858832,1984000351,210763999,3447242933,290834181,1914,498002644,346640654,362407480,48661563,7976097,66813778,1403375864,379475976,986177932
8
+ 2023-23,14799106,1343202849,135773322,2515175845,199579381,6668,336636066,314116352,294442292,43157335,8456402,20693772,1032775865,278416803,661974458
9
+ 2020-24,17179013,1672825671,187150356,3193268431,286242656,271,453967185,333821416,348319761,45366611,14064967,72636405,1227988998,373334331,731343520
10
+ 2019-30,16085437,1459351311,151082675,2776758399,216423446,2922,321481289,248596850,314849708,45603827,8754591,22836619,980365602,281072706,734735026
11
+ 2022-33,24012254,1799577072,174210576,3271628128,231698066,3906,416326162,345046161,336095312,44965869,7513190,44640069,1179761139,370117172,679093117
12
+ 2020-10,14709124,1678597483,177039284,3030259746,196367382,2141,399813765,300988300,391121662,48244462,23532951,34728269,1041522895,382944933,622196922
13
+ 2021-17,22621447,1287119543,145541466,2649394817,164859295,0,300365902,295040790,256667587,34962290,6807785,34290317,804348852,301403656,497819178
14
+ 2019-43,17413168,1369936826,158400696,3308119321,164656940,2402,327811096,293760565,273927169,39229211,10552356,26574055,927003480,332679866,550514433
15
+ 2018-30,20893554,1511299757,182931307,2922736809,183099070,5778,412133871,268400730,362527689,36167320,10325645,48601653,1132479463,330826683,562498133
16
+ 2021-31,20315212,1545490378,199336166,3410020253,216139560,6850,408609628,289797980,326929744,36764575,29267577,15371207,1472400854,356785386,636524006
17
+ 2018-26,30762619,1747626197,230944184,4039135497,251915996,4171,488397440,333605056,414275461,43360009,43035612,47569371,1595876966,409499513,702688248
18
+ 2019-04,22810606,2002944542,246080706,4538087991,254139903,8719,508336395,356649216,380187861,59925317,34485008,25896050,2183911611,481889050,738557881
19
+ 2018-17,20391577,1896016548,257397653,4189807459,295850173,4645,483400029,401323391,327771642,45003357,39614898,48477316,2536664053,433908692,743144560
20
+ 2020-45,45966979,2165688648,304620673,5148477759,365216625,11739,574056307,417955895,347493232,54597433,35283461,27030098,3918146714,621712866,840806120
21
+ 2018-47,20602916,1915894706,232302929,3858527431,234469125,5774,490254005,457095779,310803008,31700352,19007269,49755123,2749569370,466346173,832749791
22
+ 2019-18,21656466,1705255081,226730162,3678031329,248440533,7185,444059858,406758270,268618674,30464866,21174548,21142955,2808660930,494234880,731530489
23
+ 2021-10,25734024,2025449030,290943320,4312873134,286290788,5191,565503459,527355230,373321485,35786481,54605188,56621904,3357251570,636765687,771777307
24
+ 2019-51,22806886,1623888842,224510529,3585333782,240861738,4160,447659498,359205062,267707255,28594577,20964480,18398158,2502220998,413568698,571663926
25
+ 2023-40,20888011,1999329191,249028042,4198645903,247377289,4943,508728469,453058753,319944825,31707494,27306712,44307957,2512828154,493417850,662626016
26
+ 2023-50,21744155,2253303918,294841306,4348984798,250496014,5881,544507421,394200887,397365765,42008845,20772954,46957192,2363137257,494656463,768870515
27
+ 2021-49,28440357,2342531059,323402051,4674404187,294697500,8647,595643323,465661486,399592127,44879329,26524271,48297536,2805205522,555305155,782360230
28
+ 2019-35,25443750,1974025711,258752173,4144636432,248970523,3938,564493077,424460882,344937028,36875812,24498598,27250436,2830631235,536981104,639541088
29
+ 2021-39,38155597,2449259791,299206032,4791695802,311791675,9752,708119201,451959547,489206293,74702225,23368790,28346147,2318809490,528853583,806863196
30
+ 2023-06,48551458,2226539236,259306570,4539539828,250993703,12537,619137256,393872912,446487834,81204804,16414335,25791512,2464276651,560731265,681220079
31
+ 2020-16,27452630,2071399919,245320623,4365580670,227994770,32123,497269455,368218912,394012250,71802873,19776157,21019809,2193115038,517378173,666800625
32
+ 2020-34,36289387,2779727345,303430752,5437727909,290254751,9650,775067689,509031214,535925569,81734175,19535852,20686581,2448734864,579444798,787097064
33
+ 2020-05,20039611,2286140633,274340303,4504236261,300523066,24245,548926636,469723157,496497475,74640434,9631704,21632047,1106251987,506320456,780162139
34
+ 2019-13,33375213,2658201993,319315835,4878822166,299118897,6405,629974101,460286473,540600696,80444356,10730016,20340850,1253595868,503400662,852997763
35
+ 2019-26,23056947,2275606686,328618892,4264844561,294102160,22315,616739837,434963748,487151336,77539442,15897712,20504872,1072874784,465701266,716165914
36
+ 2021-25,31703329,2157766369,355277385,4256237370,314075445,18668,463394986,498304403,494060437,68258927,12084815,36511470,1120144909,436693863,691207182
37
+ 2022-49,44585882,2592358193,500029351,5151905924,392823543,68972,680171310,526037873,579704965,69701163,16518989,31221186,1596727363,538493923,830881489
38
+ 2018-34,46069485,2530849912,514458019,4690369204,369090499,12242,631026466,530839149,649397763,66463799,16070359,32758392,1504535495,552240626,910861703
39
+ 2019-09,50652661,2819990255,526079033,5153777805,321393876,87076,693111661,532558232,738416055,91257551,18333787,24174322,1672061613,541674101,961196995
40
+ 2021-21,32191328,2040168639,440925959,3889943826,270902028,112438,423465315,387964647,489454720,85899845,14189734,24184665,1132631326,365053463,746868945
41
+ 2022-21,47628337,2284272508,528925877,4390188164,305947428,2510,517816422,459358531,609329012,73209271,15962712,25193235,1428091276,446870722,837483799
42
+ 2022-27,60100736,2812524860,596131752,5384255487,366562717,1436,595271060,562976855,645660987,85633766,47059665,32208676,1656830599,531114603,1019267738
43
+ 2020-50,59079520,2530536726,623430478,5069987512,335023774,6049,625762828,523007081,692424192,77588988,46615817,36922888,1606465838,527884774,840636741
44
+ 2023-14,36097416,2224261179,534846917,4422581849,301347575,3160,506294716,415388601,640036509,81272641,23726495,30870768,1208265180,425237630,714998498
45
+ 2019-47,61941196,2835815102,626897858,5769370864,341288758,1760,595127079,549835609,680369537,109263916,23416041,33529957,1582965326,526556327,864845045
46
+ 2022-05,71604079,2997780530,643779387,5970041190,350280944,3324,651796634,616245357,715076272,95580295,60175680,36049891,1704819255,583001234,963014720
47
+ 2020-40,87349574,2829134115,393972377,6332799782,366740329,2547,639858580,610199243,708081111,104637948,35601303,43983557,1539758262,570560397,1022006731
48
+ 2019-39,65572016,3007822938,410855558,6196680537,377950337,2649,598286875,655069232,715001040,109695549,49849472,43686227,1468496354,554610618,1103401519
49
+ 2021-04,70116067,2800620153,448228299,6346791085,353268640,3223,594771119,628860745,722234228,108624339,71584670,38245372,1518350565,526683654,948356578
50
+ 2024-10,68825988,3293819465,421993395,6884325204,391503327,3247,628916747,693381079,927083540,112004274,47877129,49491898,1532623880,598286058,1014751437
51
+ 2018-43,73715637,3020400255,407239577,6571452487,325908058,3544,615099174,618008710,878358973,98749670,35676868,47293136,1333094257,479647668,891175621
52
+ 2021-43,55093119,2971136586,395683069,6057869359,323019415,0,552581058,654375240,875663002,106488795,42548803,48087227,1310694308,471137020,904409117
scripts/myenv/lib/python3.10/site-packages/pip-22.0.2.dist-info/INSTALLER ADDED
@@ -0,0 +1 @@
 
 
1
+ pip
scripts/myenv/lib/python3.10/site-packages/pip-22.0.2.dist-info/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Copyright (c) 2008-present The pip developers (see AUTHORS.txt file)
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
scripts/myenv/lib/python3.10/site-packages/pip-22.0.2.dist-info/METADATA ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Metadata-Version: 2.1
2
+ Name: pip
3
+ Version: 22.0.2
4
+ Summary: The PyPA recommended tool for installing Python packages.
5
+ Home-page: https://pip.pypa.io/
6
+ Author: The pip developers
7
+ Author-email: [email protected]
8
+ License: MIT
9
+ Project-URL: Documentation, https://pip.pypa.io
10
+ Project-URL: Source, https://github.com/pypa/pip
11
+ Project-URL: Changelog, https://pip.pypa.io/en/stable/news/
12
+ Platform: UNKNOWN
13
+ Classifier: Development Status :: 5 - Production/Stable
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Topic :: Software Development :: Build Tools
17
+ Classifier: Programming Language :: Python
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3 :: Only
20
+ Classifier: Programming Language :: Python :: 3.7
21
+ Classifier: Programming Language :: Python :: 3.8
22
+ Classifier: Programming Language :: Python :: 3.9
23
+ Classifier: Programming Language :: Python :: 3.10
24
+ Classifier: Programming Language :: Python :: Implementation :: CPython
25
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
26
+ Requires-Python: >=3.7
27
+ License-File: LICENSE.txt
28
+
29
+ pip - The Python Package Installer
30
+ ==================================
31
+
32
+ .. image:: https://img.shields.io/pypi/v/pip.svg
33
+ :target: https://pypi.org/project/pip/
34
+
35
+ .. image:: https://readthedocs.org/projects/pip/badge/?version=latest
36
+ :target: https://pip.pypa.io/en/latest
37
+
38
+ pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes.
39
+
40
+ Please take a look at our documentation for how to install and use pip:
41
+
42
+ * `Installation`_
43
+ * `Usage`_
44
+
45
+ We release updates regularly, with a new version every 3 months. Find more details in our documentation:
46
+
47
+ * `Release notes`_
48
+ * `Release process`_
49
+
50
+ In pip 20.3, we've `made a big improvement to the heart of pip`_; `learn more`_. We want your input, so `sign up for our user experience research studies`_ to help us do it right.
51
+
52
+ **Note**: pip 21.0, in January 2021, removed Python 2 support, per pip's `Python 2 support policy`_. Please migrate to Python 3.
53
+
54
+ If you find bugs, need help, or want to talk to the developers, please use our mailing lists or chat rooms:
55
+
56
+ * `Issue tracking`_
57
+ * `Discourse channel`_
58
+ * `User IRC`_
59
+
60
+ If you want to get involved head over to GitHub to get the source code, look at our development documentation and feel free to jump on the developer mailing lists and chat rooms:
61
+
62
+ * `GitHub page`_
63
+ * `Development documentation`_
64
+ * `Development mailing list`_
65
+ * `Development IRC`_
66
+
67
+ Code of Conduct
68
+ ---------------
69
+
70
+ Everyone interacting in the pip project's codebases, issue trackers, chat
71
+ rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_.
72
+
73
+ .. _package installer: https://packaging.python.org/guides/tool-recommendations/
74
+ .. _Python Package Index: https://pypi.org
75
+ .. _Installation: https://pip.pypa.io/en/stable/installation/
76
+ .. _Usage: https://pip.pypa.io/en/stable/
77
+ .. _Release notes: https://pip.pypa.io/en/stable/news.html
78
+ .. _Release process: https://pip.pypa.io/en/latest/development/release-process/
79
+ .. _GitHub page: https://github.com/pypa/pip
80
+ .. _Development documentation: https://pip.pypa.io/en/latest/development
81
+ .. _made a big improvement to the heart of pip: https://pyfound.blogspot.com/2020/11/pip-20-3-new-resolver.html
82
+ .. _learn more: https://pip.pypa.io/en/latest/user_guide/#changes-to-the-pip-dependency-resolver-in-20-3-2020
83
+ .. _sign up for our user experience research studies: https://pyfound.blogspot.com/2020/03/new-pip-resolver-to-roll-out-this-year.html
84
+ .. _Python 2 support policy: https://pip.pypa.io/en/latest/development/release-process/#python-2-support
85
+ .. _Issue tracking: https://github.com/pypa/pip/issues
86
+ .. _Discourse channel: https://discuss.python.org/c/packaging
87
+ .. _Development mailing list: https://mail.python.org/mailman3/lists/distutils-sig.python.org/
88
+ .. _User IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa
89
+ .. _Development IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa-dev
90
+ .. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md
91
+
92
+
scripts/myenv/lib/python3.10/site-packages/pip-22.0.2.dist-info/RECORD ADDED
@@ -0,0 +1,1037 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ../../../bin/pip,sha256=WXcq1EMacLteBM5v5zTQkm_MMhS2kd5KV8S4u_I_URA,257
2
+ ../../../bin/pip3,sha256=WXcq1EMacLteBM5v5zTQkm_MMhS2kd5KV8S4u_I_URA,257
3
+ ../../../bin/pip3.10,sha256=WXcq1EMacLteBM5v5zTQkm_MMhS2kd5KV8S4u_I_URA,257
4
+ ../../../bin/pip3.10,sha256=WXcq1EMacLteBM5v5zTQkm_MMhS2kd5KV8S4u_I_URA,257
5
+ pip-22.0.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
6
+ pip-22.0.2.dist-info/LICENSE.txt,sha256=Y0MApmnUmurmWxLGxIySTFGkzfPR_whtw0VtyLyqIQQ,1093
7
+ pip-22.0.2.dist-info/METADATA,sha256=Yixa0LKkyzjT2N5JQO5qYDgZcmTs6Z6dg4UbwBNyT2A,4166
8
+ pip-22.0.2.dist-info/RECORD,,
9
+ pip-22.0.2.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ pip-22.0.2.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
11
+ pip-22.0.2.dist-info/entry_points.txt,sha256=vUvIlB_ga0fFQuWvFEq6uJKftMG_HNuoe4kgXkb5rNY,126
12
+ pip-22.0.2.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
13
+ pip/__init__.py,sha256=PZBF-ESk5Q0DZxQd4HHmTU_wX8y1ynzxBCRdu_fxHSI,357
14
+ pip/__main__.py,sha256=mXwWDftNLMKfwVqKFWGE_uuBZvGSIiUELhLkeysIuZc,1198
15
+ pip/__pycache__/__init__.cpython-310.pyc,,
16
+ pip/__pycache__/__main__.cpython-310.pyc,,
17
+ pip/_internal/__init__.py,sha256=nnFCuxrPMgALrIDxSoy-H6Zj4W4UY60D-uL1aJyq0pc,573
18
+ pip/_internal/__pycache__/__init__.cpython-310.pyc,,
19
+ pip/_internal/__pycache__/build_env.cpython-310.pyc,,
20
+ pip/_internal/__pycache__/cache.cpython-310.pyc,,
21
+ pip/_internal/__pycache__/configuration.cpython-310.pyc,,
22
+ pip/_internal/__pycache__/exceptions.cpython-310.pyc,,
23
+ pip/_internal/__pycache__/main.cpython-310.pyc,,
24
+ pip/_internal/__pycache__/pyproject.cpython-310.pyc,,
25
+ pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc,,
26
+ pip/_internal/__pycache__/wheel_builder.cpython-310.pyc,,
27
+ pip/_internal/build_env.py,sha256=QAsnxJFvj74jS2cZUcxk7zXLvrtAYiRL0EkSPkpSJTo,9739
28
+ pip/_internal/cache.py,sha256=71eaYwrls34HJ6gzbmmYiotiKhPNFTM_tqYJXD5nf3s,9441
29
+ pip/_internal/cli/__init__.py,sha256=FkHBgpxxb-_gd6r1FjnNhfMOzAUYyXoXKJ6abijfcFU,132
30
+ pip/_internal/cli/__pycache__/__init__.cpython-310.pyc,,
31
+ pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc,,
32
+ pip/_internal/cli/__pycache__/base_command.cpython-310.pyc,,
33
+ pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc,,
34
+ pip/_internal/cli/__pycache__/command_context.cpython-310.pyc,,
35
+ pip/_internal/cli/__pycache__/main.cpython-310.pyc,,
36
+ pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc,,
37
+ pip/_internal/cli/__pycache__/parser.cpython-310.pyc,,
38
+ pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc,,
39
+ pip/_internal/cli/__pycache__/req_command.cpython-310.pyc,,
40
+ pip/_internal/cli/__pycache__/spinners.cpython-310.pyc,,
41
+ pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc,,
42
+ pip/_internal/cli/autocompletion.py,sha256=wY2JPZY2Eji1vhR7bVo-yCBPJ9LCy6P80iOAhZD1Vi8,6676
43
+ pip/_internal/cli/base_command.py,sha256=6IVFmOjObv0ILip28QcgP8glhXHiGRvU_9kO35Hr7Z0,8037
44
+ pip/_internal/cli/cmdoptions.py,sha256=GT2G2YKBj-851qGseugn2Veq7fJe3FA30gWdcziPQvo,28525
45
+ pip/_internal/cli/command_context.py,sha256=a1pBBvvGLDiZ1Kw64_4tT6HmRTwYDoYy8JFgG5Czn7s,760
46
+ pip/_internal/cli/main.py,sha256=ioJ8IVlb2K1qLOxR-tXkee9lURhYV89CDM71MKag7YY,2472
47
+ pip/_internal/cli/main_parser.py,sha256=Q9TnytfuC5Z2JSjBFWVGtEdYLFy7rukNIb04movHdAo,2614
48
+ pip/_internal/cli/parser.py,sha256=CDXTuFr2UD8ozOlZYf1KDziQdo9-X_IaYOiUcyJQwrA,10788
49
+ pip/_internal/cli/progress_bars.py,sha256=_52w11WoZrvDSR3oItLWvLrEZFUKAfLf4Y6I6WtOnIU,10339
50
+ pip/_internal/cli/req_command.py,sha256=VwqonOy18QwZsRsVjHhp-6w15fG9x3Ltwoa8yJqQno8,18669
51
+ pip/_internal/cli/spinners.py,sha256=TFhjxtOnLeNJ5YmRvQm4eKPgPbJNkZiqO8jOXuxRaYU,5076
52
+ pip/_internal/cli/status_codes.py,sha256=sEFHUaUJbqv8iArL3HAtcztWZmGOFX01hTesSytDEh0,116
53
+ pip/_internal/commands/__init__.py,sha256=Vc1HjsLEtyCh7506OozPHPKXe2Hk-z9cFkFF3BMj1lM,3736
54
+ pip/_internal/commands/__pycache__/__init__.cpython-310.pyc,,
55
+ pip/_internal/commands/__pycache__/cache.cpython-310.pyc,,
56
+ pip/_internal/commands/__pycache__/check.cpython-310.pyc,,
57
+ pip/_internal/commands/__pycache__/completion.cpython-310.pyc,,
58
+ pip/_internal/commands/__pycache__/configuration.cpython-310.pyc,,
59
+ pip/_internal/commands/__pycache__/debug.cpython-310.pyc,,
60
+ pip/_internal/commands/__pycache__/download.cpython-310.pyc,,
61
+ pip/_internal/commands/__pycache__/freeze.cpython-310.pyc,,
62
+ pip/_internal/commands/__pycache__/hash.cpython-310.pyc,,
63
+ pip/_internal/commands/__pycache__/help.cpython-310.pyc,,
64
+ pip/_internal/commands/__pycache__/index.cpython-310.pyc,,
65
+ pip/_internal/commands/__pycache__/install.cpython-310.pyc,,
66
+ pip/_internal/commands/__pycache__/list.cpython-310.pyc,,
67
+ pip/_internal/commands/__pycache__/search.cpython-310.pyc,,
68
+ pip/_internal/commands/__pycache__/show.cpython-310.pyc,,
69
+ pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc,,
70
+ pip/_internal/commands/__pycache__/wheel.cpython-310.pyc,,
71
+ pip/_internal/commands/cache.py,sha256=p9gvc6W_xgxE2zO0o8NXqO1gGJEinEK42qEC-a7Cnuk,7524
72
+ pip/_internal/commands/check.py,sha256=0gjXR7j36xJT5cs2heYU_dfOfpnFfzX8OoPNNoKhqdM,1685
73
+ pip/_internal/commands/completion.py,sha256=kTG_I1VR3N5kGC4Ma9pQTSoY9Q1URCrNyseHSQ-rCL4,2958
74
+ pip/_internal/commands/configuration.py,sha256=arE8vLstjBg-Ar1krXF-bBmT1qBtnL7Fpk-NVh38a0U,8944
75
+ pip/_internal/commands/debug.py,sha256=krET-y45CnQzXwKR1qA3M_tJE4LE2vnQtm3yfGyDSnE,6629
76
+ pip/_internal/commands/download.py,sha256=gVIAEOcpWolhRj9hl89Qzn52G2b_pcZ8naXhxaXobdo,4942
77
+ pip/_internal/commands/freeze.py,sha256=PaJJB9mT_3vHeZ3mbFL_m1fzTYL-_Or3kDtXwTdZZ-A,2968
78
+ pip/_internal/commands/hash.py,sha256=EVVOuvGtoPEdFi8SNnmdqlCQrhCxV-kJsdwtdcCnXGQ,1703
79
+ pip/_internal/commands/help.py,sha256=gcc6QDkcgHMOuAn5UxaZwAStsRBrnGSn_yxjS57JIoM,1132
80
+ pip/_internal/commands/index.py,sha256=8pYkICUJlccjm3E83b7UuZ5DtOfLh1N7ZHXAgkajjHo,4849
81
+ pip/_internal/commands/install.py,sha256=YVygBF6vfrNi0jmdNBCM6bcoWb7vaALEGG1--8Mmf88,27893
82
+ pip/_internal/commands/list.py,sha256=aKt1PP7enTiNLD_1qDXXaIKQ2QvLmUDfoQU6SYxJ8Ek,12318
83
+ pip/_internal/commands/search.py,sha256=sbBZiARRc050QquOKcCvOr2K3XLsoYebLKZGRi__iUI,5697
84
+ pip/_internal/commands/show.py,sha256=2VicM3jF0YWgn4O1jG_QF5oxOT0ln57VDu1NE6hqWcM,5859
85
+ pip/_internal/commands/uninstall.py,sha256=DNTYAGJNljMO_YYBxrpcwj0FEl7lo_P55_98O6g2TNk,3526
86
+ pip/_internal/commands/wheel.py,sha256=7HAjLclZxIzBrX6JmhmGBVxH5xrjaBYCtSdpQi1pWCE,6206
87
+ pip/_internal/configuration.py,sha256=qmCX3uuVM73PQeAuWQHic22bhops8s31B8k02nFAoiQ,13171
88
+ pip/_internal/distributions/__init__.py,sha256=Hq6kt6gXBgjNit5hTTWLAzeCNOKoB-N0pGYSqehrli8,858
89
+ pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc,,
90
+ pip/_internal/distributions/__pycache__/base.cpython-310.pyc,,
91
+ pip/_internal/distributions/__pycache__/installed.cpython-310.pyc,,
92
+ pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc,,
93
+ pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc,,
94
+ pip/_internal/distributions/base.py,sha256=3FUYD8Gb4YuSu3pggC_FRctZBDbpm5ZK89tPksIUjoE,1172
95
+ pip/_internal/distributions/installed.py,sha256=HzfNRu3smoOm54m8H2iK6LHzBx6_DEnka4OPEsizbXg,680
96
+ pip/_internal/distributions/sdist.py,sha256=0nJvU1RhZtbwaeYtLbzSwYrbGRcY6IgNsWdEhAHROK8,5499
97
+ pip/_internal/distributions/wheel.py,sha256=-NgzdIs-w_hcer_U81yzgpVTljJRg5m79xufqvbjv0s,1115
98
+ pip/_internal/exceptions.py,sha256=U-dV1ixkSz6NAU6Aw9dosKi2EzZ5D3BA7ilYZuTLKeU,20912
99
+ pip/_internal/index/__init__.py,sha256=vpt-JeTZefh8a-FC22ZeBSXFVbuBcXSGiILhQZJaNpQ,30
100
+ pip/_internal/index/__pycache__/__init__.cpython-310.pyc,,
101
+ pip/_internal/index/__pycache__/collector.cpython-310.pyc,,
102
+ pip/_internal/index/__pycache__/package_finder.cpython-310.pyc,,
103
+ pip/_internal/index/__pycache__/sources.cpython-310.pyc,,
104
+ pip/_internal/index/collector.py,sha256=8kXlmlnZ-qAknyxd0duCn5mxFHX-zr468ykutk8WOwo,21392
105
+ pip/_internal/index/package_finder.py,sha256=9UVg-7582nYNEWa0cIIl8otzPm4mlfyrQVuozAcssLo,36783
106
+ pip/_internal/index/sources.py,sha256=SVyPitv08-Qalh2_Bk5diAJ9GAA_d-a93koouQodAG0,6557
107
+ pip/_internal/locations/__init__.py,sha256=ergvPwlfNTmQYFmaRYbj--ZwTN5izgTL9KE5d0FB7-8,17362
108
+ pip/_internal/locations/__pycache__/__init__.cpython-310.pyc,,
109
+ pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc,,
110
+ pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc,,
111
+ pip/_internal/locations/__pycache__/base.cpython-310.pyc,,
112
+ pip/_internal/locations/_distutils.py,sha256=Sk7tw8ZP1DWMYJ8MibABsa8IME2Ejv1PKeGlYQCBTZc,5871
113
+ pip/_internal/locations/_sysconfig.py,sha256=LQNKTJKyjVqxXaPntlBwdUqTG1xwYf6GVCKMbyRJx5M,7918
114
+ pip/_internal/locations/base.py,sha256=x5D1ONktmPJd8nnUTh-ELsAJ7fiXA-k-0a_vhfi2_Us,1579
115
+ pip/_internal/main.py,sha256=r-UnUe8HLo5XFJz8inTcOOTiu_sxNhgHb6VwlGUllOI,340
116
+ pip/_internal/metadata/__init__.py,sha256=iGoDbe_iTXQTIAEVy9f7dm-VQfZANO8kkwFr1CpqxqI,2036
117
+ pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc,,
118
+ pip/_internal/metadata/__pycache__/base.cpython-310.pyc,,
119
+ pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc,,
120
+ pip/_internal/metadata/base.py,sha256=SCRPtShrtPy0lfFxuaFTgJJHsRXToGFToQUAZoBBbeA,19429
121
+ pip/_internal/metadata/pkg_resources.py,sha256=wAnEtrcgH9YtV996MfoBjR2hGLHvi3uxk0vUOHbqBak,9456
122
+ pip/_internal/models/__init__.py,sha256=3DHUd_qxpPozfzouoqa9g9ts1Czr5qaHfFxbnxriepM,63
123
+ pip/_internal/models/__pycache__/__init__.cpython-310.pyc,,
124
+ pip/_internal/models/__pycache__/candidate.cpython-310.pyc,,
125
+ pip/_internal/models/__pycache__/direct_url.cpython-310.pyc,,
126
+ pip/_internal/models/__pycache__/format_control.cpython-310.pyc,,
127
+ pip/_internal/models/__pycache__/index.cpython-310.pyc,,
128
+ pip/_internal/models/__pycache__/link.cpython-310.pyc,,
129
+ pip/_internal/models/__pycache__/scheme.cpython-310.pyc,,
130
+ pip/_internal/models/__pycache__/search_scope.cpython-310.pyc,,
131
+ pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc,,
132
+ pip/_internal/models/__pycache__/target_python.cpython-310.pyc,,
133
+ pip/_internal/models/__pycache__/wheel.cpython-310.pyc,,
134
+ pip/_internal/models/candidate.py,sha256=6pcABsaR7CfIHlbJbr2_kMkVJFL_yrYjTx6SVWUnCPQ,990
135
+ pip/_internal/models/direct_url.py,sha256=7XtGQSLLDQb5ZywI2EMnnLcddtf5CJLx44lMtTHPxFw,6350
136
+ pip/_internal/models/format_control.py,sha256=DJpMYjxeYKKQdwNcML2_F0vtAh-qnKTYe-CpTxQe-4g,2520
137
+ pip/_internal/models/index.py,sha256=tYnL8oxGi4aSNWur0mG8DAP7rC6yuha_MwJO8xw0crI,1030
138
+ pip/_internal/models/link.py,sha256=hoT_qsOBAgLBm9GKqpBrNF_mrEXeGXQE-aH_RX2cGgg,9817
139
+ pip/_internal/models/scheme.py,sha256=3EFQp_ICu_shH1-TBqhl0QAusKCPDFOlgHFeN4XowWs,738
140
+ pip/_internal/models/search_scope.py,sha256=LwloG0PJAmtI1hFXIypsD95kWE9xfR5hf_a2v1Vw7sk,4520
141
+ pip/_internal/models/selection_prefs.py,sha256=KZdi66gsR-_RUXUr9uejssk3rmTHrQVJWeNA2sV-VSY,1907
142
+ pip/_internal/models/target_python.py,sha256=qKpZox7J8NAaPmDs5C_aniwfPDxzvpkrCKqfwndG87k,3858
143
+ pip/_internal/models/wheel.py,sha256=wlyz23BcZ40nBLX3rXKtrV6tmc8-8RxHyV-hq5zJ74Q,3525
144
+ pip/_internal/network/__init__.py,sha256=jf6Tt5nV_7zkARBrKojIXItgejvoegVJVKUbhAa5Ioc,50
145
+ pip/_internal/network/__pycache__/__init__.cpython-310.pyc,,
146
+ pip/_internal/network/__pycache__/auth.cpython-310.pyc,,
147
+ pip/_internal/network/__pycache__/cache.cpython-310.pyc,,
148
+ pip/_internal/network/__pycache__/download.cpython-310.pyc,,
149
+ pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc,,
150
+ pip/_internal/network/__pycache__/session.cpython-310.pyc,,
151
+ pip/_internal/network/__pycache__/utils.cpython-310.pyc,,
152
+ pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc,,
153
+ pip/_internal/network/auth.py,sha256=a3C7Xaa8kTJjXkdi_wrUjqaySc8Z9Yz7U6QIbXfzMyc,12190
154
+ pip/_internal/network/cache.py,sha256=FJ3uTUo3wgf2KHmeZ3ltN9x3tQoy_0X6qNsRtNXsuL0,2131
155
+ pip/_internal/network/download.py,sha256=12Ef_L7MlhNUN_0-n_3DggozWJER8c9J0us16cbvkKA,6062
156
+ pip/_internal/network/lazy_wheel.py,sha256=1b8ZJ1w4bSBzpGzGwJR_CL2yQ6AFIwWQkS1vbPPw2XU,7627
157
+ pip/_internal/network/session.py,sha256=38IKGKC64MTVUIH5XOR1hr2pOCzp39RccykdmGAvqRU,16729
158
+ pip/_internal/network/utils.py,sha256=igLlTu_-q0LmL8FdJKq-Uj7AT_owrQ-T9FfyarkhK5U,4059
159
+ pip/_internal/network/xmlrpc.py,sha256=AzQgG4GgS152_cqmGr_Oz2MIXsCal-xfsis7fA7nmU0,1791
160
+ pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
161
+ pip/_internal/operations/__pycache__/__init__.cpython-310.pyc,,
162
+ pip/_internal/operations/__pycache__/check.cpython-310.pyc,,
163
+ pip/_internal/operations/__pycache__/freeze.cpython-310.pyc,,
164
+ pip/_internal/operations/__pycache__/prepare.cpython-310.pyc,,
165
+ pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
166
+ pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc,,
167
+ pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc,,
168
+ pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc,,
169
+ pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc,,
170
+ pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc,,
171
+ pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc,,
172
+ pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc,,
173
+ pip/_internal/operations/build/metadata.py,sha256=ES_uRmAvhrNm_nDTpZxshBfUsvnXtkj-g_4rZrH9Rww,1404
174
+ pip/_internal/operations/build/metadata_editable.py,sha256=_Rai0VZjxoeJUkjkuICrq45LtjwFoDOveosMYH43rKc,1456
175
+ pip/_internal/operations/build/metadata_legacy.py,sha256=o-eU21As175hDC7dluM1fJJ_FqokTIShyWpjKaIpHZw,2198
176
+ pip/_internal/operations/build/wheel.py,sha256=AO9XnTGhTgHtZmU8Dkbfo1OGr41rBuSDjIgAa4zUKgE,1063
177
+ pip/_internal/operations/build/wheel_editable.py,sha256=TVETY-L_M_dSEKBhTIcQOP75zKVXw8tuq1U354Mm30A,1405
178
+ pip/_internal/operations/build/wheel_legacy.py,sha256=C9j6rukgQI1n_JeQLoZGuDdfUwzCXShyIdPTp6edbMQ,3064
179
+ pip/_internal/operations/check.py,sha256=ca4O9CkPt9Em9sLCf3H0iVt1GIcW7M8C0U5XooaBuT4,5109
180
+ pip/_internal/operations/freeze.py,sha256=ZiYw5GlUpLVx4VJHz4S1AP2JFNyvH0iq5kpcYj2ovyw,9770
181
+ pip/_internal/operations/install/__init__.py,sha256=mX7hyD2GNBO2mFGokDQ30r_GXv7Y_PLdtxcUv144e-s,51
182
+ pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc,,
183
+ pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc,,
184
+ pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc,,
185
+ pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc,,
186
+ pip/_internal/operations/install/editable_legacy.py,sha256=ee4kfJHNuzTdKItbfAsNOSEwq_vD7DRPGkBdK48yBhU,1354
187
+ pip/_internal/operations/install/legacy.py,sha256=x7BG8kBm0K3JO6AR4sBl0zh2LOrfUaz7EdNt-keHBv4,4091
188
+ pip/_internal/operations/install/wheel.py,sha256=QuQyCZE-XjuJjDYRixo40oUt2ucFhNmSrCbcXY7A9aE,27412
189
+ pip/_internal/operations/prepare.py,sha256=LJP97jsuiCAaTGVIRrcINvxc1ntVsB45MoRbyMIukg4,24145
190
+ pip/_internal/pyproject.py,sha256=Wm2ljdT6spC-tSdf1LBRaMYSJaXr1xUxV3OwdHCW9jc,6722
191
+ pip/_internal/req/__init__.py,sha256=A7mUvT1KAcCYP3H7gUOTx2GRMlgoDur3H68Q0OJqM5A,2793
192
+ pip/_internal/req/__pycache__/__init__.cpython-310.pyc,,
193
+ pip/_internal/req/__pycache__/constructors.cpython-310.pyc,,
194
+ pip/_internal/req/__pycache__/req_file.cpython-310.pyc,,
195
+ pip/_internal/req/__pycache__/req_install.cpython-310.pyc,,
196
+ pip/_internal/req/__pycache__/req_set.cpython-310.pyc,,
197
+ pip/_internal/req/__pycache__/req_tracker.cpython-310.pyc,,
198
+ pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc,,
199
+ pip/_internal/req/constructors.py,sha256=fXmtNI_J77JFP_HRvYcQW-1nKw3AiUu6Q3b1Nm8aMm0,16094
200
+ pip/_internal/req/req_file.py,sha256=5N8OTouPCof-305StC2YK9HBxQMw-xO46skRoBPbkZo,17421
201
+ pip/_internal/req/req_install.py,sha256=jU1HQBT_DnXZean7jY8wPNMhb6_CzdKHcilHFY_o-Fc,32524
202
+ pip/_internal/req/req_set.py,sha256=kHYiLvkKRx21WaLTwOI-54Ng0SSzZZ9SE7FD0PsfvYA,7584
203
+ pip/_internal/req/req_tracker.py,sha256=jK7JDu-Wt73X-gqozrFtgJVlUlnQo0P4IQ4x4_gPlfM,4117
204
+ pip/_internal/req/req_uninstall.py,sha256=K2BHYRRJAfkSpFqcPzc9XfX2EvbhaRtQIPRFmMtUdfo,23814
205
+ pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
206
+ pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc,,
207
+ pip/_internal/resolution/__pycache__/base.cpython-310.pyc,,
208
+ pip/_internal/resolution/base.py,sha256=qlmh325SBVfvG6Me9gc5Nsh5sdwHBwzHBq6aEXtKsLA,583
209
+ pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
210
+ pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc,,
211
+ pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc,,
212
+ pip/_internal/resolution/legacy/resolver.py,sha256=b7bf5qL1ROg73sl8dhTvLdD1w5XF8xybBAF6eF_kz7c,18288
213
+ pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
214
+ pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc,,
215
+ pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc,,
216
+ pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc,,
217
+ pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc,,
218
+ pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc,,
219
+ pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc,,
220
+ pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc,,
221
+ pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc,,
222
+ pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc,,
223
+ pip/_internal/resolution/resolvelib/base.py,sha256=u1O4fkvCO4mhmu5i32xrDv9AX5NgUci_eYVyBDQhTIM,5220
224
+ pip/_internal/resolution/resolvelib/candidates.py,sha256=KR5jxZRSahByOABXbwrX-zNoawa7Gm9Iss-HrvrcvNw,18357
225
+ pip/_internal/resolution/resolvelib/factory.py,sha256=0bbxnUSSjaeTmtIEgeeKtEqhEFfNhv3xpq7j9IaMq2c,28298
226
+ pip/_internal/resolution/resolvelib/found_candidates.py,sha256=hvL3Hoa9VaYo-qEOZkBi2Iqw251UDxPz-uMHVaWmLpE,5705
227
+ pip/_internal/resolution/resolvelib/provider.py,sha256=LzQQyzMVaZYAwLgKInbq-it6mbQL1gX0hGohz5Cr5wg,9915
228
+ pip/_internal/resolution/resolvelib/reporter.py,sha256=3ZVVYrs5PqvLFJkGLcuXoMK5mTInFzl31xjUpDBpZZk,2526
229
+ pip/_internal/resolution/resolvelib/requirements.py,sha256=B1ndvKPSuyyyTEXt9sKhbwminViSWnBrJa7qO2ln4Z0,5455
230
+ pip/_internal/resolution/resolvelib/resolver.py,sha256=ucoVKHtwH6gkZjcfIVJbUiOIHLqJxeYlrKTMIJciYwM,11335
231
+ pip/_internal/self_outdated_check.py,sha256=GKSatNlt2cz_CMGxu72FbUzuPaXpWOnIVKOOYIk0gvY,6849
232
+ pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
233
+ pip/_internal/utils/__pycache__/__init__.cpython-310.pyc,,
234
+ pip/_internal/utils/__pycache__/_log.cpython-310.pyc,,
235
+ pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc,,
236
+ pip/_internal/utils/__pycache__/compat.cpython-310.pyc,,
237
+ pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc,,
238
+ pip/_internal/utils/__pycache__/datetime.cpython-310.pyc,,
239
+ pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc,,
240
+ pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc,,
241
+ pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc,,
242
+ pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc,,
243
+ pip/_internal/utils/__pycache__/encoding.cpython-310.pyc,,
244
+ pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc,,
245
+ pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc,,
246
+ pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc,,
247
+ pip/_internal/utils/__pycache__/glibc.cpython-310.pyc,,
248
+ pip/_internal/utils/__pycache__/hashes.cpython-310.pyc,,
249
+ pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc,,
250
+ pip/_internal/utils/__pycache__/logging.cpython-310.pyc,,
251
+ pip/_internal/utils/__pycache__/misc.cpython-310.pyc,,
252
+ pip/_internal/utils/__pycache__/models.cpython-310.pyc,,
253
+ pip/_internal/utils/__pycache__/packaging.cpython-310.pyc,,
254
+ pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc,,
255
+ pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc,,
256
+ pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc,,
257
+ pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc,,
258
+ pip/_internal/utils/__pycache__/urls.cpython-310.pyc,,
259
+ pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc,,
260
+ pip/_internal/utils/__pycache__/wheel.cpython-310.pyc,,
261
+ pip/_internal/utils/_log.py,sha256=-jHLOE_THaZz5BFcCnoSL9EYAtJ0nXem49s9of4jvKw,1015
262
+ pip/_internal/utils/appdirs.py,sha256=swgcTKOm3daLeXTW6v5BUS2Ti2RvEnGRQYH_yDXklAo,1665
263
+ pip/_internal/utils/compat.py,sha256=ACyBfLgj3_XG-iA5omEDrXqDM0cQKzi8h8HRBInzG6Q,1884
264
+ pip/_internal/utils/compatibility_tags.py,sha256=ydin8QG8BHqYRsPY4OL6cmb44CbqXl1T0xxS97VhHkk,5377
265
+ pip/_internal/utils/datetime.py,sha256=m21Y3wAtQc-ji6Veb6k_M5g6A0ZyFI4egchTdnwh-pQ,242
266
+ pip/_internal/utils/deprecation.py,sha256=NKo8VqLioJ4nnXXGmW4KdasxF90EFHkZaHeX1fT08C8,3627
267
+ pip/_internal/utils/direct_url_helpers.py,sha256=6F1tc2rcKaCZmgfVwsE6ObIe_Pux23mUVYA-2D9wCFc,3206
268
+ pip/_internal/utils/distutils_args.py,sha256=mcAscyp80vTt3xAGTipnpgc83V-_wCvydNELVXLq7JI,1249
269
+ pip/_internal/utils/egg_link.py,sha256=5MVlpz5LirT4iLQq86OYzjXaYF0D4Qk1dprEI7ThST4,2203
270
+ pip/_internal/utils/encoding.py,sha256=bdZ3YgUpaOEBI5MP4-DEXiQarCW3V0rxw1kRz-TaU1Q,1169
271
+ pip/_internal/utils/entrypoints.py,sha256=aPvCnQVi9Hdk35Kloww_D5ibjUpqxgqcJP8O9VuMZek,1055
272
+ pip/_internal/utils/filesystem.py,sha256=rrl-rY1w8TYyKYndUyZlE9ffkQyA4-jI9x_59zXkn5s,5893
273
+ pip/_internal/utils/filetypes.py,sha256=i8XAQ0eFCog26Fw9yV0Yb1ygAqKYB1w9Cz9n0fj8gZU,716
274
+ pip/_internal/utils/glibc.py,sha256=tDfwVYnJCOC0BNVpItpy8CGLP9BjkxFHdl0mTS0J7fc,3110
275
+ pip/_internal/utils/hashes.py,sha256=anpZfFGIT6HcIj2td9NHtE8AWg6GeAIhwpP8GPvZE0E,4811
276
+ pip/_internal/utils/inject_securetransport.py,sha256=o-QRVMGiENrTJxw3fAhA7uxpdEdw6M41TjHYtSVRrcg,795
277
+ pip/_internal/utils/logging.py,sha256=Rvght-fDXL70VWib1cpgZ3iU-kXODV98bNeLUlbqVto,11522
278
+ pip/_internal/utils/misc.py,sha256=MdUB12BMhj73sEmskEutmPyWFaJB7asoPCfLzs_YeT0,19359
279
+ pip/_internal/utils/models.py,sha256=5GoYU586SrxURMvDn_jBMJInitviJg4O5-iOU-6I0WY,1193
280
+ pip/_internal/utils/packaging.py,sha256=5Wm6_x7lKrlqVjPI5MBN_RurcRHwVYoQ7Ksrs84de7s,2108
281
+ pip/_internal/utils/setuptools_build.py,sha256=vNH9hQB9wT6d-h1hVQhBKw91jNeT42meHpVeii-urOI,5652
282
+ pip/_internal/utils/subprocess.py,sha256=vIWGpet5ARBmZ2Qn4NEHNgzCOduqbPIuByZmhhmr6mM,9182
283
+ pip/_internal/utils/temp_dir.py,sha256=zob3PYMVevONkheOMUp_4jDofrEY3HIu5DHK78cSspI,7662
284
+ pip/_internal/utils/unpacking.py,sha256=HUFlMEyCa9dPwdLh6sWeh95DeKytV8rsOyKShEw9y6g,8906
285
+ pip/_internal/utils/urls.py,sha256=AhaesUGl-9it6uvG6fsFPOr9ynFpGaTMk4t5XTX7Z_Q,1759
286
+ pip/_internal/utils/virtualenv.py,sha256=4_48qMzCwB_F5jIK5BC_ua7uiAMVifmQWU9NdaGUoVA,3459
287
+ pip/_internal/utils/wheel.py,sha256=lXOgZyTlOm5HmK8tw5iw0A3_5A6wRzsXHOaQkIvvloU,4549
288
+ pip/_internal/vcs/__init__.py,sha256=UAqvzpbi0VbZo3Ub6skEeZAw-ooIZR-zX_WpCbxyCoU,596
289
+ pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc,,
290
+ pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc,,
291
+ pip/_internal/vcs/__pycache__/git.cpython-310.pyc,,
292
+ pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc,,
293
+ pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc,,
294
+ pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc,,
295
+ pip/_internal/vcs/bazaar.py,sha256=IGb5ca1xSZfgegRD2_JeyoZPrQQHs7lEYEIgpVsKpoU,3047
296
+ pip/_internal/vcs/git.py,sha256=mjhwudCx9WlLNkxZ6_kOKmueF0rLoU2i1xeASKF6yiQ,18116
297
+ pip/_internal/vcs/mercurial.py,sha256=Bzbd518Jsx-EJI0IhIobiQqiRsUv5TWYnrmRIFWE0Gw,5238
298
+ pip/_internal/vcs/subversion.py,sha256=TEMRdwECvMcXakZX0pTNUep79kmBYkWDkWFkrYmcmac,11718
299
+ pip/_internal/vcs/versioncontrol.py,sha256=KUOc-hN51em9jrqxKwUR3JnkgSE-xSOqMiiJcSaL6B8,22811
300
+ pip/_internal/wheel_builder.py,sha256=65rOA8FSYt3c3HyqEw17uujjlCgqmoKEIv6rv9xN2NM,12307
301
+ pip/_vendor/__init__.py,sha256=xjcBX0EP50pkaMdCssrsBXoZgo2hTtYxlcH1CIyA3T4,4708
302
+ pip/_vendor/__pycache__/__init__.cpython-310.pyc,,
303
+ pip/_vendor/__pycache__/distro.cpython-310.pyc,,
304
+ pip/_vendor/__pycache__/six.cpython-310.pyc,,
305
+ pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc,,
306
+ pip/_vendor/cachecontrol/__init__.py,sha256=1j_YQfjmiix6YyouLrftC6NzksAm8e8xGSjMKMRPIkM,465
307
+ pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc,,
308
+ pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc,,
309
+ pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc,,
310
+ pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc,,
311
+ pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc,,
312
+ pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc,,
313
+ pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc,,
314
+ pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc,,
315
+ pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc,,
316
+ pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc,,
317
+ pip/_vendor/cachecontrol/_cmd.py,sha256=lxUXqfNTVx84zf6tcWbkLZHA6WVBRtJRpfeA9ZqhaAY,1379
318
+ pip/_vendor/cachecontrol/adapter.py,sha256=ew9OYEQHEOjvGl06ZsuX8W3DAvHWsQKHwWAxISyGug8,5033
319
+ pip/_vendor/cachecontrol/cache.py,sha256=eMS9Bn9JWQkHiIYA5GPRBqKVU95uS-yXkxrzpoafRig,917
320
+ pip/_vendor/cachecontrol/caches/__init__.py,sha256=gGFOtIH8QDRvkP4YAfGIh-u9YYcGZVxwLM1-6e1mPNI,170
321
+ pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc,,
322
+ pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc,,
323
+ pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc,,
324
+ pip/_vendor/cachecontrol/caches/file_cache.py,sha256=P2KHcNXiqxEW7fCq5KC-NYHGSk0nNR9NIKuN-vBTn-E,4251
325
+ pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=tu_YBV7EV8vdBRGazUErkoRqYYjSBmNcB8dZ7BNomqk,940
326
+ pip/_vendor/cachecontrol/compat.py,sha256=LNx7vqBndYdHU8YuJt53ab_8rzMGTXVrvMb7CZJkxG0,778
327
+ pip/_vendor/cachecontrol/controller.py,sha256=9DSEiV58Gx7Ce69fLCrRcpN-_sHzXTY4ol9bEviatR0,15625
328
+ pip/_vendor/cachecontrol/filewrapper.py,sha256=X4BAQOO26GNOR7nH_fhTzAfeuct2rBQcx_15MyFBpcs,3946
329
+ pip/_vendor/cachecontrol/heuristics.py,sha256=8kAyuZLSCyEIgQr6vbUwfhpqg9ows4mM0IV6DWazevI,4154
330
+ pip/_vendor/cachecontrol/serialize.py,sha256=dlySaeA5U7Q5eHvjiObgo1M8j8_huVjfWjid7Aq-r8c,6783
331
+ pip/_vendor/cachecontrol/wrapper.py,sha256=X3-KMZ20Ho3VtqyVaXclpeQpFzokR5NE8tZSfvKVaB8,774
332
+ pip/_vendor/certifi/__init__.py,sha256=xWdRgntT3j1V95zkRipGOg_A1UfEju2FcpujhysZLRI,62
333
+ pip/_vendor/certifi/__main__.py,sha256=1k3Cr95vCxxGRGDljrW3wMdpZdL3Nhf0u1n-k2qdsCY,255
334
+ pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc,,
335
+ pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc,,
336
+ pip/_vendor/certifi/__pycache__/core.cpython-310.pyc,,
337
+ pip/_vendor/certifi/cacert.pem,sha256=-og4Keu4zSpgL5shwfhd4kz0eUnVILzrGCi0zRy2kGw,265969
338
+ pip/_vendor/certifi/core.py,sha256=CcwptmiI-3M50jIdO0HT6Fh6W_wqGsf8QcX9yfzvyuc,2791
339
+ pip/_vendor/chardet/__init__.py,sha256=mWZaWmvZkhwfBEAT9O1Y6nRTfKzhT7FHhQTTAujbqUA,3271
340
+ pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc,,
341
+ pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc,,
342
+ pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc,,
343
+ pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc,,
344
+ pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc,,
345
+ pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc,,
346
+ pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc,,
347
+ pip/_vendor/chardet/__pycache__/compat.cpython-310.pyc,,
348
+ pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc,,
349
+ pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc,,
350
+ pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc,,
351
+ pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc,,
352
+ pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc,,
353
+ pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc,,
354
+ pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc,,
355
+ pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc,,
356
+ pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc,,
357
+ pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc,,
358
+ pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc,,
359
+ pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc,,
360
+ pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc,,
361
+ pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc,,
362
+ pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc,,
363
+ pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc,,
364
+ pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc,,
365
+ pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc,,
366
+ pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc,,
367
+ pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc,,
368
+ pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc,,
369
+ pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc,,
370
+ pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc,,
371
+ pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc,,
372
+ pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc,,
373
+ pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc,,
374
+ pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc,,
375
+ pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc,,
376
+ pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc,,
377
+ pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc,,
378
+ pip/_vendor/chardet/__pycache__/version.cpython-310.pyc,,
379
+ pip/_vendor/chardet/big5freq.py,sha256=D_zK5GyzoVsRes0HkLJziltFQX0bKCLOrFe9_xDvO_8,31254
380
+ pip/_vendor/chardet/big5prober.py,sha256=kBxHbdetBpPe7xrlb-e990iot64g_eGSLd32lB7_h3M,1757
381
+ pip/_vendor/chardet/chardistribution.py,sha256=3woWS62KrGooKyqz4zQSnjFbJpa6V7g02daAibTwcl8,9411
382
+ pip/_vendor/chardet/charsetgroupprober.py,sha256=GZLReHP6FRRn43hvSOoGCxYamErKzyp6RgOQxVeC3kg,3839
383
+ pip/_vendor/chardet/charsetprober.py,sha256=KSmwJErjypyj0bRZmC5F5eM7c8YQgLYIjZXintZNstg,5110
384
+ pip/_vendor/chardet/cli/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
385
+ pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc,,
386
+ pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc,,
387
+ pip/_vendor/chardet/cli/chardetect.py,sha256=XK5zqjUG2a4-y6eLHZ8ThYcp6WWUrdlmELxNypcc2SE,2747
388
+ pip/_vendor/chardet/codingstatemachine.py,sha256=VYp_6cyyki5sHgXDSZnXW4q1oelHc3cu9AyQTX7uug8,3590
389
+ pip/_vendor/chardet/compat.py,sha256=40zr6wICZwknxyuLGGcIOPyve8DTebBCbbvttvnmp5Q,1200
390
+ pip/_vendor/chardet/cp949prober.py,sha256=TZ434QX8zzBsnUvL_8wm4AQVTZ2ZkqEEQL_lNw9f9ow,1855
391
+ pip/_vendor/chardet/enums.py,sha256=Aimwdb9as1dJKZaFNUH2OhWIVBVd6ZkJJ_WK5sNY8cU,1661
392
+ pip/_vendor/chardet/escprober.py,sha256=kkyqVg1Yw3DIOAMJ2bdlyQgUFQhuHAW8dUGskToNWSc,3950
393
+ pip/_vendor/chardet/escsm.py,sha256=RuXlgNvTIDarndvllNCk5WZBIpdCxQ0kcd9EAuxUh84,10510
394
+ pip/_vendor/chardet/eucjpprober.py,sha256=iD8Jdp0ISRjgjiVN7f0e8xGeQJ5GM2oeZ1dA8nbSeUw,3749
395
+ pip/_vendor/chardet/euckrfreq.py,sha256=-7GdmvgWez4-eO4SuXpa7tBiDi5vRXQ8WvdFAzVaSfo,13546
396
+ pip/_vendor/chardet/euckrprober.py,sha256=MqFMTQXxW4HbzIpZ9lKDHB3GN8SP4yiHenTmf8g_PxY,1748
397
+ pip/_vendor/chardet/euctwfreq.py,sha256=No1WyduFOgB5VITUA7PLyC5oJRNzRyMbBxaKI1l16MA,31621
398
+ pip/_vendor/chardet/euctwprober.py,sha256=13p6EP4yRaxqnP4iHtxHOJ6R2zxHq1_m8hTRjzVZ95c,1747
399
+ pip/_vendor/chardet/gb2312freq.py,sha256=JX8lsweKLmnCwmk8UHEQsLgkr_rP_kEbvivC4qPOrlc,20715
400
+ pip/_vendor/chardet/gb2312prober.py,sha256=gGvIWi9WhDjE-xQXHvNIyrnLvEbMAYgyUSZ65HUfylw,1754
401
+ pip/_vendor/chardet/hebrewprober.py,sha256=c3SZ-K7hvyzGY6JRAZxJgwJ_sUS9k0WYkvMY00YBYFo,13838
402
+ pip/_vendor/chardet/jisfreq.py,sha256=vpmJv2Bu0J8gnMVRPHMFefTRvo_ha1mryLig8CBwgOg,25777
403
+ pip/_vendor/chardet/jpcntx.py,sha256=PYlNqRUQT8LM3cT5FmHGP0iiscFlTWED92MALvBungo,19643
404
+ pip/_vendor/chardet/langbulgarianmodel.py,sha256=rk9CJpuxO0bObboJcv6gNgWuosYZmd8qEEds5y7DS_Y,105697
405
+ pip/_vendor/chardet/langgreekmodel.py,sha256=S-uNQ1ihC75yhBvSux24gLFZv3QyctMwC6OxLJdX-bw,99571
406
+ pip/_vendor/chardet/langhebrewmodel.py,sha256=DzPP6TPGG_-PV7tqspu_d8duueqm7uN-5eQ0aHUw1Gg,98776
407
+ pip/_vendor/chardet/langhungarianmodel.py,sha256=RtJH7DZdsmaHqyK46Kkmnk5wQHiJwJPPJSqqIlpeZRc,102498
408
+ pip/_vendor/chardet/langrussianmodel.py,sha256=THqJOhSxiTQcHboDNSc5yofc2koXXQFHFyjtyuntUfM,131180
409
+ pip/_vendor/chardet/langthaimodel.py,sha256=R1wXHnUMtejpw0JnH_JO8XdYasME6wjVqp1zP7TKLgg,103312
410
+ pip/_vendor/chardet/langturkishmodel.py,sha256=rfwanTptTwSycE4-P-QasPmzd-XVYgevytzjlEzBBu8,95946
411
+ pip/_vendor/chardet/latin1prober.py,sha256=S2IoORhFk39FEFOlSFWtgVybRiP6h7BlLldHVclNkU8,5370
412
+ pip/_vendor/chardet/mbcharsetprober.py,sha256=AR95eFH9vuqSfvLQZN-L5ijea25NOBCoXqw8s5O9xLQ,3413
413
+ pip/_vendor/chardet/mbcsgroupprober.py,sha256=h6TRnnYq2OxG1WdD5JOyxcdVpn7dG0q-vB8nWr5mbh4,2012
414
+ pip/_vendor/chardet/mbcssm.py,sha256=SY32wVIF3HzcjY3BaEspy9metbNSKxIIB0RKPn7tjpI,25481
415
+ pip/_vendor/chardet/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
416
+ pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc,,
417
+ pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc,,
418
+ pip/_vendor/chardet/metadata/languages.py,sha256=41tLq3eLSrBEbEVVQpVGFq9K7o1ln9b1HpY1l0hCUQo,19474
419
+ pip/_vendor/chardet/sbcharsetprober.py,sha256=nmyMyuxzG87DN6K3Rk2MUzJLMLR69MrWpdnHzOwVUwQ,6136
420
+ pip/_vendor/chardet/sbcsgroupprober.py,sha256=hqefQuXmiFyDBArOjujH6hd6WFXlOD1kWCsxDhjx5Vc,4309
421
+ pip/_vendor/chardet/sjisprober.py,sha256=IIt-lZj0WJqK4rmUZzKZP4GJlE8KUEtFYVuY96ek5MQ,3774
422
+ pip/_vendor/chardet/universaldetector.py,sha256=DpZTXCX0nUHXxkQ9sr4GZxGB_hveZ6hWt3uM94cgWKs,12503
423
+ pip/_vendor/chardet/utf8prober.py,sha256=IdD8v3zWOsB8OLiyPi-y_fqwipRFxV9Nc1eKBLSuIEw,2766
424
+ pip/_vendor/chardet/version.py,sha256=A4CILFAd8MRVG1HoXPp45iK9RLlWyV73a1EtwE8Tvn8,242
425
+ pip/_vendor/colorama/__init__.py,sha256=pCdErryzLSzDW5P-rRPBlPLqbBtIRNJB6cMgoeJns5k,239
426
+ pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc,,
427
+ pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc,,
428
+ pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc,,
429
+ pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc,,
430
+ pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc,,
431
+ pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc,,
432
+ pip/_vendor/colorama/ansi.py,sha256=Top4EeEuaQdBWdteKMEcGOTeKeF19Q-Wo_6_Cj5kOzQ,2522
433
+ pip/_vendor/colorama/ansitowin32.py,sha256=yV7CEmCb19MjnJKODZEEvMH_fnbJhwnpzo4sxZuGXmA,10517
434
+ pip/_vendor/colorama/initialise.py,sha256=PprovDNxMTrvoNHFcL2NZjpH2XzDc8BLxLxiErfUl4k,1915
435
+ pip/_vendor/colorama/win32.py,sha256=bJ8Il9jwaBN5BJ8bmN6FoYZ1QYuMKv2j8fGrXh7TJjw,5404
436
+ pip/_vendor/colorama/winterm.py,sha256=2y_2b7Zsv34feAsP67mLOVc-Bgq51mdYGo571VprlrM,6438
437
+ pip/_vendor/distlib/__init__.py,sha256=y-rKDBB99QJ3N1PJGAXQo89ou615aAeBjV2brBxKgM8,581
438
+ pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc,,
439
+ pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc,,
440
+ pip/_vendor/distlib/__pycache__/database.cpython-310.pyc,,
441
+ pip/_vendor/distlib/__pycache__/index.cpython-310.pyc,,
442
+ pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc,,
443
+ pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc,,
444
+ pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc,,
445
+ pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc,,
446
+ pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc,,
447
+ pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc,,
448
+ pip/_vendor/distlib/__pycache__/util.cpython-310.pyc,,
449
+ pip/_vendor/distlib/__pycache__/version.cpython-310.pyc,,
450
+ pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc,,
451
+ pip/_vendor/distlib/compat.py,sha256=tfoMrj6tujk7G4UC2owL6ArgDuCKabgBxuJRGZSmpko,41259
452
+ pip/_vendor/distlib/database.py,sha256=hBO2dgvDF7W3BqX8Ecns6p_RPerCaIbNKbdUOuJ1a14,51456
453
+ pip/_vendor/distlib/index.py,sha256=UfcimNW19AB7IKWam4VaJbXuCBvArKfSxhV16EwavzE,20739
454
+ pip/_vendor/distlib/locators.py,sha256=4D2hEcHePNuW4mXEZ3Cuw12eW-vbO-4WuAlbf4h5K7w,51963
455
+ pip/_vendor/distlib/manifest.py,sha256=nQEhYmgoreaBZzyFzwYsXxJARu3fo4EkunU163U16iE,14811
456
+ pip/_vendor/distlib/markers.py,sha256=TpHHHLgkzyT7YHbwj-2i6weRaq-Ivy2-MUnrDkjau-U,5058
457
+ pip/_vendor/distlib/metadata.py,sha256=vatoxFdmBr6ie-sTVXVNPOPG3uwMDWJTnEECnm7xDCw,39109
458
+ pip/_vendor/distlib/resources.py,sha256=LwbPksc0A1JMbi6XnuPdMBUn83X7BPuFNWqPGEKI698,10820
459
+ pip/_vendor/distlib/scripts.py,sha256=tjSwENINeV91ROZxec5zTSMRg2jEeKc4enyCHDzNvEE,17720
460
+ pip/_vendor/distlib/util.py,sha256=31dPXn3Rfat0xZLeVoFpuniyhe6vsbl9_QN-qd9Lhlk,66262
461
+ pip/_vendor/distlib/version.py,sha256=WG__LyAa2GwmA6qSoEJtvJE8REA1LZpbSizy8WvhJLk,23513
462
+ pip/_vendor/distlib/wheel.py,sha256=pj5VVCjqZMcHvgizORWwAFPS7hOk61CZ59dxP8laQ4E,42943
463
+ pip/_vendor/distro.py,sha256=O1EeHMq1-xAO373JI2_6pYEtd09yEkxtmrYkdY-9S-w,48414
464
+ pip/_vendor/html5lib/__init__.py,sha256=BYzcKCqeEii52xDrqBFruhnmtmkiuHXFyFh-cglQ8mk,1160
465
+ pip/_vendor/html5lib/__pycache__/__init__.cpython-310.pyc,,
466
+ pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-310.pyc,,
467
+ pip/_vendor/html5lib/__pycache__/_inputstream.cpython-310.pyc,,
468
+ pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-310.pyc,,
469
+ pip/_vendor/html5lib/__pycache__/_utils.cpython-310.pyc,,
470
+ pip/_vendor/html5lib/__pycache__/constants.cpython-310.pyc,,
471
+ pip/_vendor/html5lib/__pycache__/html5parser.cpython-310.pyc,,
472
+ pip/_vendor/html5lib/__pycache__/serializer.cpython-310.pyc,,
473
+ pip/_vendor/html5lib/_ihatexml.py,sha256=ifOwF7pXqmyThIXc3boWc96s4MDezqRrRVp7FwDYUFs,16728
474
+ pip/_vendor/html5lib/_inputstream.py,sha256=jErNASMlkgs7MpOM9Ve_VdLDJyFFweAjLuhVutZz33U,32353
475
+ pip/_vendor/html5lib/_tokenizer.py,sha256=04mgA2sNTniutl2fxFv-ei5bns4iRaPxVXXHh_HrV_4,77040
476
+ pip/_vendor/html5lib/_trie/__init__.py,sha256=nqfgO910329BEVJ5T4psVwQtjd2iJyEXQ2-X8c1YxwU,109
477
+ pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-310.pyc,,
478
+ pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-310.pyc,,
479
+ pip/_vendor/html5lib/_trie/__pycache__/py.cpython-310.pyc,,
480
+ pip/_vendor/html5lib/_trie/_base.py,sha256=CaybYyMro8uERQYjby2tTeSUatnWDfWroUN9N7ety5w,1013
481
+ pip/_vendor/html5lib/_trie/py.py,sha256=wXmQLrZRf4MyWNyg0m3h81m9InhLR7GJ002mIIZh-8o,1775
482
+ pip/_vendor/html5lib/_utils.py,sha256=Dx9AKntksRjFT1veBj7I362pf5OgIaT0zglwq43RnfU,4931
483
+ pip/_vendor/html5lib/constants.py,sha256=Ll-yzLU_jcjyAI_h57zkqZ7aQWE5t5xA4y_jQgoUUhw,83464
484
+ pip/_vendor/html5lib/filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
485
+ pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-310.pyc,,
486
+ pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-310.pyc,,
487
+ pip/_vendor/html5lib/filters/__pycache__/base.cpython-310.pyc,,
488
+ pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-310.pyc,,
489
+ pip/_vendor/html5lib/filters/__pycache__/lint.cpython-310.pyc,,
490
+ pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-310.pyc,,
491
+ pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-310.pyc,,
492
+ pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-310.pyc,,
493
+ pip/_vendor/html5lib/filters/alphabeticalattributes.py,sha256=lViZc2JMCclXi_5gduvmdzrRxtO5Xo9ONnbHBVCsykU,919
494
+ pip/_vendor/html5lib/filters/base.py,sha256=z-IU9ZAYjpsVsqmVt7kuWC63jR11hDMr6CVrvuao8W0,286
495
+ pip/_vendor/html5lib/filters/inject_meta_charset.py,sha256=egDXUEHXmAG9504xz0K6ALDgYkvUrC2q15YUVeNlVQg,2945
496
+ pip/_vendor/html5lib/filters/lint.py,sha256=jk6q56xY0ojiYfvpdP-OZSm9eTqcAdRqhCoPItemPYA,3643
497
+ pip/_vendor/html5lib/filters/optionaltags.py,sha256=8lWT75J0aBOHmPgfmqTHSfPpPMp01T84NKu0CRedxcE,10588
498
+ pip/_vendor/html5lib/filters/sanitizer.py,sha256=m6oGmkBhkGAnn2nV6D4hE78SCZ6WEnK9rKdZB3uXBIc,26897
499
+ pip/_vendor/html5lib/filters/whitespace.py,sha256=8eWqZxd4UC4zlFGW6iyY6f-2uuT8pOCSALc3IZt7_t4,1214
500
+ pip/_vendor/html5lib/html5parser.py,sha256=anr-aXre_ImfrkQ35c_rftKXxC80vJCREKe06Tq15HA,117186
501
+ pip/_vendor/html5lib/serializer.py,sha256=_PpvcZF07cwE7xr9uKkZqh5f4UEaI8ltCU2xPJzaTpk,15759
502
+ pip/_vendor/html5lib/treeadapters/__init__.py,sha256=A0rY5gXIe4bJOiSGRO_j_tFhngRBO8QZPzPtPw5dFzo,679
503
+ pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-310.pyc,,
504
+ pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-310.pyc,,
505
+ pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-310.pyc,,
506
+ pip/_vendor/html5lib/treeadapters/genshi.py,sha256=CH27pAsDKmu4ZGkAUrwty7u0KauGLCZRLPMzaO3M5vo,1715
507
+ pip/_vendor/html5lib/treeadapters/sax.py,sha256=BKS8woQTnKiqeffHsxChUqL4q2ZR_wb5fc9MJ3zQC8s,1776
508
+ pip/_vendor/html5lib/treebuilders/__init__.py,sha256=AysSJyvPfikCMMsTVvaxwkgDieELD5dfR8FJIAuq7hY,3592
509
+ pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-310.pyc,,
510
+ pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-310.pyc,,
511
+ pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-310.pyc,,
512
+ pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-310.pyc,,
513
+ pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-310.pyc,,
514
+ pip/_vendor/html5lib/treebuilders/base.py,sha256=z-o51vt9r_l2IDG5IioTOKGzZne4Fy3_Fc-7ztrOh4I,14565
515
+ pip/_vendor/html5lib/treebuilders/dom.py,sha256=22whb0C71zXIsai5mamg6qzBEiigcBIvaDy4Asw3at0,8925
516
+ pip/_vendor/html5lib/treebuilders/etree.py,sha256=w5ZFpKk6bAxnrwD2_BrF5EVC7vzz0L3LMi9Sxrbc_8w,12836
517
+ pip/_vendor/html5lib/treebuilders/etree_lxml.py,sha256=9gqDjs-IxsPhBYa5cpvv2FZ1KZlG83Giusy2lFmvIkE,14766
518
+ pip/_vendor/html5lib/treewalkers/__init__.py,sha256=OBPtc1TU5mGyy18QDMxKEyYEz0wxFUUNj5v0-XgmYhY,5719
519
+ pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-310.pyc,,
520
+ pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-310.pyc,,
521
+ pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-310.pyc,,
522
+ pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-310.pyc,,
523
+ pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-310.pyc,,
524
+ pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-310.pyc,,
525
+ pip/_vendor/html5lib/treewalkers/base.py,sha256=ouiOsuSzvI0KgzdWP8PlxIaSNs9falhbiinAEc_UIJY,7476
526
+ pip/_vendor/html5lib/treewalkers/dom.py,sha256=EHyFR8D8lYNnyDU9lx_IKigVJRyecUGua0mOi7HBukc,1413
527
+ pip/_vendor/html5lib/treewalkers/etree.py,sha256=xo1L5m9VtkfpFJK0pFmkLVajhqYYVisVZn3k9kYpPkI,4551
528
+ pip/_vendor/html5lib/treewalkers/etree_lxml.py,sha256=_b0LAVWLcVu9WaU_-w3D8f0IRSpCbjf667V-3NRdhTw,6357
529
+ pip/_vendor/html5lib/treewalkers/genshi.py,sha256=4D2PECZ5n3ZN3qu3jMl9yY7B81jnQApBQSVlfaIuYbA,2309
530
+ pip/_vendor/idna/__init__.py,sha256=KJQN1eQBr8iIK5SKrJ47lXvxG0BJ7Lm38W4zT0v_8lk,849
531
+ pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc,,
532
+ pip/_vendor/idna/__pycache__/codec.cpython-310.pyc,,
533
+ pip/_vendor/idna/__pycache__/compat.cpython-310.pyc,,
534
+ pip/_vendor/idna/__pycache__/core.cpython-310.pyc,,
535
+ pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc,,
536
+ pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc,,
537
+ pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc,,
538
+ pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc,,
539
+ pip/_vendor/idna/codec.py,sha256=6ly5odKfqrytKT9_7UrlGklHnf1DSK2r9C6cSM4sa28,3374
540
+ pip/_vendor/idna/compat.py,sha256=0_sOEUMT4CVw9doD3vyRhX80X19PwqFoUBs7gWsFME4,321
541
+ pip/_vendor/idna/core.py,sha256=RFIkY-HhFZaDoBEFjGwyGd_vWI04uOAQjnzueMWqwOU,12795
542
+ pip/_vendor/idna/idnadata.py,sha256=fzMzkCea2xieVxcrjngJ-2pLsKQNejPCZFlBajIuQdw,44025
543
+ pip/_vendor/idna/intranges.py,sha256=YBr4fRYuWH7kTKS2tXlFjM24ZF1Pdvcir-aywniInqg,1881
544
+ pip/_vendor/idna/package_data.py,sha256=szxQhV0ZD0nKJ84Kuobw3l8q4_KeCyXjFRdpwIpKZmw,21
545
+ pip/_vendor/idna/uts46data.py,sha256=o-D7V-a0fOLZNd7tvxof6MYfUd0TBZzE2bLR5XO67xU,204400
546
+ pip/_vendor/msgpack/__init__.py,sha256=2gJwcsTIaAtCM0GMi2rU-_Y6kILeeQuqRkrQ22jSANc,1118
547
+ pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc,,
548
+ pip/_vendor/msgpack/__pycache__/_version.cpython-310.pyc,,
549
+ pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc,,
550
+ pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc,,
551
+ pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc,,
552
+ pip/_vendor/msgpack/_version.py,sha256=JpTcnRd3YUioA24NDtDZbLW0Nhl2yA-N1Rq2lLDBB-g,20
553
+ pip/_vendor/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081
554
+ pip/_vendor/msgpack/ext.py,sha256=4l356Y4sVEcvCla2dh_cL57vh4GMhZfa3kuWHFHYz6A,6088
555
+ pip/_vendor/msgpack/fallback.py,sha256=L5jriXysURbf6rPbbHbvXgvoFrKZiryIBmujMTcrf3A,34475
556
+ pip/_vendor/packaging/__about__.py,sha256=ugASIO2w1oUyH8_COqQ2X_s0rDhjbhQC3yJocD03h2c,661
557
+ pip/_vendor/packaging/__init__.py,sha256=b9Kk5MF7KxhhLgcDmiUWukN-LatWFxPdNug0joPhHSk,497
558
+ pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc,,
559
+ pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc,,
560
+ pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc,,
561
+ pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc,,
562
+ pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc,,
563
+ pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc,,
564
+ pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc,,
565
+ pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc,,
566
+ pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc,,
567
+ pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc,,
568
+ pip/_vendor/packaging/__pycache__/version.cpython-310.pyc,,
569
+ pip/_vendor/packaging/_manylinux.py,sha256=XcbiXB-qcjv3bcohp6N98TMpOP4_j3m-iOA8ptK2GWY,11488
570
+ pip/_vendor/packaging/_musllinux.py,sha256=_KGgY_qc7vhMGpoqss25n2hiLCNKRtvz9mCrS7gkqyc,4378
571
+ pip/_vendor/packaging/_structures.py,sha256=q3eVNmbWJGG_S0Dit_S3Ao8qQqz_5PYTXFAKBZe5yr4,1431
572
+ pip/_vendor/packaging/markers.py,sha256=AJBOcY8Oq0kYc570KuuPTkvuqjAlhufaE2c9sCUbm64,8487
573
+ pip/_vendor/packaging/requirements.py,sha256=NtDlPBtojpn1IUC85iMjPNsUmufjpSlwnNA-Xb4m5NA,4676
574
+ pip/_vendor/packaging/specifiers.py,sha256=LRQ0kFsHrl5qfcFNEEJrIFYsnIHQUJXY9fIsakTrrqE,30110
575
+ pip/_vendor/packaging/tags.py,sha256=lmsnGNiJ8C4D_Pf9PbM0qgbZvD9kmB9lpZBQUZa3R_Y,15699
576
+ pip/_vendor/packaging/utils.py,sha256=dJjeat3BS-TYn1RrUFVwufUMasbtzLfYRoy_HXENeFQ,4200
577
+ pip/_vendor/packaging/version.py,sha256=_fLRNrFrxYcHVfyo8vk9j8s6JM8N_xsSxVFr6RJyco8,14665
578
+ pip/_vendor/pep517/__init__.py,sha256=Y1bATL2qbFNN6M_DQa4yyrwqjpIiL-j9T6kBmR0DS14,130
579
+ pip/_vendor/pep517/__pycache__/__init__.cpython-310.pyc,,
580
+ pip/_vendor/pep517/__pycache__/build.cpython-310.pyc,,
581
+ pip/_vendor/pep517/__pycache__/check.cpython-310.pyc,,
582
+ pip/_vendor/pep517/__pycache__/colorlog.cpython-310.pyc,,
583
+ pip/_vendor/pep517/__pycache__/compat.cpython-310.pyc,,
584
+ pip/_vendor/pep517/__pycache__/dirtools.cpython-310.pyc,,
585
+ pip/_vendor/pep517/__pycache__/envbuild.cpython-310.pyc,,
586
+ pip/_vendor/pep517/__pycache__/meta.cpython-310.pyc,,
587
+ pip/_vendor/pep517/__pycache__/wrappers.cpython-310.pyc,,
588
+ pip/_vendor/pep517/build.py,sha256=2bar6EdjwIz2Dlfy94qdxn3oA9mVnnny40mfoT5f-qI,3457
589
+ pip/_vendor/pep517/check.py,sha256=bCORq1WrHjhpTONa-zpAqG0EB9rHNuhO1ORu6DsDuL8,6084
590
+ pip/_vendor/pep517/colorlog.py,sha256=Tk9AuYm_cLF3BKTBoSTJt9bRryn0aFojIQOwbfVUTxQ,4098
591
+ pip/_vendor/pep517/compat.py,sha256=NmLImE5oiDT3gbEhJ4w7xeoMFcpAPrGu_NltBytSJUY,1253
592
+ pip/_vendor/pep517/dirtools.py,sha256=2mkAkAL0mRz_elYFjRKuekTJVipH1zTn4tbf1EDev84,1129
593
+ pip/_vendor/pep517/envbuild.py,sha256=zFde--rmzjXMLXcm7SA_3hDtgk5VCTA8hjpk88RbF6E,6100
594
+ pip/_vendor/pep517/in_process/__init__.py,sha256=MyWoAi8JHdcBv7yXuWpUSVADbx6LSB9rZh7kTIgdA8Y,563
595
+ pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-310.pyc,,
596
+ pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-310.pyc,,
597
+ pip/_vendor/pep517/in_process/_in_process.py,sha256=D3waguyNSGcwosociD5USfcycYr2RCzCjYtxX5UHQmQ,11201
598
+ pip/_vendor/pep517/meta.py,sha256=8mnM5lDnT4zXQpBTliJbRGfesH7iioHwozbDxALPS9Y,2463
599
+ pip/_vendor/pep517/wrappers.py,sha256=impq7Cz_LL1iDF1iiOzYWB4MaEu6O6Gps7TJ5qsJz1Q,13429
600
+ pip/_vendor/pkg_resources/__init__.py,sha256=NnpQ3g6BCHzpMgOR_OLBmYtniY4oOzdKpwqghfq_6ug,108287
601
+ pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc,,
602
+ pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc,,
603
+ pip/_vendor/pkg_resources/py31compat.py,sha256=CRk8fkiPRDLsbi5pZcKsHI__Pbmh_94L8mr9Qy9Ab2U,562
604
+ pip/_vendor/platformdirs/__init__.py,sha256=Aizpxewwd4nY63Gqw-Od1Rso9Ah4bSoc6rkx-GBRu2Y,12676
605
+ pip/_vendor/platformdirs/__main__.py,sha256=ZmsnTxEOxtTvwa-Y_Vfab_JN3X4XCVeN8X0yyy9-qnc,1176
606
+ pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc,,
607
+ pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc,,
608
+ pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc,,
609
+ pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc,,
610
+ pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc,,
611
+ pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc,,
612
+ pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc,,
613
+ pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc,,
614
+ pip/_vendor/platformdirs/android.py,sha256=xhlD4NmrKCARe5lgnpBGYo4lOYxEOBOByNDNYy91gEE,4012
615
+ pip/_vendor/platformdirs/api.py,sha256=MXKHXOL3eh_-trSok-JUTjAR_zjmmKF3rjREVABjP8s,4910
616
+ pip/_vendor/platformdirs/macos.py,sha256=-3UXQewbT0yMhMdkzRXfXGAntmLIH7Qt4a9Hlf8I5_Y,2655
617
+ pip/_vendor/platformdirs/unix.py,sha256=b4aVYTz0qZ50HntwOXo8r6tp82jAa3qTjxw-WlnC2yc,6910
618
+ pip/_vendor/platformdirs/version.py,sha256=bXzLJCe23FNQRQrf7ZRWKejxWnct_wft7dxdkMGT33E,80
619
+ pip/_vendor/platformdirs/windows.py,sha256=ISruopR5UGBePC0BxCxXevkZYfjJsIZc49YWU5iYfQ4,6439
620
+ pip/_vendor/progress/__init__.py,sha256=1HejNZtv2ouUNQeStUDAtZrtwkz_3FmYKQ476hJ7zOs,5294
621
+ pip/_vendor/progress/__pycache__/__init__.cpython-310.pyc,,
622
+ pip/_vendor/progress/__pycache__/bar.cpython-310.pyc,,
623
+ pip/_vendor/progress/__pycache__/colors.cpython-310.pyc,,
624
+ pip/_vendor/progress/__pycache__/counter.cpython-310.pyc,,
625
+ pip/_vendor/progress/__pycache__/spinner.cpython-310.pyc,,
626
+ pip/_vendor/progress/bar.py,sha256=GbedY0oZ-Q1duXjmvVLO0tSf-uTSH7hJ3zzyI91Esws,2942
627
+ pip/_vendor/progress/colors.py,sha256=cCYXQnYFYVmQKKmYEbQ_lj6SPSFzdw4FN98F2x2kR-U,2655
628
+ pip/_vendor/progress/counter.py,sha256=zYt9DWH0_05s8Q9TrJwHVud-WwsyyaR3PwYtk5hxwwQ,1613
629
+ pip/_vendor/progress/spinner.py,sha256=u5ElzW94XEiLGH-aAlr54VJtKfeK745xr6UfGvvflzU,1461
630
+ pip/_vendor/pygments/__init__.py,sha256=CAmA9UthykwxvtutUcH0IxqtiyQcSg6CmYdM-jKlcRY,3002
631
+ pip/_vendor/pygments/__main__.py,sha256=X7rGLMUC54EXgO14FZ9goKXZDmhPzKXTsUglmb_McIU,353
632
+ pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc,,
633
+ pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc,,
634
+ pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc,,
635
+ pip/_vendor/pygments/__pycache__/console.cpython-310.pyc,,
636
+ pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc,,
637
+ pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc,,
638
+ pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc,,
639
+ pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc,,
640
+ pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc,,
641
+ pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc,,
642
+ pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc,,
643
+ pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc,,
644
+ pip/_vendor/pygments/__pycache__/style.cpython-310.pyc,,
645
+ pip/_vendor/pygments/__pycache__/token.cpython-310.pyc,,
646
+ pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc,,
647
+ pip/_vendor/pygments/__pycache__/util.cpython-310.pyc,,
648
+ pip/_vendor/pygments/cmdline.py,sha256=XpsyWgErcSqHC7rXiYKLF3Y61Uy8SR2DNQDDhZGuezg,23408
649
+ pip/_vendor/pygments/console.py,sha256=QZXBUAkyl4dPLQ1e6XHjQu3mmXBWvuGQwsQT2q1mtCY,1697
650
+ pip/_vendor/pygments/filter.py,sha256=35iMZiB1rcuogxokm92kViB2DPXPp_wWoxWuMmwvvzY,1938
651
+ pip/_vendor/pygments/filters/__init__.py,sha256=-veOimzCyYGEARru2Dfo6ofSYcZ8tGsIVuMprtaZQ24,40292
652
+ pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc,,
653
+ pip/_vendor/pygments/formatter.py,sha256=zSBbX2U_OOriy7SJvSTK6OAxjuXtROWxQlNpJEJZjBA,2917
654
+ pip/_vendor/pygments/formatters/__init__.py,sha256=fjkYDy5-F998XczKi0ymHFayr5ObIRLHF8cgp9k8kpA,5119
655
+ pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc,,
656
+ pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc,,
657
+ pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc,,
658
+ pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc,,
659
+ pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc,,
660
+ pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc,,
661
+ pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc,,
662
+ pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc,,
663
+ pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc,,
664
+ pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc,,
665
+ pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc,,
666
+ pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc,,
667
+ pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc,,
668
+ pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc,,
669
+ pip/_vendor/pygments/formatters/_mapping.py,sha256=3A1rYSjYN9MLduCFWy2_mYhllPVpwlw55anRYnPXX8w,6516
670
+ pip/_vendor/pygments/formatters/bbcode.py,sha256=cSKMOioUnE4TzvCCsK4IbJ6G78W07ZwHtkz4V1Wte0U,3314
671
+ pip/_vendor/pygments/formatters/groff.py,sha256=ULgMKvGeLswX0KZn3IBp0p0U3rruiSHBtpl6O5qbqLs,5005
672
+ pip/_vendor/pygments/formatters/html.py,sha256=0jM7Jc4xA4tsjmPq35uklm_En_OVdcNb0__SEXp2pDQ,35330
673
+ pip/_vendor/pygments/formatters/img.py,sha256=r4iag_jCfyv_LhIt-1fRDeVEEoAfVJzkD9nZChIwiS8,21819
674
+ pip/_vendor/pygments/formatters/irc.py,sha256=gi_IeIZeNaTfTMtvseLigZdS6lNicN7r7O7rnI6myo0,5871
675
+ pip/_vendor/pygments/formatters/latex.py,sha256=qZUerrHt2Nn2aB4gJcdqj99qBkIxl_1v1ukYsf230Gk,18930
676
+ pip/_vendor/pygments/formatters/other.py,sha256=Q01LtkqPZ8m_EYdgMVzXPUGjHoL00lXI3By97wzytYU,5073
677
+ pip/_vendor/pygments/formatters/pangomarkup.py,sha256=ZpjALTSuGFwviJd5kOYwr-1NgqxCX3XRJrjXC7x1UbQ,2212
678
+ pip/_vendor/pygments/formatters/rtf.py,sha256=qh7-z_wbUsTY6z7fZUGrYECYBlWB0wEdBwIZVEVybL0,5014
679
+ pip/_vendor/pygments/formatters/svg.py,sha256=T7Jj004I3JUPOr48aAhQ368K2qWCciUyMQ2tdU-LB-4,7335
680
+ pip/_vendor/pygments/formatters/terminal.py,sha256=cRD5hitINOkYlGZo9ma252vpJYPSGNgLivrsm6zGyec,4674
681
+ pip/_vendor/pygments/formatters/terminal256.py,sha256=Bvz9zZL3UWc94TDm1GhKMI4x0BTit0XplhyRL0zmtkw,11753
682
+ pip/_vendor/pygments/lexer.py,sha256=ECXWlEsbRnKs_njozZns6BGQ4riTMzct_BzAr3zV6dY,31937
683
+ pip/_vendor/pygments/lexers/__init__.py,sha256=6Ds0GVBP3jrIU02wmjRdpoL4eFGhwT2IVD1zf3cV5_Y,11307
684
+ pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc,,
685
+ pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc,,
686
+ pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc,,
687
+ pip/_vendor/pygments/lexers/_mapping.py,sha256=jAxmvh5wvNkD-p3Fh6E7hY_B0sGbcxWRfseT6iq7ex4,70032
688
+ pip/_vendor/pygments/lexers/python.py,sha256=LXnk43Lcngqn9xj6eRqdk2f73oF4kHZWiwgHMM_RlVM,52776
689
+ pip/_vendor/pygments/modeline.py,sha256=37fen3cf1moCz4vMVJqX41eAQCmj8pzUchikgPcHp-U,986
690
+ pip/_vendor/pygments/plugin.py,sha256=zGSig3S7QX-3o6RDxd4_Uvice_t25l_BN9aQQ9k8vmU,1727
691
+ pip/_vendor/pygments/regexopt.py,sha256=mj8Fgu3sT0d5PZwRwDLexEvVOQbuHeosubQnqVwgiqs,3072
692
+ pip/_vendor/pygments/scanner.py,sha256=nGoHy-Npk2ylUd4bws_CJN1hK785Xqo8e0teRmNX2jo,3091
693
+ pip/_vendor/pygments/sphinxext.py,sha256=FZ2puvLe2Bztqtj6UJvQd7D8TvtOZ1GsfRJObvH59tE,4630
694
+ pip/_vendor/pygments/style.py,sha256=lGyan5bU42q1kGMfFqafwL3g1j5EurTvfkv8vdP7NzQ,6257
695
+ pip/_vendor/pygments/styles/__init__.py,sha256=Qx2zq6ufbDNE2cTp51M-s9zW-sDE-KLIqFw31qr3Bhg,3252
696
+ pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc,,
697
+ pip/_vendor/pygments/token.py,sha256=lNPgeaQTzu2DEUi6n_lxAIU7uy4DVj8LMI3nSVnTjks,6143
698
+ pip/_vendor/pygments/unistring.py,sha256=Xs0FzOzE0l0iWRoTlcgi-Q_kAMdF5Gt5FL_goGKJc98,63188
699
+ pip/_vendor/pygments/util.py,sha256=s9n8BQXIxG3lIwCPWv5-ci8yhaqq5JbEVK9v8Z-8_3I,9123
700
+ pip/_vendor/pyparsing/__init__.py,sha256=jXheGTFT1b6r_4WxuOE0uVUqiouLJ3WHzOScpLieRgQ,9107
701
+ pip/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc,,
702
+ pip/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc,,
703
+ pip/_vendor/pyparsing/__pycache__/common.cpython-310.pyc,,
704
+ pip/_vendor/pyparsing/__pycache__/core.cpython-310.pyc,,
705
+ pip/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc,,
706
+ pip/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc,,
707
+ pip/_vendor/pyparsing/__pycache__/results.cpython-310.pyc,,
708
+ pip/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc,,
709
+ pip/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc,,
710
+ pip/_vendor/pyparsing/__pycache__/util.cpython-310.pyc,,
711
+ pip/_vendor/pyparsing/actions.py,sha256=60v7mETOBzc01YPH_qQD5isavgcSJpAfIKpzgjM3vaU,6429
712
+ pip/_vendor/pyparsing/common.py,sha256=lFL97ooIeR75CmW5hjURZqwDCTgruqltcTCZ-ulLO2Q,12936
713
+ pip/_vendor/pyparsing/core.py,sha256=GtQsD06HlwKPc7M8K8hyOuOW-cRnd87AxAHq-ad5lEk,212248
714
+ pip/_vendor/pyparsing/diagram/__init__.py,sha256=h0gsUwmo5N3shgvfXVQTtqvTpUAv-ZdQjSQ6IUJmsxY,22165
715
+ pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc,,
716
+ pip/_vendor/pyparsing/exceptions.py,sha256=H4D9gqMavqmAFSsdrU_J6bO-jA-T-A7yvtXWZpooIUA,9030
717
+ pip/_vendor/pyparsing/helpers.py,sha256=kqpIZFG-y0fQ3g_TmloYllo9we6YCYiewZMXIK0y5wc,38299
718
+ pip/_vendor/pyparsing/results.py,sha256=4D-oURF1cLeL7k0d3zMqUuWH_gTjop_OrZwik9O0HXU,25339
719
+ pip/_vendor/pyparsing/testing.py,sha256=szs8AKZREZMhL0y0vsMfaTVAnpqPHetg6VKJBNmc4QY,13388
720
+ pip/_vendor/pyparsing/unicode.py,sha256=IR-ioeGY29cZ49tG8Ts7ITPWWNP5G2DcZs58oa8zn44,10381
721
+ pip/_vendor/pyparsing/util.py,sha256=kq772O5YSeXOSdP-M31EWpbH_ayj7BMHImBYo9xPD5M,6805
722
+ pip/_vendor/requests/__init__.py,sha256=6IUFQM6K9V2NIu4fe4LtUsN21-TFbw_w3EfPpdUN-qc,5130
723
+ pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc,,
724
+ pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc,,
725
+ pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc,,
726
+ pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc,,
727
+ pip/_vendor/requests/__pycache__/api.cpython-310.pyc,,
728
+ pip/_vendor/requests/__pycache__/auth.cpython-310.pyc,,
729
+ pip/_vendor/requests/__pycache__/certs.cpython-310.pyc,,
730
+ pip/_vendor/requests/__pycache__/compat.cpython-310.pyc,,
731
+ pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc,,
732
+ pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc,,
733
+ pip/_vendor/requests/__pycache__/help.cpython-310.pyc,,
734
+ pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc,,
735
+ pip/_vendor/requests/__pycache__/models.cpython-310.pyc,,
736
+ pip/_vendor/requests/__pycache__/packages.cpython-310.pyc,,
737
+ pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc,,
738
+ pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc,,
739
+ pip/_vendor/requests/__pycache__/structures.cpython-310.pyc,,
740
+ pip/_vendor/requests/__pycache__/utils.cpython-310.pyc,,
741
+ pip/_vendor/requests/__version__.py,sha256=q8miOQaomOv3S74lK4eQs1zZ5jwcnOusyEU-M2idhts,441
742
+ pip/_vendor/requests/_internal_utils.py,sha256=Zx3PnEUccyfsB-ie11nZVAW8qClJy0gx1qNME7rgT18,1096
743
+ pip/_vendor/requests/adapters.py,sha256=WazYJQ_b2LHhNDb_y0hscNlWVsSe5ca5I3pymPrer5w,21861
744
+ pip/_vendor/requests/api.py,sha256=hjuoP79IAEmX6Dysrw8t032cLfwLHxbI_wM4gC5G9t0,6402
745
+ pip/_vendor/requests/auth.py,sha256=OMoJIVKyRLy9THr91y8rxysZuclwPB-K1Xg1zBomUhQ,10207
746
+ pip/_vendor/requests/certs.py,sha256=nXRVq9DtGmv_1AYbwjTu9UrgAcdJv05ZvkNeaoLOZxY,465
747
+ pip/_vendor/requests/compat.py,sha256=N1281mkcTluMjKqCSLf88LR6HNOygEhS1TbR9LLsoVY,2114
748
+ pip/_vendor/requests/cookies.py,sha256=Y-bKX6TvW3FnYlE6Au0SXtVVWcaNdFvuAwQxw-G0iTI,18430
749
+ pip/_vendor/requests/exceptions.py,sha256=VcpBXOL-9JYhNbK8OZxCIImBgpQSXJlUelDPf1f-pmM,3446
750
+ pip/_vendor/requests/help.py,sha256=dyhe3lcmHXnFCzDiZVjcGmVvvO_jtsfAm-AC542ndw8,3972
751
+ pip/_vendor/requests/hooks.py,sha256=QReGyy0bRcr5rkwCuObNakbYsc7EkiKeBwG4qHekr2Q,757
752
+ pip/_vendor/requests/models.py,sha256=7pzscX_47qxx7-zEaBWGxMoB33Vdf6HLoUKZh1ktEvM,35116
753
+ pip/_vendor/requests/packages.py,sha256=njJmVifY4aSctuW3PP5EFRCxjEwMRDO6J_feG2dKWsI,695
754
+ pip/_vendor/requests/sessions.py,sha256=Zu-Y9YPlwTIsyFx1hvIrc3ziyeFpuFPqcOuSuz8BNWs,29835
755
+ pip/_vendor/requests/status_codes.py,sha256=gT79Pbs_cQjBgp-fvrUgg1dn2DQO32bDj4TInjnMPSc,4188
756
+ pip/_vendor/requests/structures.py,sha256=msAtr9mq1JxHd-JRyiILfdFlpbJwvvFuP3rfUQT_QxE,3005
757
+ pip/_vendor/requests/utils.py,sha256=siud-FQ6xgKFbL49DRvAb3PMQMMHoeCL_TCmuHh9AUU,33301
758
+ pip/_vendor/resolvelib/__init__.py,sha256=UL-B2BDI0_TRIqkfGwLHKLxY-LjBlomz7941wDqzB1I,537
759
+ pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc,,
760
+ pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc,,
761
+ pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc,,
762
+ pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc,,
763
+ pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc,,
764
+ pip/_vendor/resolvelib/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
765
+ pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc,,
766
+ pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc,,
767
+ pip/_vendor/resolvelib/compat/collections_abc.py,sha256=uy8xUZ-NDEw916tugUXm8HgwCGiMO0f-RcdnpkfXfOs,156
768
+ pip/_vendor/resolvelib/providers.py,sha256=roVmFBItQJ0TkhNua65h8LdNny7rmeqVEXZu90QiP4o,5872
769
+ pip/_vendor/resolvelib/reporters.py,sha256=fW91NKf-lK8XN7i6Yd_rczL5QeOT3sc6AKhpaTEnP3E,1583
770
+ pip/_vendor/resolvelib/resolvers.py,sha256=2wYzVGBGerbmcIpH8cFmgSKgLSETz8jmwBMGjCBMHG4,17592
771
+ pip/_vendor/resolvelib/structs.py,sha256=IVIYof6sA_N4ZEiE1C1UhzTX495brCNnyCdgq6CYq28,4794
772
+ pip/_vendor/rich/__init__.py,sha256=wF1th4JGBCVC02xfaw8j6P2MrFcJaQJL72scKtEmDYQ,5804
773
+ pip/_vendor/rich/__main__.py,sha256=vd1PP-o7_1un-ThdgMU9LHV-D8z56yz_-fryczn38eE,8810
774
+ pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc,,
775
+ pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc,,
776
+ pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc,,
777
+ pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc,,
778
+ pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc,,
779
+ pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc,,
780
+ pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc,,
781
+ pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc,,
782
+ pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc,,
783
+ pip/_vendor/rich/__pycache__/_lru_cache.cpython-310.pyc,,
784
+ pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc,,
785
+ pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc,,
786
+ pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc,,
787
+ pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc,,
788
+ pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc,,
789
+ pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc,,
790
+ pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc,,
791
+ pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc,,
792
+ pip/_vendor/rich/__pycache__/abc.cpython-310.pyc,,
793
+ pip/_vendor/rich/__pycache__/align.cpython-310.pyc,,
794
+ pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc,,
795
+ pip/_vendor/rich/__pycache__/bar.cpython-310.pyc,,
796
+ pip/_vendor/rich/__pycache__/box.cpython-310.pyc,,
797
+ pip/_vendor/rich/__pycache__/cells.cpython-310.pyc,,
798
+ pip/_vendor/rich/__pycache__/color.cpython-310.pyc,,
799
+ pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc,,
800
+ pip/_vendor/rich/__pycache__/columns.cpython-310.pyc,,
801
+ pip/_vendor/rich/__pycache__/console.cpython-310.pyc,,
802
+ pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc,,
803
+ pip/_vendor/rich/__pycache__/containers.cpython-310.pyc,,
804
+ pip/_vendor/rich/__pycache__/control.cpython-310.pyc,,
805
+ pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc,,
806
+ pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc,,
807
+ pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc,,
808
+ pip/_vendor/rich/__pycache__/errors.cpython-310.pyc,,
809
+ pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc,,
810
+ pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc,,
811
+ pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc,,
812
+ pip/_vendor/rich/__pycache__/json.cpython-310.pyc,,
813
+ pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc,,
814
+ pip/_vendor/rich/__pycache__/layout.cpython-310.pyc,,
815
+ pip/_vendor/rich/__pycache__/live.cpython-310.pyc,,
816
+ pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc,,
817
+ pip/_vendor/rich/__pycache__/logging.cpython-310.pyc,,
818
+ pip/_vendor/rich/__pycache__/markup.cpython-310.pyc,,
819
+ pip/_vendor/rich/__pycache__/measure.cpython-310.pyc,,
820
+ pip/_vendor/rich/__pycache__/padding.cpython-310.pyc,,
821
+ pip/_vendor/rich/__pycache__/pager.cpython-310.pyc,,
822
+ pip/_vendor/rich/__pycache__/palette.cpython-310.pyc,,
823
+ pip/_vendor/rich/__pycache__/panel.cpython-310.pyc,,
824
+ pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc,,
825
+ pip/_vendor/rich/__pycache__/progress.cpython-310.pyc,,
826
+ pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc,,
827
+ pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc,,
828
+ pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc,,
829
+ pip/_vendor/rich/__pycache__/region.cpython-310.pyc,,
830
+ pip/_vendor/rich/__pycache__/repr.cpython-310.pyc,,
831
+ pip/_vendor/rich/__pycache__/rule.cpython-310.pyc,,
832
+ pip/_vendor/rich/__pycache__/scope.cpython-310.pyc,,
833
+ pip/_vendor/rich/__pycache__/screen.cpython-310.pyc,,
834
+ pip/_vendor/rich/__pycache__/segment.cpython-310.pyc,,
835
+ pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc,,
836
+ pip/_vendor/rich/__pycache__/status.cpython-310.pyc,,
837
+ pip/_vendor/rich/__pycache__/style.cpython-310.pyc,,
838
+ pip/_vendor/rich/__pycache__/styled.cpython-310.pyc,,
839
+ pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc,,
840
+ pip/_vendor/rich/__pycache__/table.cpython-310.pyc,,
841
+ pip/_vendor/rich/__pycache__/tabulate.cpython-310.pyc,,
842
+ pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc,,
843
+ pip/_vendor/rich/__pycache__/text.cpython-310.pyc,,
844
+ pip/_vendor/rich/__pycache__/theme.cpython-310.pyc,,
845
+ pip/_vendor/rich/__pycache__/themes.cpython-310.pyc,,
846
+ pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc,,
847
+ pip/_vendor/rich/__pycache__/tree.cpython-310.pyc,,
848
+ pip/_vendor/rich/_cell_widths.py,sha256=2n4EiJi3X9sqIq0O16kUZ_zy6UYMd3xFfChlKfnW1Hc,10096
849
+ pip/_vendor/rich/_emoji_codes.py,sha256=hu1VL9nbVdppJrVoijVshRlcRRe_v3dju3Mmd2sKZdY,140235
850
+ pip/_vendor/rich/_emoji_replace.py,sha256=n-kcetsEUx2ZUmhQrfeMNc-teeGhpuSQ5F8VPBsyvDo,1064
851
+ pip/_vendor/rich/_extension.py,sha256=Xt47QacCKwYruzjDi-gOBq724JReDj9Cm9xUi5fr-34,265
852
+ pip/_vendor/rich/_inspect.py,sha256=vq6BjewwEvddjcBTr_lCcjYQBsKi92aTNpcXyaA5ERA,7444
853
+ pip/_vendor/rich/_log_render.py,sha256=1ByI0PA1ZpxZY3CGJOK54hjlq4X-Bz_boIjIqCd8Kns,3225
854
+ pip/_vendor/rich/_loop.py,sha256=hV_6CLdoPm0va22Wpw4zKqM0RYsz3TZxXj0PoS-9eDQ,1236
855
+ pip/_vendor/rich/_lru_cache.py,sha256=M7H1ZQF32o6SxrpOur9zTIhEHlNXT9XnrcdhruUmG5I,1246
856
+ pip/_vendor/rich/_palettes.py,sha256=cdev1JQKZ0JvlguV9ipHgznTdnvlIzUFDBb0It2PzjI,7063
857
+ pip/_vendor/rich/_pick.py,sha256=evDt8QN4lF5CiwrUIXlOJCntitBCOsI3ZLPEIAVRLJU,423
858
+ pip/_vendor/rich/_ratio.py,sha256=2lLSliL025Y-YMfdfGbutkQDevhcyDqc-DtUYW9mU70,5472
859
+ pip/_vendor/rich/_spinners.py,sha256=huT1biTlwyp9Lm8S7bLfVzg1psUaIH5xHDwTaWEHVh0,26521
860
+ pip/_vendor/rich/_stack.py,sha256=-C8OK7rxn3sIUdVwxZBBpeHhIzX0eI-VM3MemYfaXm0,351
861
+ pip/_vendor/rich/_timer.py,sha256=zelxbT6oPFZnNrwWPpc1ktUeAT-Vc4fuFcRZLQGLtMI,417
862
+ pip/_vendor/rich/_windows.py,sha256=nBO71icHMIHlzT7hg6fkoIdh1mT-5MvDdPDwunkshyw,2065
863
+ pip/_vendor/rich/_wrap.py,sha256=OtnSxnERkuNlSM1d_MYtNg8KIYTcTBk3peg16dCZH_U,1804
864
+ pip/_vendor/rich/abc.py,sha256=ON-E-ZqSSheZ88VrKX2M3PXpFbGEUUZPMa_Af0l-4f0,890
865
+ pip/_vendor/rich/align.py,sha256=2zRHV8SzR5eP-vQkSDgjmgsBLBluCBwykgejAW6oRD0,10425
866
+ pip/_vendor/rich/ansi.py,sha256=QaVVkfvVL6C3OsuWI9iQ-iJFkMsMohjYlxgMLnVTEPo,6676
867
+ pip/_vendor/rich/bar.py,sha256=a7UD303BccRCrEhGjfMElpv5RFYIinaAhAuqYqhUvmw,3264
868
+ pip/_vendor/rich/box.py,sha256=o0ywz1iW0WjGLPrRVDAZPh1CVPEgAOaWsn8Bf3sf43g,9069
869
+ pip/_vendor/rich/cells.py,sha256=NadN20gFxE8Aj-2S3Drn7qgn-ZpsRZcNnTNtweRL7rA,4285
870
+ pip/_vendor/rich/color.py,sha256=SD3yTf3t8japb-jOv8GYCMCDqyzpipzXS_0rAXhSlU4,17285
871
+ pip/_vendor/rich/color_triplet.py,sha256=3lhQkdJbvWPoLDO-AnYImAWmJvV5dlgYNCVZ97ORaN4,1054
872
+ pip/_vendor/rich/columns.py,sha256=HUX0KcMm9dsKNi11fTbiM_h2iDtl8ySCaVcxlalEzq8,7131
873
+ pip/_vendor/rich/console.py,sha256=bioCy8012eZ8PIOBxMyyqxYPltKk2pGEG9jmwylNCQk,81236
874
+ pip/_vendor/rich/constrain.py,sha256=1VIPuC8AgtKWrcncQrjBdYqA3JVWysu6jZo1rrh7c7Q,1288
875
+ pip/_vendor/rich/containers.py,sha256=aKgm5UDHn5Nmui6IJaKdsZhbHClh_X7D-_Wg8Ehrr7s,5497
876
+ pip/_vendor/rich/control.py,sha256=qxg6Yjd78XuF0VxthlT8O4dpvpACYwKkBfm2S4-IvHA,5298
877
+ pip/_vendor/rich/default_styles.py,sha256=At42PcWzmnYWcx5fUOKyOUpI8HK5m4ItZqxkgHToaMs,7614
878
+ pip/_vendor/rich/diagnose.py,sha256=4L8SZfbqjIRotzJ39QzD9-d4I80FyV1mNKHryg1eArE,183
879
+ pip/_vendor/rich/emoji.py,sha256=omTF9asaAnsM4yLY94eR_9dgRRSm1lHUszX20D1yYCQ,2501
880
+ pip/_vendor/rich/errors.py,sha256=5pP3Kc5d4QJ_c0KFsxrfyhjiPVe7J1zOqSFbFAzcV-Y,642
881
+ pip/_vendor/rich/file_proxy.py,sha256=fHeReSO3VJ7IbH_9ri-OrPYbFC3UYOzeTNjngiiWOcY,1613
882
+ pip/_vendor/rich/filesize.py,sha256=oQJnM5_7ygkpzt3GtNq5l3F6gmB7YahBA5vpdQVKLwI,2511
883
+ pip/_vendor/rich/highlighter.py,sha256=AdhjC0meTYswZ_xKgka0cRYdNjLABLUzHAbyF3QpPWo,4894
884
+ pip/_vendor/rich/json.py,sha256=RCm4lXBXrjvXHpqrWPH8wdGP0jEo4IohLmkddlhRY18,5051
885
+ pip/_vendor/rich/jupyter.py,sha256=4sxNAwJs4g3dYfWy_enPw9fp0Tdn-82tV4T9uh9vAOM,3025
886
+ pip/_vendor/rich/layout.py,sha256=b64KMDP2EPiC103P-v-_VZKGY13oWiiGS418P_KRRlc,14048
887
+ pip/_vendor/rich/live.py,sha256=OKxMaFU5sFfuR--cJftGYjSvg1VPQri1U_DNZUjCsvI,13711
888
+ pip/_vendor/rich/live_render.py,sha256=zElm3PrfSIvjOce28zETHMIUf9pFYSUA5o0AflgUP64,3667
889
+ pip/_vendor/rich/logging.py,sha256=YNcCSK6pCo2Wg6JKqScAe6VgFqebHBnS5nDnBO4gXAA,10868
890
+ pip/_vendor/rich/markup.py,sha256=hsVW_k1TIvj5OPPQ12ihAii9HSVa8N1TStvA5B2GGpo,8058
891
+ pip/_vendor/rich/measure.py,sha256=Z74XvzIgLZm0xH-QIo1uX5d4oahavHe8D8MKyxLNqPQ,5258
892
+ pip/_vendor/rich/padding.py,sha256=kTFGsdGe0os7tXLnHKpwTI90CXEvrceeZGCshmJy5zw,4970
893
+ pip/_vendor/rich/pager.py,sha256=VK_2EfH0JduZWdyV-KZma06bvi_V5PWmHG6W7BoiaTg,838
894
+ pip/_vendor/rich/palette.py,sha256=lInvR1ODDT2f3UZMfL1grq7dY_pDdKHw4bdUgOGaM4Y,3396
895
+ pip/_vendor/rich/panel.py,sha256=O6ORyIhDcOLSEasTjpcDvmhvIcppPGCeQoXpoycIUT8,8637
896
+ pip/_vendor/rich/pretty.py,sha256=HAB68BpYysaL1EXeV4X5Tt-U2hDlcLpbFz06fkojWWE,32572
897
+ pip/_vendor/rich/progress.py,sha256=jcgi7aMnQ_YjSpAmQkalwtNsgVn9i56SeZGprr7tuOk,35926
898
+ pip/_vendor/rich/progress_bar.py,sha256=ELiBaxJOgsRYKpNIrot7BC0bFXvmf8cTd6nxI02BbK0,7762
899
+ pip/_vendor/rich/prompt.py,sha256=gKVd13YWv6jedzwcRPZGUINBjC-xcJhJ_xz_NvMW80c,11307
900
+ pip/_vendor/rich/protocol.py,sha256=Vx6n4fEoSDhzSup8t3KH0iK2RWyssIOks5E0S1qw1GA,1401
901
+ pip/_vendor/rich/region.py,sha256=rNT9xZrVZTYIXZC0NYn41CJQwYNbR-KecPOxTgQvB8Y,166
902
+ pip/_vendor/rich/repr.py,sha256=1A0U0_ibG_bZbw71pUBIctO9Az-CQUuyOTbiKcJOwyw,4309
903
+ pip/_vendor/rich/rule.py,sha256=cPK6NYo4kzh-vM_8a-rXajXplsbaHa6ahErYvGSsrJ0,4197
904
+ pip/_vendor/rich/scope.py,sha256=HX13XsJfqzQHpPfw4Jn9JmJjCsRj9uhHxXQEqjkwyLA,2842
905
+ pip/_vendor/rich/screen.py,sha256=YoeReESUhx74grqb0mSSb9lghhysWmFHYhsbMVQjXO8,1591
906
+ pip/_vendor/rich/segment.py,sha256=MBBAWaHyqCQFCfiNbrTW4BGaFR1uU31XktJ1S3Taqb4,23916
907
+ pip/_vendor/rich/spinner.py,sha256=V6dW0jIk5IO0_2MyxyftQf5VjCHI0T2cRhJ4F31hPIQ,4312
908
+ pip/_vendor/rich/status.py,sha256=gJsIXIZeSo3urOyxRUjs6VrhX5CZrA0NxIQ-dxhCnwo,4425
909
+ pip/_vendor/rich/style.py,sha256=AD1I7atfclsFCtGeL8ronH1Jj-02WLp9ZQ2VYqmpBjM,26469
910
+ pip/_vendor/rich/styled.py,sha256=eZNnzGrI4ki_54pgY3Oj0T-x3lxdXTYh4_ryDB24wBU,1258
911
+ pip/_vendor/rich/syntax.py,sha256=pJAD08ywowg5xVwTGCqUOMpDYskjoMoDYEV-hryEX5s,26994
912
+ pip/_vendor/rich/table.py,sha256=oQAEBaV4zMUPyg_tSA93_GrCirdIf-osolxf9wb3pEo,36757
913
+ pip/_vendor/rich/tabulate.py,sha256=nl0oeNbiXectEgTHyj3K7eN4NZMISpaogpOdZyEOGbs,1700
914
+ pip/_vendor/rich/terminal_theme.py,sha256=E0nI_ycFpvflamt-KVCY4J52LmUjRi1Y6ICB-Ef3gMo,1459
915
+ pip/_vendor/rich/text.py,sha256=auX3LpY-I6PBiNyxB3o3LyMEx7lna2cx9IbNQJDwtw8,44424
916
+ pip/_vendor/rich/theme.py,sha256=GKNtQhDBZKAzDaY0vQVQQFzbc0uWfFe6CJXA-syT7zQ,3627
917
+ pip/_vendor/rich/themes.py,sha256=0xgTLozfabebYtcJtDdC5QkX5IVUEaviqDUJJh4YVFk,102
918
+ pip/_vendor/rich/traceback.py,sha256=hAU3IR295eFuup_px2NU4aCEWu7KQs1qpZbnqoHCtR0,25935
919
+ pip/_vendor/rich/tree.py,sha256=JxyWbc27ZuwoLQnd7I-rSsRsqI9lzaVKlfTLJXla9U0,9122
920
+ pip/_vendor/six.py,sha256=TOOfQi7nFGfMrIvtdr6wX4wyHH8M7aknmuLfo2cBBrM,34549
921
+ pip/_vendor/tenacity/__init__.py,sha256=GLLsTFD4Bd5VDgTR6mU_FxyOsrxc48qONorVaRebeD4,18257
922
+ pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc,,
923
+ pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc,,
924
+ pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc,,
925
+ pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc,,
926
+ pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc,,
927
+ pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc,,
928
+ pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc,,
929
+ pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc,,
930
+ pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc,,
931
+ pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc,,
932
+ pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc,,
933
+ pip/_vendor/tenacity/_asyncio.py,sha256=HEb0BVJEeBJE9P-m9XBxh1KcaF96BwoeqkJCL5sbVcQ,3314
934
+ pip/_vendor/tenacity/_utils.py,sha256=-y68scDcyoqvTJuJJ0GTfjdSCljEYlbCYvgk7nM4NdM,1944
935
+ pip/_vendor/tenacity/after.py,sha256=dlmyxxFy2uqpLXDr838DiEd7jgv2AGthsWHGYcGYsaI,1496
936
+ pip/_vendor/tenacity/before.py,sha256=7XtvRmO0dRWUp8SVn24OvIiGFj8-4OP5muQRUiWgLh0,1376
937
+ pip/_vendor/tenacity/before_sleep.py,sha256=ThyDvqKU5yle_IvYQz_b6Tp6UjUS0PhVp6zgqYl9U6Y,1908
938
+ pip/_vendor/tenacity/nap.py,sha256=fRWvnz1aIzbIq9Ap3gAkAZgDH6oo5zxMrU6ZOVByq0I,1383
939
+ pip/_vendor/tenacity/retry.py,sha256=62R71W59bQjuNyFKsDM7hE2aEkEPtwNBRA0tnsEvgSk,6645
940
+ pip/_vendor/tenacity/stop.py,sha256=sKHmHaoSaW6sKu3dTxUVKr1-stVkY7lw4Y9yjZU30zQ,2790
941
+ pip/_vendor/tenacity/tornadoweb.py,sha256=E8lWO2nwe6dJgoB-N2HhQprYLDLB_UdSgFnv-EN6wKE,2145
942
+ pip/_vendor/tenacity/wait.py,sha256=e_Saa6I2tsNLpCL1t9897wN2fGb0XQMQlE4bU2t9V2w,6691
943
+ pip/_vendor/tomli/__init__.py,sha256=z1Elt0nLAqU5Y0DOn9p__8QnLWavlEOpRyQikdYgKro,230
944
+ pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc,,
945
+ pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc,,
946
+ pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc,,
947
+ pip/_vendor/tomli/_parser.py,sha256=50BD4o9YbzFAGAYyZLqZC8F81DQ7iWWyJnrHNwBKa6A,22415
948
+ pip/_vendor/tomli/_re.py,sha256=5GPfgXKteg7wRFCF-DzlkAPI2ilHbkMK2-JC49F-AJQ,2681
949
+ pip/_vendor/typing_extensions.py,sha256=1uqi_RSlI7gos4eJB_NEV3d5wQwzTUQHd3_jrkbTo8Q,87149
950
+ pip/_vendor/urllib3/__init__.py,sha256=j3yzHIbmW7CS-IKQJ9-PPQf_YKO8EOAey_rMW0UR7us,2763
951
+ pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc,,
952
+ pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc,,
953
+ pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc,,
954
+ pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc,,
955
+ pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc,,
956
+ pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc,,
957
+ pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc,,
958
+ pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc,,
959
+ pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc,,
960
+ pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc,,
961
+ pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc,,
962
+ pip/_vendor/urllib3/_collections.py,sha256=pyASJJhW7wdOpqJj9QJA8FyGRfr8E8uUUhqUvhF0728,11372
963
+ pip/_vendor/urllib3/_version.py,sha256=_NdMUQaeBvFHAX2z3zAIX2Wum58A6rVtY1f7ByHsQ4g,63
964
+ pip/_vendor/urllib3/connection.py,sha256=6zokyboYYKm9VkyrQvVVLgxMyCZK7n9Vmg_2ZK6pbhc,20076
965
+ pip/_vendor/urllib3/connectionpool.py,sha256=eQ1jWJ2dDdRADuCj9Yx7RCpzY2iM8P32jGHbjYBkAIk,39308
966
+ pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
967
+ pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc,,
968
+ pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc,,
969
+ pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc,,
970
+ pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc,,
971
+ pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc,,
972
+ pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc,,
973
+ pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc,,
974
+ pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=bDbyOEhW2CKLJcQqAKAyrEHN-aklsyHFKq6vF8ZFsmk,957
975
+ pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
976
+ pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc,,
977
+ pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc,,
978
+ pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc,,
979
+ pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=4Xk64qIkPBt09A5q-RIFUuDhNc9mXilVapm7WnYnzRw,17632
980
+ pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=B2JBB2_NRP02xK6DCa1Pa9IuxrPwxzDzZbixQkb7U9M,13922
981
+ pip/_vendor/urllib3/contrib/appengine.py,sha256=lfzpHFmJiO82shClLEm3QB62SYgHWnjpZOH_2JhU5Tc,11034
982
+ pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=ej9gGvfAb2Gt00lafFp45SIoRz-QwrQ4WChm6gQmAlM,4538
983
+ pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=DD4pInv_3OEEGffEFynBoirc8ldR789sLmGSKukzA0E,16900
984
+ pip/_vendor/urllib3/contrib/securetransport.py,sha256=4qUKo7PUV-vVIqXmr2BD-sH7qplB918jiD5eNsRI9vU,34449
985
+ pip/_vendor/urllib3/contrib/socks.py,sha256=aRi9eWXo9ZEb95XUxef4Z21CFlnnjbEiAo9HOseoMt4,7097
986
+ pip/_vendor/urllib3/exceptions.py,sha256=0Mnno3KHTNfXRfY7638NufOPkUb6mXOm-Lqj-4x2w8A,8217
987
+ pip/_vendor/urllib3/fields.py,sha256=kvLDCg_JmH1lLjUUEY_FLS8UhY7hBvDPuVETbY8mdrM,8579
988
+ pip/_vendor/urllib3/filepost.py,sha256=5b_qqgRHVlL7uLtdAYBzBh-GHmU5AfJVt_2N0XS3PeY,2440
989
+ pip/_vendor/urllib3/packages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
990
+ pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc,,
991
+ pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc,,
992
+ pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
993
+ pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc,,
994
+ pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc,,
995
+ pip/_vendor/urllib3/packages/backports/makefile.py,sha256=nbzt3i0agPVP07jqqgjhaYjMmuAi_W5E0EywZivVO8E,1417
996
+ pip/_vendor/urllib3/packages/six.py,sha256=1LVW7ljqRirFlfExjwl-v1B7vSAUNTmzGMs-qays2zg,34666
997
+ pip/_vendor/urllib3/poolmanager.py,sha256=xfVcBtEBc8Xwa8jURSqdS7QmXvUuMHhjL1sjFOY-rUk,20001
998
+ pip/_vendor/urllib3/request.py,sha256=ZFSIqX0C6WizixecChZ3_okyu7BEv0lZu1VT0s6h4SM,5985
999
+ pip/_vendor/urllib3/response.py,sha256=hGhGBh7TkEkh_IQg5C1W_xuPNrgIKv5BUXPyE-q0LuE,28203
1000
+ pip/_vendor/urllib3/util/__init__.py,sha256=JEmSmmqqLyaw8P51gUImZh8Gwg9i1zSe-DoqAitn2nc,1155
1001
+ pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc,,
1002
+ pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc,,
1003
+ pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc,,
1004
+ pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc,,
1005
+ pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc,,
1006
+ pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc,,
1007
+ pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc,,
1008
+ pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc,,
1009
+ pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc,,
1010
+ pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc,,
1011
+ pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc,,
1012
+ pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc,,
1013
+ pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc,,
1014
+ pip/_vendor/urllib3/util/connection.py,sha256=5Lx2B1PW29KxBn2T0xkN1CBgRBa3gGVJBKoQoRogEVk,4901
1015
+ pip/_vendor/urllib3/util/proxy.py,sha256=zUvPPCJrp6dOF0N4GAVbOcl6o-4uXKSrGiTkkr5vUS4,1605
1016
+ pip/_vendor/urllib3/util/queue.py,sha256=nRgX8_eX-_VkvxoX096QWoz8Ps0QHUAExILCY_7PncM,498
1017
+ pip/_vendor/urllib3/util/request.py,sha256=NnzaEKQ1Pauw5MFMV6HmgEMHITf0Aua9fQuzi2uZzGc,4123
1018
+ pip/_vendor/urllib3/util/response.py,sha256=GJpg3Egi9qaJXRwBh5wv-MNuRWan5BIu40oReoxWP28,3510
1019
+ pip/_vendor/urllib3/util/retry.py,sha256=eUKOZ16Ya_Tu3_sXF5KVhLJmHQF7YXOCX-MWRoZVzqs,22011
1020
+ pip/_vendor/urllib3/util/ssl_.py,sha256=X4-AqW91aYPhPx6-xbf66yHFQKbqqfC_5Zt4WkLX1Hc,17177
1021
+ pip/_vendor/urllib3/util/ssl_match_hostname.py,sha256=w01jCYuwvQ038p9mhc1P1gF8IiTN1qHakThpoukOlbw,5751
1022
+ pip/_vendor/urllib3/util/ssltransport.py,sha256=NA-u5rMTrDFDFC8QzRKUEKMG0561hOD4qBTr3Z4pv6E,6895
1023
+ pip/_vendor/urllib3/util/timeout.py,sha256=QSbBUNOB9yh6AnDn61SrLQ0hg5oz0I9-uXEG91AJuIg,10003
1024
+ pip/_vendor/urllib3/util/url.py,sha256=QVEzcbHipbXyCWwH6R4K4TR-N8T4LM55WEMwNUTBmLE,14047
1025
+ pip/_vendor/urllib3/util/wait.py,sha256=3MUKRSAUJDB2tgco7qRUskW0zXGAWYvRRE4Q1_6xlLs,5404
1026
+ pip/_vendor/vendor.txt,sha256=H-9fScoah7nx4K8O4Uft0l5iH2P_mVo4RqyuMVOTJEc,496
1027
+ pip/_vendor/webencodings/__init__.py,sha256=qOBJIuPy_4ByYH6W_bNgJF-qYQ2DoU-dKsDu5yRWCXg,10579
1028
+ pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc,,
1029
+ pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc,,
1030
+ pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc,,
1031
+ pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc,,
1032
+ pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc,,
1033
+ pip/_vendor/webencodings/labels.py,sha256=4AO_KxTddqGtrL9ns7kAPjb0CcN6xsCIxbK37HY9r3E,8979
1034
+ pip/_vendor/webencodings/mklabels.py,sha256=GYIeywnpaLnP0GSic8LFWgd0UVvO_l1Nc6YoF-87R_4,1305
1035
+ pip/_vendor/webencodings/tests.py,sha256=OtGLyjhNY1fvkW1GvLJ_FV9ZoqC9Anyjr7q3kxTbzNs,6563
1036
+ pip/_vendor/webencodings/x_user_defined.py,sha256=yOqWSdmpytGfUgh_Z6JYgDNhoc-BAHyyeeT15Fr42tM,4307
1037
+ pip/py.typed,sha256=EBVvvPRTn_eIpz5e5QztSCdrMX7Qwd7VP93RSoIlZ2I,286
scripts/myenv/lib/python3.10/site-packages/pip-22.0.2.dist-info/REQUESTED ADDED
File without changes
scripts/myenv/lib/python3.10/site-packages/pip-22.0.2.dist-info/WHEEL ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.37.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
scripts/myenv/lib/python3.10/site-packages/pip-22.0.2.dist-info/entry_points.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ [console_scripts]
2
+ pip = pip._internal.cli.main:main
3
+ pip3 = pip._internal.cli.main:main
4
+ pip3.10 = pip._internal.cli.main:main
5
+
scripts/myenv/lib/python3.10/site-packages/pip-22.0.2.dist-info/top_level.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ pip
scripts/myenv/lib/python3.10/site-packages/pkg_resources/__init__.py ADDED
The diff for this file is too large to render. See raw diff
 
scripts/myenv/lib/python3.10/site-packages/pkg_resources/__pycache__/__init__.cpython-310.pyc ADDED
Binary file (101 kB). View file
 
scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/__init__.py ADDED
File without changes
scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-310.pyc ADDED
Binary file (196 Bytes). View file
 
scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-310.pyc ADDED
Binary file (20.3 kB). View file
 
scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-310.pyc ADDED
Binary file (199 kB). View file
 
scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/appdirs.py ADDED
@@ -0,0 +1,608 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python
2
+ # -*- coding: utf-8 -*-
3
+ # Copyright (c) 2005-2010 ActiveState Software Inc.
4
+ # Copyright (c) 2013 Eddy Petrișor
5
+
6
+ """Utilities for determining application-specific dirs.
7
+
8
+ See <http://github.com/ActiveState/appdirs> for details and usage.
9
+ """
10
+ # Dev Notes:
11
+ # - MSDN on where to store app data files:
12
+ # http://support.microsoft.com/default.aspx?scid=kb;en-us;310294#XSLTH3194121123120121120120
13
+ # - Mac OS X: http://developer.apple.com/documentation/MacOSX/Conceptual/BPFileSystem/index.html
14
+ # - XDG spec for Un*x: http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
15
+
16
+ __version_info__ = (1, 4, 3)
17
+ __version__ = '.'.join(map(str, __version_info__))
18
+
19
+
20
+ import sys
21
+ import os
22
+
23
+ PY3 = sys.version_info[0] == 3
24
+
25
+ if PY3:
26
+ unicode = str
27
+
28
+ if sys.platform.startswith('java'):
29
+ import platform
30
+ os_name = platform.java_ver()[3][0]
31
+ if os_name.startswith('Windows'): # "Windows XP", "Windows 7", etc.
32
+ system = 'win32'
33
+ elif os_name.startswith('Mac'): # "Mac OS X", etc.
34
+ system = 'darwin'
35
+ else: # "Linux", "SunOS", "FreeBSD", etc.
36
+ # Setting this to "linux2" is not ideal, but only Windows or Mac
37
+ # are actually checked for and the rest of the module expects
38
+ # *sys.platform* style strings.
39
+ system = 'linux2'
40
+ else:
41
+ system = sys.platform
42
+
43
+
44
+
45
+ def user_data_dir(appname=None, appauthor=None, version=None, roaming=False):
46
+ r"""Return full path to the user-specific data dir for this application.
47
+
48
+ "appname" is the name of application.
49
+ If None, just the system directory is returned.
50
+ "appauthor" (only used on Windows) is the name of the
51
+ appauthor or distributing body for this application. Typically
52
+ it is the owning company name. This falls back to appname. You may
53
+ pass False to disable it.
54
+ "version" is an optional version path element to append to the
55
+ path. You might want to use this if you want multiple versions
56
+ of your app to be able to run independently. If used, this
57
+ would typically be "<major>.<minor>".
58
+ Only applied when appname is present.
59
+ "roaming" (boolean, default False) can be set True to use the Windows
60
+ roaming appdata directory. That means that for users on a Windows
61
+ network setup for roaming profiles, this user data will be
62
+ sync'd on login. See
63
+ <http://technet.microsoft.com/en-us/library/cc766489(WS.10).aspx>
64
+ for a discussion of issues.
65
+
66
+ Typical user data directories are:
67
+ Mac OS X: ~/Library/Application Support/<AppName>
68
+ Unix: ~/.local/share/<AppName> # or in $XDG_DATA_HOME, if defined
69
+ Win XP (not roaming): C:\Documents and Settings\<username>\Application Data\<AppAuthor>\<AppName>
70
+ Win XP (roaming): C:\Documents and Settings\<username>\Local Settings\Application Data\<AppAuthor>\<AppName>
71
+ Win 7 (not roaming): C:\Users\<username>\AppData\Local\<AppAuthor>\<AppName>
72
+ Win 7 (roaming): C:\Users\<username>\AppData\Roaming\<AppAuthor>\<AppName>
73
+
74
+ For Unix, we follow the XDG spec and support $XDG_DATA_HOME.
75
+ That means, by default "~/.local/share/<AppName>".
76
+ """
77
+ if system == "win32":
78
+ if appauthor is None:
79
+ appauthor = appname
80
+ const = roaming and "CSIDL_APPDATA" or "CSIDL_LOCAL_APPDATA"
81
+ path = os.path.normpath(_get_win_folder(const))
82
+ if appname:
83
+ if appauthor is not False:
84
+ path = os.path.join(path, appauthor, appname)
85
+ else:
86
+ path = os.path.join(path, appname)
87
+ elif system == 'darwin':
88
+ path = os.path.expanduser('~/Library/Application Support/')
89
+ if appname:
90
+ path = os.path.join(path, appname)
91
+ else:
92
+ path = os.getenv('XDG_DATA_HOME', os.path.expanduser("~/.local/share"))
93
+ if appname:
94
+ path = os.path.join(path, appname)
95
+ if appname and version:
96
+ path = os.path.join(path, version)
97
+ return path
98
+
99
+
100
+ def site_data_dir(appname=None, appauthor=None, version=None, multipath=False):
101
+ r"""Return full path to the user-shared data dir for this application.
102
+
103
+ "appname" is the name of application.
104
+ If None, just the system directory is returned.
105
+ "appauthor" (only used on Windows) is the name of the
106
+ appauthor or distributing body for this application. Typically
107
+ it is the owning company name. This falls back to appname. You may
108
+ pass False to disable it.
109
+ "version" is an optional version path element to append to the
110
+ path. You might want to use this if you want multiple versions
111
+ of your app to be able to run independently. If used, this
112
+ would typically be "<major>.<minor>".
113
+ Only applied when appname is present.
114
+ "multipath" is an optional parameter only applicable to *nix
115
+ which indicates that the entire list of data dirs should be
116
+ returned. By default, the first item from XDG_DATA_DIRS is
117
+ returned, or '/usr/local/share/<AppName>',
118
+ if XDG_DATA_DIRS is not set
119
+
120
+ Typical site data directories are:
121
+ Mac OS X: /Library/Application Support/<AppName>
122
+ Unix: /usr/local/share/<AppName> or /usr/share/<AppName>
123
+ Win XP: C:\Documents and Settings\All Users\Application Data\<AppAuthor>\<AppName>
124
+ Vista: (Fail! "C:\ProgramData" is a hidden *system* directory on Vista.)
125
+ Win 7: C:\ProgramData\<AppAuthor>\<AppName> # Hidden, but writeable on Win 7.
126
+
127
+ For Unix, this is using the $XDG_DATA_DIRS[0] default.
128
+
129
+ WARNING: Do not use this on Windows. See the Vista-Fail note above for why.
130
+ """
131
+ if system == "win32":
132
+ if appauthor is None:
133
+ appauthor = appname
134
+ path = os.path.normpath(_get_win_folder("CSIDL_COMMON_APPDATA"))
135
+ if appname:
136
+ if appauthor is not False:
137
+ path = os.path.join(path, appauthor, appname)
138
+ else:
139
+ path = os.path.join(path, appname)
140
+ elif system == 'darwin':
141
+ path = os.path.expanduser('/Library/Application Support')
142
+ if appname:
143
+ path = os.path.join(path, appname)
144
+ else:
145
+ # XDG default for $XDG_DATA_DIRS
146
+ # only first, if multipath is False
147
+ path = os.getenv('XDG_DATA_DIRS',
148
+ os.pathsep.join(['/usr/local/share', '/usr/share']))
149
+ pathlist = [os.path.expanduser(x.rstrip(os.sep)) for x in path.split(os.pathsep)]
150
+ if appname:
151
+ if version:
152
+ appname = os.path.join(appname, version)
153
+ pathlist = [os.sep.join([x, appname]) for x in pathlist]
154
+
155
+ if multipath:
156
+ path = os.pathsep.join(pathlist)
157
+ else:
158
+ path = pathlist[0]
159
+ return path
160
+
161
+ if appname and version:
162
+ path = os.path.join(path, version)
163
+ return path
164
+
165
+
166
+ def user_config_dir(appname=None, appauthor=None, version=None, roaming=False):
167
+ r"""Return full path to the user-specific config dir for this application.
168
+
169
+ "appname" is the name of application.
170
+ If None, just the system directory is returned.
171
+ "appauthor" (only used on Windows) is the name of the
172
+ appauthor or distributing body for this application. Typically
173
+ it is the owning company name. This falls back to appname. You may
174
+ pass False to disable it.
175
+ "version" is an optional version path element to append to the
176
+ path. You might want to use this if you want multiple versions
177
+ of your app to be able to run independently. If used, this
178
+ would typically be "<major>.<minor>".
179
+ Only applied when appname is present.
180
+ "roaming" (boolean, default False) can be set True to use the Windows
181
+ roaming appdata directory. That means that for users on a Windows
182
+ network setup for roaming profiles, this user data will be
183
+ sync'd on login. See
184
+ <http://technet.microsoft.com/en-us/library/cc766489(WS.10).aspx>
185
+ for a discussion of issues.
186
+
187
+ Typical user config directories are:
188
+ Mac OS X: same as user_data_dir
189
+ Unix: ~/.config/<AppName> # or in $XDG_CONFIG_HOME, if defined
190
+ Win *: same as user_data_dir
191
+
192
+ For Unix, we follow the XDG spec and support $XDG_CONFIG_HOME.
193
+ That means, by default "~/.config/<AppName>".
194
+ """
195
+ if system in ["win32", "darwin"]:
196
+ path = user_data_dir(appname, appauthor, None, roaming)
197
+ else:
198
+ path = os.getenv('XDG_CONFIG_HOME', os.path.expanduser("~/.config"))
199
+ if appname:
200
+ path = os.path.join(path, appname)
201
+ if appname and version:
202
+ path = os.path.join(path, version)
203
+ return path
204
+
205
+
206
+ def site_config_dir(appname=None, appauthor=None, version=None, multipath=False):
207
+ r"""Return full path to the user-shared data dir for this application.
208
+
209
+ "appname" is the name of application.
210
+ If None, just the system directory is returned.
211
+ "appauthor" (only used on Windows) is the name of the
212
+ appauthor or distributing body for this application. Typically
213
+ it is the owning company name. This falls back to appname. You may
214
+ pass False to disable it.
215
+ "version" is an optional version path element to append to the
216
+ path. You might want to use this if you want multiple versions
217
+ of your app to be able to run independently. If used, this
218
+ would typically be "<major>.<minor>".
219
+ Only applied when appname is present.
220
+ "multipath" is an optional parameter only applicable to *nix
221
+ which indicates that the entire list of config dirs should be
222
+ returned. By default, the first item from XDG_CONFIG_DIRS is
223
+ returned, or '/etc/xdg/<AppName>', if XDG_CONFIG_DIRS is not set
224
+
225
+ Typical site config directories are:
226
+ Mac OS X: same as site_data_dir
227
+ Unix: /etc/xdg/<AppName> or $XDG_CONFIG_DIRS[i]/<AppName> for each value in
228
+ $XDG_CONFIG_DIRS
229
+ Win *: same as site_data_dir
230
+ Vista: (Fail! "C:\ProgramData" is a hidden *system* directory on Vista.)
231
+
232
+ For Unix, this is using the $XDG_CONFIG_DIRS[0] default, if multipath=False
233
+
234
+ WARNING: Do not use this on Windows. See the Vista-Fail note above for why.
235
+ """
236
+ if system in ["win32", "darwin"]:
237
+ path = site_data_dir(appname, appauthor)
238
+ if appname and version:
239
+ path = os.path.join(path, version)
240
+ else:
241
+ # XDG default for $XDG_CONFIG_DIRS
242
+ # only first, if multipath is False
243
+ path = os.getenv('XDG_CONFIG_DIRS', '/etc/xdg')
244
+ pathlist = [os.path.expanduser(x.rstrip(os.sep)) for x in path.split(os.pathsep)]
245
+ if appname:
246
+ if version:
247
+ appname = os.path.join(appname, version)
248
+ pathlist = [os.sep.join([x, appname]) for x in pathlist]
249
+
250
+ if multipath:
251
+ path = os.pathsep.join(pathlist)
252
+ else:
253
+ path = pathlist[0]
254
+ return path
255
+
256
+
257
+ def user_cache_dir(appname=None, appauthor=None, version=None, opinion=True):
258
+ r"""Return full path to the user-specific cache dir for this application.
259
+
260
+ "appname" is the name of application.
261
+ If None, just the system directory is returned.
262
+ "appauthor" (only used on Windows) is the name of the
263
+ appauthor or distributing body for this application. Typically
264
+ it is the owning company name. This falls back to appname. You may
265
+ pass False to disable it.
266
+ "version" is an optional version path element to append to the
267
+ path. You might want to use this if you want multiple versions
268
+ of your app to be able to run independently. If used, this
269
+ would typically be "<major>.<minor>".
270
+ Only applied when appname is present.
271
+ "opinion" (boolean) can be False to disable the appending of
272
+ "Cache" to the base app data dir for Windows. See
273
+ discussion below.
274
+
275
+ Typical user cache directories are:
276
+ Mac OS X: ~/Library/Caches/<AppName>
277
+ Unix: ~/.cache/<AppName> (XDG default)
278
+ Win XP: C:\Documents and Settings\<username>\Local Settings\Application Data\<AppAuthor>\<AppName>\Cache
279
+ Vista: C:\Users\<username>\AppData\Local\<AppAuthor>\<AppName>\Cache
280
+
281
+ On Windows the only suggestion in the MSDN docs is that local settings go in
282
+ the `CSIDL_LOCAL_APPDATA` directory. This is identical to the non-roaming
283
+ app data dir (the default returned by `user_data_dir` above). Apps typically
284
+ put cache data somewhere *under* the given dir here. Some examples:
285
+ ...\Mozilla\Firefox\Profiles\<ProfileName>\Cache
286
+ ...\Acme\SuperApp\Cache\1.0
287
+ OPINION: This function appends "Cache" to the `CSIDL_LOCAL_APPDATA` value.
288
+ This can be disabled with the `opinion=False` option.
289
+ """
290
+ if system == "win32":
291
+ if appauthor is None:
292
+ appauthor = appname
293
+ path = os.path.normpath(_get_win_folder("CSIDL_LOCAL_APPDATA"))
294
+ if appname:
295
+ if appauthor is not False:
296
+ path = os.path.join(path, appauthor, appname)
297
+ else:
298
+ path = os.path.join(path, appname)
299
+ if opinion:
300
+ path = os.path.join(path, "Cache")
301
+ elif system == 'darwin':
302
+ path = os.path.expanduser('~/Library/Caches')
303
+ if appname:
304
+ path = os.path.join(path, appname)
305
+ else:
306
+ path = os.getenv('XDG_CACHE_HOME', os.path.expanduser('~/.cache'))
307
+ if appname:
308
+ path = os.path.join(path, appname)
309
+ if appname and version:
310
+ path = os.path.join(path, version)
311
+ return path
312
+
313
+
314
+ def user_state_dir(appname=None, appauthor=None, version=None, roaming=False):
315
+ r"""Return full path to the user-specific state dir for this application.
316
+
317
+ "appname" is the name of application.
318
+ If None, just the system directory is returned.
319
+ "appauthor" (only used on Windows) is the name of the
320
+ appauthor or distributing body for this application. Typically
321
+ it is the owning company name. This falls back to appname. You may
322
+ pass False to disable it.
323
+ "version" is an optional version path element to append to the
324
+ path. You might want to use this if you want multiple versions
325
+ of your app to be able to run independently. If used, this
326
+ would typically be "<major>.<minor>".
327
+ Only applied when appname is present.
328
+ "roaming" (boolean, default False) can be set True to use the Windows
329
+ roaming appdata directory. That means that for users on a Windows
330
+ network setup for roaming profiles, this user data will be
331
+ sync'd on login. See
332
+ <http://technet.microsoft.com/en-us/library/cc766489(WS.10).aspx>
333
+ for a discussion of issues.
334
+
335
+ Typical user state directories are:
336
+ Mac OS X: same as user_data_dir
337
+ Unix: ~/.local/state/<AppName> # or in $XDG_STATE_HOME, if defined
338
+ Win *: same as user_data_dir
339
+
340
+ For Unix, we follow this Debian proposal <https://wiki.debian.org/XDGBaseDirectorySpecification#state>
341
+ to extend the XDG spec and support $XDG_STATE_HOME.
342
+
343
+ That means, by default "~/.local/state/<AppName>".
344
+ """
345
+ if system in ["win32", "darwin"]:
346
+ path = user_data_dir(appname, appauthor, None, roaming)
347
+ else:
348
+ path = os.getenv('XDG_STATE_HOME', os.path.expanduser("~/.local/state"))
349
+ if appname:
350
+ path = os.path.join(path, appname)
351
+ if appname and version:
352
+ path = os.path.join(path, version)
353
+ return path
354
+
355
+
356
+ def user_log_dir(appname=None, appauthor=None, version=None, opinion=True):
357
+ r"""Return full path to the user-specific log dir for this application.
358
+
359
+ "appname" is the name of application.
360
+ If None, just the system directory is returned.
361
+ "appauthor" (only used on Windows) is the name of the
362
+ appauthor or distributing body for this application. Typically
363
+ it is the owning company name. This falls back to appname. You may
364
+ pass False to disable it.
365
+ "version" is an optional version path element to append to the
366
+ path. You might want to use this if you want multiple versions
367
+ of your app to be able to run independently. If used, this
368
+ would typically be "<major>.<minor>".
369
+ Only applied when appname is present.
370
+ "opinion" (boolean) can be False to disable the appending of
371
+ "Logs" to the base app data dir for Windows, and "log" to the
372
+ base cache dir for Unix. See discussion below.
373
+
374
+ Typical user log directories are:
375
+ Mac OS X: ~/Library/Logs/<AppName>
376
+ Unix: ~/.cache/<AppName>/log # or under $XDG_CACHE_HOME if defined
377
+ Win XP: C:\Documents and Settings\<username>\Local Settings\Application Data\<AppAuthor>\<AppName>\Logs
378
+ Vista: C:\Users\<username>\AppData\Local\<AppAuthor>\<AppName>\Logs
379
+
380
+ On Windows the only suggestion in the MSDN docs is that local settings
381
+ go in the `CSIDL_LOCAL_APPDATA` directory. (Note: I'm interested in
382
+ examples of what some windows apps use for a logs dir.)
383
+
384
+ OPINION: This function appends "Logs" to the `CSIDL_LOCAL_APPDATA`
385
+ value for Windows and appends "log" to the user cache dir for Unix.
386
+ This can be disabled with the `opinion=False` option.
387
+ """
388
+ if system == "darwin":
389
+ path = os.path.join(
390
+ os.path.expanduser('~/Library/Logs'),
391
+ appname)
392
+ elif system == "win32":
393
+ path = user_data_dir(appname, appauthor, version)
394
+ version = False
395
+ if opinion:
396
+ path = os.path.join(path, "Logs")
397
+ else:
398
+ path = user_cache_dir(appname, appauthor, version)
399
+ version = False
400
+ if opinion:
401
+ path = os.path.join(path, "log")
402
+ if appname and version:
403
+ path = os.path.join(path, version)
404
+ return path
405
+
406
+
407
+ class AppDirs(object):
408
+ """Convenience wrapper for getting application dirs."""
409
+ def __init__(self, appname=None, appauthor=None, version=None,
410
+ roaming=False, multipath=False):
411
+ self.appname = appname
412
+ self.appauthor = appauthor
413
+ self.version = version
414
+ self.roaming = roaming
415
+ self.multipath = multipath
416
+
417
+ @property
418
+ def user_data_dir(self):
419
+ return user_data_dir(self.appname, self.appauthor,
420
+ version=self.version, roaming=self.roaming)
421
+
422
+ @property
423
+ def site_data_dir(self):
424
+ return site_data_dir(self.appname, self.appauthor,
425
+ version=self.version, multipath=self.multipath)
426
+
427
+ @property
428
+ def user_config_dir(self):
429
+ return user_config_dir(self.appname, self.appauthor,
430
+ version=self.version, roaming=self.roaming)
431
+
432
+ @property
433
+ def site_config_dir(self):
434
+ return site_config_dir(self.appname, self.appauthor,
435
+ version=self.version, multipath=self.multipath)
436
+
437
+ @property
438
+ def user_cache_dir(self):
439
+ return user_cache_dir(self.appname, self.appauthor,
440
+ version=self.version)
441
+
442
+ @property
443
+ def user_state_dir(self):
444
+ return user_state_dir(self.appname, self.appauthor,
445
+ version=self.version)
446
+
447
+ @property
448
+ def user_log_dir(self):
449
+ return user_log_dir(self.appname, self.appauthor,
450
+ version=self.version)
451
+
452
+
453
+ #---- internal support stuff
454
+
455
+ def _get_win_folder_from_registry(csidl_name):
456
+ """This is a fallback technique at best. I'm not sure if using the
457
+ registry for this guarantees us the correct answer for all CSIDL_*
458
+ names.
459
+ """
460
+ if PY3:
461
+ import winreg as _winreg
462
+ else:
463
+ import _winreg
464
+
465
+ shell_folder_name = {
466
+ "CSIDL_APPDATA": "AppData",
467
+ "CSIDL_COMMON_APPDATA": "Common AppData",
468
+ "CSIDL_LOCAL_APPDATA": "Local AppData",
469
+ }[csidl_name]
470
+
471
+ key = _winreg.OpenKey(
472
+ _winreg.HKEY_CURRENT_USER,
473
+ r"Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders"
474
+ )
475
+ dir, type = _winreg.QueryValueEx(key, shell_folder_name)
476
+ return dir
477
+
478
+
479
+ def _get_win_folder_with_pywin32(csidl_name):
480
+ from win32com.shell import shellcon, shell
481
+ dir = shell.SHGetFolderPath(0, getattr(shellcon, csidl_name), 0, 0)
482
+ # Try to make this a unicode path because SHGetFolderPath does
483
+ # not return unicode strings when there is unicode data in the
484
+ # path.
485
+ try:
486
+ dir = unicode(dir)
487
+
488
+ # Downgrade to short path name if have highbit chars. See
489
+ # <http://bugs.activestate.com/show_bug.cgi?id=85099>.
490
+ has_high_char = False
491
+ for c in dir:
492
+ if ord(c) > 255:
493
+ has_high_char = True
494
+ break
495
+ if has_high_char:
496
+ try:
497
+ import win32api
498
+ dir = win32api.GetShortPathName(dir)
499
+ except ImportError:
500
+ pass
501
+ except UnicodeError:
502
+ pass
503
+ return dir
504
+
505
+
506
+ def _get_win_folder_with_ctypes(csidl_name):
507
+ import ctypes
508
+
509
+ csidl_const = {
510
+ "CSIDL_APPDATA": 26,
511
+ "CSIDL_COMMON_APPDATA": 35,
512
+ "CSIDL_LOCAL_APPDATA": 28,
513
+ }[csidl_name]
514
+
515
+ buf = ctypes.create_unicode_buffer(1024)
516
+ ctypes.windll.shell32.SHGetFolderPathW(None, csidl_const, None, 0, buf)
517
+
518
+ # Downgrade to short path name if have highbit chars. See
519
+ # <http://bugs.activestate.com/show_bug.cgi?id=85099>.
520
+ has_high_char = False
521
+ for c in buf:
522
+ if ord(c) > 255:
523
+ has_high_char = True
524
+ break
525
+ if has_high_char:
526
+ buf2 = ctypes.create_unicode_buffer(1024)
527
+ if ctypes.windll.kernel32.GetShortPathNameW(buf.value, buf2, 1024):
528
+ buf = buf2
529
+
530
+ return buf.value
531
+
532
+ def _get_win_folder_with_jna(csidl_name):
533
+ import array
534
+ from com.sun import jna
535
+ from com.sun.jna.platform import win32
536
+
537
+ buf_size = win32.WinDef.MAX_PATH * 2
538
+ buf = array.zeros('c', buf_size)
539
+ shell = win32.Shell32.INSTANCE
540
+ shell.SHGetFolderPath(None, getattr(win32.ShlObj, csidl_name), None, win32.ShlObj.SHGFP_TYPE_CURRENT, buf)
541
+ dir = jna.Native.toString(buf.tostring()).rstrip("\0")
542
+
543
+ # Downgrade to short path name if have highbit chars. See
544
+ # <http://bugs.activestate.com/show_bug.cgi?id=85099>.
545
+ has_high_char = False
546
+ for c in dir:
547
+ if ord(c) > 255:
548
+ has_high_char = True
549
+ break
550
+ if has_high_char:
551
+ buf = array.zeros('c', buf_size)
552
+ kernel = win32.Kernel32.INSTANCE
553
+ if kernel.GetShortPathName(dir, buf, buf_size):
554
+ dir = jna.Native.toString(buf.tostring()).rstrip("\0")
555
+
556
+ return dir
557
+
558
+ if system == "win32":
559
+ try:
560
+ import win32com.shell
561
+ _get_win_folder = _get_win_folder_with_pywin32
562
+ except ImportError:
563
+ try:
564
+ from ctypes import windll
565
+ _get_win_folder = _get_win_folder_with_ctypes
566
+ except ImportError:
567
+ try:
568
+ import com.sun.jna
569
+ _get_win_folder = _get_win_folder_with_jna
570
+ except ImportError:
571
+ _get_win_folder = _get_win_folder_from_registry
572
+
573
+
574
+ #---- self test code
575
+
576
+ if __name__ == "__main__":
577
+ appname = "MyApp"
578
+ appauthor = "MyCompany"
579
+
580
+ props = ("user_data_dir",
581
+ "user_config_dir",
582
+ "user_cache_dir",
583
+ "user_state_dir",
584
+ "user_log_dir",
585
+ "site_data_dir",
586
+ "site_config_dir")
587
+
588
+ print("-- app dirs %s --" % __version__)
589
+
590
+ print("-- app dirs (with optional 'version')")
591
+ dirs = AppDirs(appname, appauthor, version="1.0")
592
+ for prop in props:
593
+ print("%s: %s" % (prop, getattr(dirs, prop)))
594
+
595
+ print("\n-- app dirs (without optional 'version')")
596
+ dirs = AppDirs(appname, appauthor)
597
+ for prop in props:
598
+ print("%s: %s" % (prop, getattr(dirs, prop)))
599
+
600
+ print("\n-- app dirs (without optional 'appauthor')")
601
+ dirs = AppDirs(appname)
602
+ for prop in props:
603
+ print("%s: %s" % (prop, getattr(dirs, prop)))
604
+
605
+ print("\n-- app dirs (with disabled 'appauthor')")
606
+ dirs = AppDirs(appname, appauthor=False)
607
+ for prop in props:
608
+ print("%s: %s" % (prop, getattr(dirs, prop)))
scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__about__.py ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # This file is dual licensed under the terms of the Apache License, Version
2
+ # 2.0, and the BSD License. See the LICENSE file in the root of this repository
3
+ # for complete details.
4
+
5
+ __all__ = [
6
+ "__title__",
7
+ "__summary__",
8
+ "__uri__",
9
+ "__version__",
10
+ "__author__",
11
+ "__email__",
12
+ "__license__",
13
+ "__copyright__",
14
+ ]
15
+
16
+ __title__ = "packaging"
17
+ __summary__ = "Core utilities for Python packages"
18
+ __uri__ = "https://github.com/pypa/packaging"
19
+
20
+ __version__ = "21.2"
21
+
22
+ __author__ = "Donald Stufft and individual contributors"
23
+ __email__ = "[email protected]"
24
+
25
+ __license__ = "BSD-2-Clause or Apache-2.0"
26
+ __copyright__ = "2014-2019 %s" % __author__
scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__init__.py ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # This file is dual licensed under the terms of the Apache License, Version
2
+ # 2.0, and the BSD License. See the LICENSE file in the root of this repository
3
+ # for complete details.
4
+
5
+ from .__about__ import (
6
+ __author__,
7
+ __copyright__,
8
+ __email__,
9
+ __license__,
10
+ __summary__,
11
+ __title__,
12
+ __uri__,
13
+ __version__,
14
+ )
15
+
16
+ __all__ = [
17
+ "__title__",
18
+ "__summary__",
19
+ "__uri__",
20
+ "__version__",
21
+ "__author__",
22
+ "__email__",
23
+ "__license__",
24
+ "__copyright__",
25
+ ]
scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-310.pyc ADDED
Binary file (603 Bytes). View file
 
scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-310.pyc ADDED
Binary file (459 Bytes). View file
 
scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc ADDED
Binary file (7.31 kB). View file
 
scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc ADDED
Binary file (4.63 kB). View file
 
scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-310.pyc ADDED
Binary file (2.98 kB). View file
 
scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-310.pyc ADDED
Binary file (9.31 kB). View file
 
scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-310.pyc ADDED
Binary file (4 kB). View file
 
scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc ADDED
Binary file (22.2 kB). View file
 
scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-310.pyc ADDED
Binary file (12.2 kB). View file
 
scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-310.pyc ADDED
Binary file (12.9 kB). View file
 
scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_manylinux.py ADDED
@@ -0,0 +1,301 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import collections
2
+ import functools
3
+ import os
4
+ import re
5
+ import struct
6
+ import sys
7
+ import warnings
8
+ from typing import IO, Dict, Iterator, NamedTuple, Optional, Tuple
9
+
10
+
11
+ # Python does not provide platform information at sufficient granularity to
12
+ # identify the architecture of the running executable in some cases, so we
13
+ # determine it dynamically by reading the information from the running
14
+ # process. This only applies on Linux, which uses the ELF format.
15
+ class _ELFFileHeader:
16
+ # https://en.wikipedia.org/wiki/Executable_and_Linkable_Format#File_header
17
+ class _InvalidELFFileHeader(ValueError):
18
+ """
19
+ An invalid ELF file header was found.
20
+ """
21
+
22
+ ELF_MAGIC_NUMBER = 0x7F454C46
23
+ ELFCLASS32 = 1
24
+ ELFCLASS64 = 2
25
+ ELFDATA2LSB = 1
26
+ ELFDATA2MSB = 2
27
+ EM_386 = 3
28
+ EM_S390 = 22
29
+ EM_ARM = 40
30
+ EM_X86_64 = 62
31
+ EF_ARM_ABIMASK = 0xFF000000
32
+ EF_ARM_ABI_VER5 = 0x05000000
33
+ EF_ARM_ABI_FLOAT_HARD = 0x00000400
34
+
35
+ def __init__(self, file: IO[bytes]) -> None:
36
+ def unpack(fmt: str) -> int:
37
+ try:
38
+ data = file.read(struct.calcsize(fmt))
39
+ result: Tuple[int, ...] = struct.unpack(fmt, data)
40
+ except struct.error:
41
+ raise _ELFFileHeader._InvalidELFFileHeader()
42
+ return result[0]
43
+
44
+ self.e_ident_magic = unpack(">I")
45
+ if self.e_ident_magic != self.ELF_MAGIC_NUMBER:
46
+ raise _ELFFileHeader._InvalidELFFileHeader()
47
+ self.e_ident_class = unpack("B")
48
+ if self.e_ident_class not in {self.ELFCLASS32, self.ELFCLASS64}:
49
+ raise _ELFFileHeader._InvalidELFFileHeader()
50
+ self.e_ident_data = unpack("B")
51
+ if self.e_ident_data not in {self.ELFDATA2LSB, self.ELFDATA2MSB}:
52
+ raise _ELFFileHeader._InvalidELFFileHeader()
53
+ self.e_ident_version = unpack("B")
54
+ self.e_ident_osabi = unpack("B")
55
+ self.e_ident_abiversion = unpack("B")
56
+ self.e_ident_pad = file.read(7)
57
+ format_h = "<H" if self.e_ident_data == self.ELFDATA2LSB else ">H"
58
+ format_i = "<I" if self.e_ident_data == self.ELFDATA2LSB else ">I"
59
+ format_q = "<Q" if self.e_ident_data == self.ELFDATA2LSB else ">Q"
60
+ format_p = format_i if self.e_ident_class == self.ELFCLASS32 else format_q
61
+ self.e_type = unpack(format_h)
62
+ self.e_machine = unpack(format_h)
63
+ self.e_version = unpack(format_i)
64
+ self.e_entry = unpack(format_p)
65
+ self.e_phoff = unpack(format_p)
66
+ self.e_shoff = unpack(format_p)
67
+ self.e_flags = unpack(format_i)
68
+ self.e_ehsize = unpack(format_h)
69
+ self.e_phentsize = unpack(format_h)
70
+ self.e_phnum = unpack(format_h)
71
+ self.e_shentsize = unpack(format_h)
72
+ self.e_shnum = unpack(format_h)
73
+ self.e_shstrndx = unpack(format_h)
74
+
75
+
76
+ def _get_elf_header() -> Optional[_ELFFileHeader]:
77
+ try:
78
+ with open(sys.executable, "rb") as f:
79
+ elf_header = _ELFFileHeader(f)
80
+ except (OSError, TypeError, _ELFFileHeader._InvalidELFFileHeader):
81
+ return None
82
+ return elf_header
83
+
84
+
85
+ def _is_linux_armhf() -> bool:
86
+ # hard-float ABI can be detected from the ELF header of the running
87
+ # process
88
+ # https://static.docs.arm.com/ihi0044/g/aaelf32.pdf
89
+ elf_header = _get_elf_header()
90
+ if elf_header is None:
91
+ return False
92
+ result = elf_header.e_ident_class == elf_header.ELFCLASS32
93
+ result &= elf_header.e_ident_data == elf_header.ELFDATA2LSB
94
+ result &= elf_header.e_machine == elf_header.EM_ARM
95
+ result &= (
96
+ elf_header.e_flags & elf_header.EF_ARM_ABIMASK
97
+ ) == elf_header.EF_ARM_ABI_VER5
98
+ result &= (
99
+ elf_header.e_flags & elf_header.EF_ARM_ABI_FLOAT_HARD
100
+ ) == elf_header.EF_ARM_ABI_FLOAT_HARD
101
+ return result
102
+
103
+
104
+ def _is_linux_i686() -> bool:
105
+ elf_header = _get_elf_header()
106
+ if elf_header is None:
107
+ return False
108
+ result = elf_header.e_ident_class == elf_header.ELFCLASS32
109
+ result &= elf_header.e_ident_data == elf_header.ELFDATA2LSB
110
+ result &= elf_header.e_machine == elf_header.EM_386
111
+ return result
112
+
113
+
114
+ def _have_compatible_abi(arch: str) -> bool:
115
+ if arch == "armv7l":
116
+ return _is_linux_armhf()
117
+ if arch == "i686":
118
+ return _is_linux_i686()
119
+ return arch in {"x86_64", "aarch64", "ppc64", "ppc64le", "s390x"}
120
+
121
+
122
+ # If glibc ever changes its major version, we need to know what the last
123
+ # minor version was, so we can build the complete list of all versions.
124
+ # For now, guess what the highest minor version might be, assume it will
125
+ # be 50 for testing. Once this actually happens, update the dictionary
126
+ # with the actual value.
127
+ _LAST_GLIBC_MINOR: Dict[int, int] = collections.defaultdict(lambda: 50)
128
+
129
+
130
+ class _GLibCVersion(NamedTuple):
131
+ major: int
132
+ minor: int
133
+
134
+
135
+ def _glibc_version_string_confstr() -> Optional[str]:
136
+ """
137
+ Primary implementation of glibc_version_string using os.confstr.
138
+ """
139
+ # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely
140
+ # to be broken or missing. This strategy is used in the standard library
141
+ # platform module.
142
+ # https://github.com/python/cpython/blob/fcf1d003bf4f0100c/Lib/platform.py#L175-L183
143
+ try:
144
+ # os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17".
145
+ version_string = os.confstr("CS_GNU_LIBC_VERSION")
146
+ assert version_string is not None
147
+ _, version = version_string.split()
148
+ except (AssertionError, AttributeError, OSError, ValueError):
149
+ # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)...
150
+ return None
151
+ return version
152
+
153
+
154
+ def _glibc_version_string_ctypes() -> Optional[str]:
155
+ """
156
+ Fallback implementation of glibc_version_string using ctypes.
157
+ """
158
+ try:
159
+ import ctypes
160
+ except ImportError:
161
+ return None
162
+
163
+ # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen
164
+ # manpage says, "If filename is NULL, then the returned handle is for the
165
+ # main program". This way we can let the linker do the work to figure out
166
+ # which libc our process is actually using.
167
+ #
168
+ # We must also handle the special case where the executable is not a
169
+ # dynamically linked executable. This can occur when using musl libc,
170
+ # for example. In this situation, dlopen() will error, leading to an
171
+ # OSError. Interestingly, at least in the case of musl, there is no
172
+ # errno set on the OSError. The single string argument used to construct
173
+ # OSError comes from libc itself and is therefore not portable to
174
+ # hard code here. In any case, failure to call dlopen() means we
175
+ # can proceed, so we bail on our attempt.
176
+ try:
177
+ process_namespace = ctypes.CDLL(None)
178
+ except OSError:
179
+ return None
180
+
181
+ try:
182
+ gnu_get_libc_version = process_namespace.gnu_get_libc_version
183
+ except AttributeError:
184
+ # Symbol doesn't exist -> therefore, we are not linked to
185
+ # glibc.
186
+ return None
187
+
188
+ # Call gnu_get_libc_version, which returns a string like "2.5"
189
+ gnu_get_libc_version.restype = ctypes.c_char_p
190
+ version_str: str = gnu_get_libc_version()
191
+ # py2 / py3 compatibility:
192
+ if not isinstance(version_str, str):
193
+ version_str = version_str.decode("ascii")
194
+
195
+ return version_str
196
+
197
+
198
+ def _glibc_version_string() -> Optional[str]:
199
+ """Returns glibc version string, or None if not using glibc."""
200
+ return _glibc_version_string_confstr() or _glibc_version_string_ctypes()
201
+
202
+
203
+ def _parse_glibc_version(version_str: str) -> Tuple[int, int]:
204
+ """Parse glibc version.
205
+
206
+ We use a regexp instead of str.split because we want to discard any
207
+ random junk that might come after the minor version -- this might happen
208
+ in patched/forked versions of glibc (e.g. Linaro's version of glibc
209
+ uses version strings like "2.20-2014.11"). See gh-3588.
210
+ """
211
+ m = re.match(r"(?P<major>[0-9]+)\.(?P<minor>[0-9]+)", version_str)
212
+ if not m:
213
+ warnings.warn(
214
+ "Expected glibc version with 2 components major.minor,"
215
+ " got: %s" % version_str,
216
+ RuntimeWarning,
217
+ )
218
+ return -1, -1
219
+ return int(m.group("major")), int(m.group("minor"))
220
+
221
+
222
+ @functools.lru_cache()
223
+ def _get_glibc_version() -> Tuple[int, int]:
224
+ version_str = _glibc_version_string()
225
+ if version_str is None:
226
+ return (-1, -1)
227
+ return _parse_glibc_version(version_str)
228
+
229
+
230
+ # From PEP 513, PEP 600
231
+ def _is_compatible(name: str, arch: str, version: _GLibCVersion) -> bool:
232
+ sys_glibc = _get_glibc_version()
233
+ if sys_glibc < version:
234
+ return False
235
+ # Check for presence of _manylinux module.
236
+ try:
237
+ import _manylinux # noqa
238
+ except ImportError:
239
+ return True
240
+ if hasattr(_manylinux, "manylinux_compatible"):
241
+ result = _manylinux.manylinux_compatible(version[0], version[1], arch)
242
+ if result is not None:
243
+ return bool(result)
244
+ return True
245
+ if version == _GLibCVersion(2, 5):
246
+ if hasattr(_manylinux, "manylinux1_compatible"):
247
+ return bool(_manylinux.manylinux1_compatible)
248
+ if version == _GLibCVersion(2, 12):
249
+ if hasattr(_manylinux, "manylinux2010_compatible"):
250
+ return bool(_manylinux.manylinux2010_compatible)
251
+ if version == _GLibCVersion(2, 17):
252
+ if hasattr(_manylinux, "manylinux2014_compatible"):
253
+ return bool(_manylinux.manylinux2014_compatible)
254
+ return True
255
+
256
+
257
+ _LEGACY_MANYLINUX_MAP = {
258
+ # CentOS 7 w/ glibc 2.17 (PEP 599)
259
+ (2, 17): "manylinux2014",
260
+ # CentOS 6 w/ glibc 2.12 (PEP 571)
261
+ (2, 12): "manylinux2010",
262
+ # CentOS 5 w/ glibc 2.5 (PEP 513)
263
+ (2, 5): "manylinux1",
264
+ }
265
+
266
+
267
+ def platform_tags(linux: str, arch: str) -> Iterator[str]:
268
+ if not _have_compatible_abi(arch):
269
+ return
270
+ # Oldest glibc to be supported regardless of architecture is (2, 17).
271
+ too_old_glibc2 = _GLibCVersion(2, 16)
272
+ if arch in {"x86_64", "i686"}:
273
+ # On x86/i686 also oldest glibc to be supported is (2, 5).
274
+ too_old_glibc2 = _GLibCVersion(2, 4)
275
+ current_glibc = _GLibCVersion(*_get_glibc_version())
276
+ glibc_max_list = [current_glibc]
277
+ # We can assume compatibility across glibc major versions.
278
+ # https://sourceware.org/bugzilla/show_bug.cgi?id=24636
279
+ #
280
+ # Build a list of maximum glibc versions so that we can
281
+ # output the canonical list of all glibc from current_glibc
282
+ # down to too_old_glibc2, including all intermediary versions.
283
+ for glibc_major in range(current_glibc.major - 1, 1, -1):
284
+ glibc_minor = _LAST_GLIBC_MINOR[glibc_major]
285
+ glibc_max_list.append(_GLibCVersion(glibc_major, glibc_minor))
286
+ for glibc_max in glibc_max_list:
287
+ if glibc_max.major == too_old_glibc2.major:
288
+ min_minor = too_old_glibc2.minor
289
+ else:
290
+ # For other glibc major versions oldest supported is (x, 0).
291
+ min_minor = -1
292
+ for glibc_minor in range(glibc_max.minor, min_minor, -1):
293
+ glibc_version = _GLibCVersion(glibc_max.major, glibc_minor)
294
+ tag = "manylinux_{}_{}".format(*glibc_version)
295
+ if _is_compatible(tag, arch, glibc_version):
296
+ yield linux.replace("linux", tag)
297
+ # Handle the legacy manylinux1, manylinux2010, manylinux2014 tags.
298
+ if glibc_version in _LEGACY_MANYLINUX_MAP:
299
+ legacy_tag = _LEGACY_MANYLINUX_MAP[glibc_version]
300
+ if _is_compatible(legacy_tag, arch, glibc_version):
301
+ yield linux.replace("linux", legacy_tag)
scripts/myenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_musllinux.py ADDED
@@ -0,0 +1,136 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """PEP 656 support.
2
+
3
+ This module implements logic to detect if the currently running Python is
4
+ linked against musl, and what musl version is used.
5
+ """
6
+
7
+ import contextlib
8
+ import functools
9
+ import operator
10
+ import os
11
+ import re
12
+ import struct
13
+ import subprocess
14
+ import sys
15
+ from typing import IO, Iterator, NamedTuple, Optional, Tuple
16
+
17
+
18
+ def _read_unpacked(f: IO[bytes], fmt: str) -> Tuple[int, ...]:
19
+ return struct.unpack(fmt, f.read(struct.calcsize(fmt)))
20
+
21
+
22
+ def _parse_ld_musl_from_elf(f: IO[bytes]) -> Optional[str]:
23
+ """Detect musl libc location by parsing the Python executable.
24
+
25
+ Based on: https://gist.github.com/lyssdod/f51579ae8d93c8657a5564aefc2ffbca
26
+ ELF header: https://refspecs.linuxfoundation.org/elf/gabi4+/ch4.eheader.html
27
+ """
28
+ f.seek(0)
29
+ try:
30
+ ident = _read_unpacked(f, "16B")
31
+ except struct.error:
32
+ return None
33
+ if ident[:4] != tuple(b"\x7fELF"): # Invalid magic, not ELF.
34
+ return None
35
+ f.seek(struct.calcsize("HHI"), 1) # Skip file type, machine, and version.
36
+
37
+ try:
38
+ # e_fmt: Format for program header.
39
+ # p_fmt: Format for section header.
40
+ # p_idx: Indexes to find p_type, p_offset, and p_filesz.
41
+ e_fmt, p_fmt, p_idx = {
42
+ 1: ("IIIIHHH", "IIIIIIII", (0, 1, 4)), # 32-bit.
43
+ 2: ("QQQIHHH", "IIQQQQQQ", (0, 2, 5)), # 64-bit.
44
+ }[ident[4]]
45
+ except KeyError:
46
+ return None
47
+ else:
48
+ p_get = operator.itemgetter(*p_idx)
49
+
50
+ # Find the interpreter section and return its content.
51
+ try:
52
+ _, e_phoff, _, _, _, e_phentsize, e_phnum = _read_unpacked(f, e_fmt)
53
+ except struct.error:
54
+ return None
55
+ for i in range(e_phnum + 1):
56
+ f.seek(e_phoff + e_phentsize * i)
57
+ try:
58
+ p_type, p_offset, p_filesz = p_get(_read_unpacked(f, p_fmt))
59
+ except struct.error:
60
+ return None
61
+ if p_type != 3: # Not PT_INTERP.
62
+ continue
63
+ f.seek(p_offset)
64
+ interpreter = os.fsdecode(f.read(p_filesz)).strip("\0")
65
+ if "musl" not in interpreter:
66
+ return None
67
+ return interpreter
68
+ return None
69
+
70
+
71
+ class _MuslVersion(NamedTuple):
72
+ major: int
73
+ minor: int
74
+
75
+
76
+ def _parse_musl_version(output: str) -> Optional[_MuslVersion]:
77
+ lines = [n for n in (n.strip() for n in output.splitlines()) if n]
78
+ if len(lines) < 2 or lines[0][:4] != "musl":
79
+ return None
80
+ m = re.match(r"Version (\d+)\.(\d+)", lines[1])
81
+ if not m:
82
+ return None
83
+ return _MuslVersion(major=int(m.group(1)), minor=int(m.group(2)))
84
+
85
+
86
+ @functools.lru_cache()
87
+ def _get_musl_version(executable: str) -> Optional[_MuslVersion]:
88
+ """Detect currently-running musl runtime version.
89
+
90
+ This is done by checking the specified executable's dynamic linking
91
+ information, and invoking the loader to parse its output for a version
92
+ string. If the loader is musl, the output would be something like::
93
+
94
+ musl libc (x86_64)
95
+ Version 1.2.2
96
+ Dynamic Program Loader
97
+ """
98
+ with contextlib.ExitStack() as stack:
99
+ try:
100
+ f = stack.enter_context(open(executable, "rb"))
101
+ except IOError:
102
+ return None
103
+ ld = _parse_ld_musl_from_elf(f)
104
+ if not ld:
105
+ return None
106
+ proc = subprocess.run([ld], stderr=subprocess.PIPE, universal_newlines=True)
107
+ return _parse_musl_version(proc.stderr)
108
+
109
+
110
+ def platform_tags(arch: str) -> Iterator[str]:
111
+ """Generate musllinux tags compatible to the current platform.
112
+
113
+ :param arch: Should be the part of platform tag after the ``linux_``
114
+ prefix, e.g. ``x86_64``. The ``linux_`` prefix is assumed as a
115
+ prerequisite for the current platform to be musllinux-compatible.
116
+
117
+ :returns: An iterator of compatible musllinux tags.
118
+ """
119
+ sys_musl = _get_musl_version(sys.executable)
120
+ if sys_musl is None: # Python not dynamically linked against musl.
121
+ return
122
+ for minor in range(sys_musl.minor, -1, -1):
123
+ yield f"musllinux_{sys_musl.major}_{minor}_{arch}"
124
+
125
+
126
+ if __name__ == "__main__": # pragma: no cover
127
+ import sysconfig
128
+
129
+ plat = sysconfig.get_platform()
130
+ assert plat.startswith("linux-"), "not linux"
131
+
132
+ print("plat:", plat)
133
+ print("musl:", _get_musl_version(sys.executable))
134
+ print("tags:", end=" ")
135
+ for t in platform_tags(re.sub(r"[.-]", "_", plat.split("-", 1)[-1])):
136
+ print(t, end="\n ")