mirror of
https://github.com/alfem/telegram-download-daemon.git
synced 2025-03-01 08:33:11 +08:00
pip3 freeze > requirements.txt
This commit is contained in:
parent
2540e13f90
commit
a331f58cff
3 changed files with 13 additions and 4 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
.vscode
|
||||
.venv
|
|
@ -12,11 +12,11 @@ or daemon to allow bigger downloads.
|
|||
|
||||
You need Python3 (tested in 3.5).
|
||||
|
||||
Install Telethon module (using pip or your OS package system):
|
||||
pip install --user telethon
|
||||
Install dependencies by running this command:
|
||||
|
||||
Install cryptg to use a C library to speed up downloads (optional)
|
||||
pip install --user cryptg
|
||||
pip install -r requirements.txt
|
||||
|
||||
(If you don't want to install `cryptg` and its dependencies, you just need to install `telethon`)
|
||||
|
||||
Obtain your own api id: https://core.telegram.org/api/obtaining_api_id
|
||||
|
||||
|
|
7
requirements.txt
Normal file
7
requirements.txt
Normal file
|
@ -0,0 +1,7 @@
|
|||
cffi==1.14.0
|
||||
cryptg==0.2.post0
|
||||
pyaes==1.6.1
|
||||
pyasn1==0.4.8
|
||||
pycparser==2.20
|
||||
rsa==4.0
|
||||
Telethon==1.12.0
|
Loading…
Reference in a new issue