This repository has been archived by the owner on Aug 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
app.json
56 lines (54 loc) · 1.78 KB
/
app.json
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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "Link Media Scraper Bot",
"description": "A Pyrogram Scraper Bot which scrapes Streamtape.com, Cyberdrop.to, Bunkr.is links.",
"logo": "https://te.legra.ph/file/f07d17f16ae631ac460a5.jpg",
"keywords": [
"Pyrogram",
"telegram",
"Bot",
"python"
],
"repository": "https://github.com/DebXD/link-media-scraper-bot",
"env": {
"API_ID": {
"description": "You Api id, Get it from my.telegram.org",
"value": "",
"required": true
},
"API_HASH": {
"description": "You Api hash, Get it from my.telegram.org",
"value": "",
"required": true
},
"BOT_TOKEN": {
"description": "Your Bot API Token, Get it from Bot Father of Telegram",
"value": "",
"required": true
},
"LOG_CHAT_ID": {
"description": "Your chat id, where you will be notified if the bot is up or not, Default is None",
"value": "None",
"required": false
},
"API_USERNAME": {
"description": "Your Streamtape API Username, Default is None",
"value": "None",
"required": false
},
"API_PASSWORD": {
"description": "Your Streamtape API Password, Default is None",
"value": "None",
"required": false
},
"API_PASSWORD": {
"description": "Put http proxy for bunkr.is links, get it from webshare.io",
"value": "None",
"required": false
},
"HTTPS_PROXY": {
"description": "Put https proxy for bunkr.is links, get it from webshare.io",
"value": "None",
"required": false
}
}
}