-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocess_items_file.py
44 lines (31 loc) · 1.58 KB
/
process_items_file.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import wget
from tqdm import tqdm # Импортируем библиотеку tqdm
def download_file(url, filename):
wget.download(url, filename)
def process_items_file(input_file, output_file):
count = 0 # Счетчик обработанных предметов
processed_items = set() # Множество для отслеживания уже обработанных предметов
with open(input_file, 'r') as f:
lines = f.readlines()
with open(output_file, 'w') as f:
for line in tqdm(lines, desc="Обработка предметов"): # Используем tqdm для индикатора прогресса
line = line.strip()
line_parts = line.split(': ')
if len(line_parts) < 2:
continue
item_name = line_parts[1].strip()
if '@' in item_name:
continue
if item_name in processed_items:
continue
processed_items.add(item_name)
f.write(item_name + '\n')
count += 1
print(f"\nОбработка завершена. Всего обработано {count} предметов.")
# Сначала загрузим файл
input_url = 'https://raw.githubusercontent.com/broderickhyman/ao-bin-dumps/master/formatted/items.txt'
input_file = 'items.txt'
download_file(input_url, input_file)
# Теперь обработаем загруженный файл
output_file = 'items.txt'
process_items_file(input_file, output_file)