This repository has been archived by the owner on Jun 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 727
/
setup.py
127 lines (115 loc) · 4.11 KB
/
setup.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#!/bin/env python3
# code by : youtube.com/theunknon
"""
you can re run setup.py
if you have added some wrong value
"""
re="\033[1;31m"
gr="\033[1;32m"
cy="\033[1;36m"
import os, sys
import time
def banner():
os.system('clear')
print(f"""
{re}╔═╗{cy}┌─┐┌┬┐┬ ┬┌─┐
{re}╚═╗{cy}├┤ │ │ │├─┘
{re}╚═╝{cy}└─┘ ┴ └─┘┴
""")
def requirements():
def csv_lib():
banner()
print(gr+'['+cy+'+'+gr+']'+cy+' this may take some time ...')
os.system("""
pip3 install cython numpy pandas
python3 -m pip install cython numpy pandas
""")
banner()
print(gr+'['+cy+'+'+gr+']'+cy+' it will take upto 10 min to install csv merge.')
input_csv = input(gr+'['+cy+'+'+gr+']'+cy+' do you want to enable csv merge (y/n): ').lower()
if input_csv == "y":
csv_lib()
else:
pass
print(gr+"[+] Installing requierments ...")
os.system("""
pip3 install telethon requests configparser
python3 -m pip install telethon requests configparser
touch config.data
""")
banner()
print(gr+"[+] requierments Installed.\n")
def config_setup():
import configparser
banner()
cpass = configparser.RawConfigParser()
cpass.add_section('cred')
xid = input(gr+"[+] enter api ID : "+re)
cpass.set('cred', 'id', xid)
xhash = input(gr+"[+] enter hash ID : "+re)
cpass.set('cred', 'hash', xhash)
xphone = input(gr+"[+] enter phone number : "+re)
cpass.set('cred', 'phone', xphone)
setup = open('config.data', 'w')
cpass.write(setup)
setup.close()
print(gr+"[+] setup complete !")
def merge_csv():
import pandas as pd
import sys
banner()
file1 = pd.read_csv(sys.argv[2])
file2 = pd.read_csv(sys.argv[3])
print(gr+'['+cy+'+'+gr+']'+cy+' merging '+sys.argv[2]+' & '+sys.argv[3]+' ...')
print(gr+'['+cy+'+'+gr+']'+cy+' big files can take some time ... ')
merge = file1.merge(file2, on='username')
merge.to_csv("output.csv", index=False)
print(gr+'['+cy+'+'+gr+']'+cy+' saved file as "output.csv"\n')
def update_tool():
import requests as r
banner()
source = r.get("https://raw.githubusercontent.com/th3unkn0n/TeleGram-Scraper/master/.image/.version")
if source.text == '3':
print(gr+'['+cy+'+'+gr+']'+cy+' alredy latest version')
else:
print(gr+'['+cy+'+'+gr+']'+cy+' removing old files ...')
os.system('rm *.py');time.sleep(3)
print(gr+'['+cy+'+'+gr+']'+cy+' getting latest files ...')
os.system("""
curl -s -O https://raw.githubusercontent.com/th3unkn0n/TeleGram-Scraper/master/add2group.py
curl -s -O https://raw.githubusercontent.com/th3unkn0n/TeleGram-Scraper/master/scraper.py
curl -s -O https://raw.githubusercontent.com/th3unkn0n/TeleGram-Scraper/master/setup.py
curl -s -O https://raw.githubusercontent.com/th3unkn0n/TeleGram-Scraper/master/smsbot.py
chmod 777 *.py
""");time.sleep(3)
print(gr+'\n['+cy+'+'+gr+']'+cy+' update compled.\n')
try:
if any ([sys.argv[1] == '--config', sys.argv[1] == '-c']):
print(gr+'['+cy+'+'+gr+']'+cy+' selected module : '+re+sys.argv[1])
config_setup()
elif any ([sys.argv[1] == '--merge', sys.argv[1] == '-m']):
print(gr+'['+cy+'+'+gr+']'+cy+' selected module : '+re+sys.argv[1])
merge_csv()
elif any ([sys.argv[1] == '--update', sys.argv[1] == '-u']):
print(gr+'['+cy+'+'+gr+']'+cy+' selected module : '+re+sys.argv[1])
update_tool()
elif any ([sys.argv[1] == '--install', sys.argv[1] == '-i']):
requirements()
elif any ([sys.argv[1] == '--help', sys.argv[1] == '-h']):
banner()
print("""$ python3 setup.py -m file1.csv file2.csv
( --config / -c ) setup api configration
( --merge / -m ) merge 2 .csv files in one
( --update / -u ) update tool to latest version
( --install / -i ) install requirements
( --help / -h ) show this msg
""")
else:
print('\n'+gr+'['+re+'!'+gr+']'+cy+' unknown argument : '+ sys.argv[1])
print(gr+'['+re+'!'+gr+']'+cy+' for help use : ')
print(gr+'$ python3 setup.py -h'+'\n')
except IndexError:
print('\n'+gr+'['+re+'!'+gr+']'+cy+' no argument given : '+ sys.argv[1])
print(gr+'['+re+'!'+gr+']'+cy+' for help use : ')
print(gr+'['+re+'!'+gr+']'+cy+' https://github.com/th3unkn0n/TeleGram-Scraper#-how-to-install-and-use')
print(gr+'$ python3 setup.py -h'+'\n')