Sheeturt commited on
Commit
a231ddf
·
verified ·
1 Parent(s): 016b245

Fix: add PySocks for SOCKS5 proxy support (Tor)

Browse files
Files changed (1) hide show
  1. requirements.txt +109 -104
requirements.txt CHANGED
@@ -1,105 +1,110 @@
1
  # ================= CORE ASYNC / HTTP =================
2
- aiohttp
3
- aiosignal
4
- async-timeout
5
- attrs
6
- frozenlist
7
- multidict
8
- yarl
9
-
10
- # ================= NETWORK / SSL =================
11
- certifi
12
- charset-normalizer
13
- idna
14
- urllib3
15
-
16
- # ================= HTTP CLIENTS =================
17
- requests
18
- httpx
19
-
20
- # ================= SCRAPING / PARSING =================
21
- beautifulsoup4
22
- lxml
23
- html5lib
24
- cssselect
25
- fake-useragent
26
-
27
- # ================= TELEGRAM BOTS =================
28
- python-telegram-bot
29
- aiogram
30
- pyTelegramBotAPI
31
-
32
- # ================= WEB FRAMEWORKS =================
33
- flask
34
- fastapi
35
- starlette
36
- uvicorn
37
-
38
- # ================= DATABASE =================
39
- pymongo
40
- pymongo[srv]
41
- dnspython
42
- motor
43
- redis
44
- sqlalchemy
45
- aiosqlite
46
-
47
- # ================= SCHEDULER / TIME =================
48
- apscheduler
49
- pytz
50
- tzlocal
51
- croniter
52
-
53
- # ================= ASYNC FILE / IO =================
54
- aiofiles
55
- watchfiles
56
-
57
- # ================= ENV / CONFIG =================
58
- python-dotenv
59
- pyyaml
60
-
61
- # ================= JSON / SERIALIZATION =================
62
- ujson
63
- orjson
64
- msgpack
65
-
66
- # ================= RETRY / CACHE =================
67
- tenacity
68
- cachetools
69
- diskcache
70
-
71
- # ================= PERFORMANCE =================
72
- uvloop
73
- gunicorn
74
-
75
- # ================= LOGGING / CLI / DEBUG =================
76
- loguru
77
- rich
78
- tqdm
79
- colorama
80
-
81
- # ================= SECURITY / AUTH =================
82
- cryptography
83
- bcrypt
84
- passlib
85
- pyjwt
86
-
87
- # ================= IMAGE / MEDIA =================
88
- pillow
89
- opencv-python-headless
90
-
91
- # ================= DATA / UTILS =================
92
- numpy
93
- pandas
94
- python-dateutil
95
-
96
- # ================= TESTING / DEV =================
97
- pytest
98
- pytest-asyncio
99
- coverage
100
-
101
- requests
102
- gunicorn
103
-
104
- psutil
105
- pyTelegramBotAPI
 
 
 
 
 
 
1
  # ================= CORE ASYNC / HTTP =================
2
+ aiohttp
3
+ aiosignal
4
+ async-timeout
5
+ attrs
6
+ frozenlist
7
+ multidict
8
+ yarl
9
+
10
+ # ================= NETWORK / SSL =================
11
+ certifi
12
+ charset-normalizer
13
+ idna
14
+ urllib3
15
+
16
+ # ================= HTTP CLIENTS =================
17
+ requests
18
+ httpx
19
+
20
+ # ================= SOCKS PROXY SUPPORT =================
21
+ PySocks
22
+ requests[socks]
23
+
24
+ # ================= SCRAPING / PARSING =================
25
+ beautifulsoup4
26
+ lxml
27
+ html5lib
28
+ cssselect
29
+ fake-useragent
30
+
31
+ # ================= TELEGRAM BOTS =================
32
+ python-telegram-bot
33
+ aiogram
34
+ pyTelegramBotAPI
35
+
36
+ # ================= WEB FRAMEWORKS =================
37
+ flask
38
+ fastapi
39
+ starlette
40
+ uvicorn
41
+
42
+ # ================= DATABASE =================
43
+ pymongo
44
+ pymongo[srv]
45
+ dnspython
46
+ motor
47
+ redis
48
+ sqlalchemy
49
+ aiosqlite
50
+
51
+ # ================= SCHEDULER / TIME =================
52
+ apscheduler
53
+ pytz
54
+ tzlocal
55
+ croniter
56
+
57
+ # ================= ASYNC FILE / IO =================
58
+ aiofiles
59
+ watchfiles
60
+
61
+ # ================= ENV / CONFIG =================
62
+ python-dotenv
63
+ pyyaml
64
+
65
+ # ================= JSON / SERIALIZATION =================
66
+ ujson
67
+ orjson
68
+ msgpack
69
+
70
+ # ================= RETRY / CACHE =================
71
+ tenacity
72
+ cachetools
73
+ diskcache
74
+
75
+ # ================= PERFORMANCE =================
76
+ uvloop
77
+ gunicorn
78
+
79
+ # ================= LOGGING / CLI / DEBUG =================
80
+ loguru
81
+ rich
82
+ tqdm
83
+ colorama
84
+
85
+ # ================= SECURITY / AUTH =================
86
+ cryptography
87
+ bcrypt
88
+ passlib
89
+ pyjwt
90
+
91
+ # ================= IMAGE / MEDIA =================
92
+ pillow
93
+ opencv-python-headless
94
+
95
+ # ================= DATA / UTILS =================
96
+ numpy
97
+ pandas
98
+ python-dateutil
99
+
100
+ # ================= TESTING / DEV =================
101
+ pytest
102
+ pytest-asyncio
103
+ coverage
104
+
105
+ requests
106
+ gunicorn
107
+
108
+ psutil
109
+ pyTelegramBotAPI
110
+