-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathjubi.py
248 lines (214 loc) · 7.87 KB
/
jubi.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
# -*-coding=utf-8-*-
__author__ = 'Rocky'
'''
http://30daydo.com
Contact: [email protected]
'''
## python2代码,网站已经停止更新
import random
import hashlib
import hmac, time
import smtplib
from email.mime.text import MIMEText
from email import Utils
import threading
import requests, itchat
from toolkit import Toolkit
class Jubi_web():
def __init__(self, send=None):
cfg = Toolkit.getUserData('data.cfg')
self.public_key = cfg['public_key']
self.private_key = cfg['private_key']
self.send = send
from_mail = cfg['from_mail']
password = cfg['password']
to_mail = cfg['to_mail']
smtp_server = 'smtp.qq.com'
self.server = smtp_server
self.username = from_mail.split("@")[0]
self.from_mail = from_mail
self.password = password
self.to_mail = to_mail
self.coin_list = ['IFC', 'DOGE', 'EAC', 'DNC', 'MET', 'ZET', 'SKT', 'YTC', 'PLC', 'LKC',
'JBC', 'MRYC', 'GOOC', 'QEC', 'PEB', 'XRP', 'NXT', 'WDC', 'MAX', 'ZCC',
'HLB', 'RSS', 'PGC', 'RIO', 'XAS', 'TFC', 'BLK', 'FZ', 'ANS', 'XPM', 'VTC',
'KTC', 'VRC', 'XSGS', 'LSK', 'PPC', 'ETC', 'GAME', 'LTC', 'ETH', 'BTC']
# 初始化邮箱设置读取需要股票信息
# 这样子只登陆一次
if self.send == 'msn':
try:
self.smtp = smtplib.SMTP_SSL(port=465)
self.smtp.connect(self.server)
self.smtp.login(self.username, self.password)
except smtplib.SMTPException as e:
print(e)
return 0
if send == 'wechat':
self.w_name = 'wwwei'
self.w_name1 = 'aiweichuangyi'
itchat.auto_login(hotReload=True)
account = itchat.get_friends(self.w_name)
for i in account:
if i['PYQuanPin'] == self.w_name:
self.toName = i['UserName']
# print(self.toName)
if i['PYQuanPin'] == self.w_name1:
self.toName1 = i['UserName']
# print(self.toName)
def send_wechat(self, name, content, user):
w_content = name + ' ' + content
itchat.send(w_content, toUserName=user)
time.sleep(1)
itchat.send(w_content, toUserName='filehelper')
def send_text(self, name, content):
subject = '%s' % name
self.msg = MIMEText(content, 'plain', 'utf-8')
self.msg['to'] = self.to_mail
self.msg['from'] = self.from_mail
self.msg['Subject'] = subject
self.msg['Date'] = Utils.formatdate(localtime=1)
try:
self.smtp.sendmail(self.msg['from'], self.msg['to'], self.msg.as_string())
self.smtp.quit()
print("sent")
except smtplib.SMTPException as e:
print(e)
return 0
def warming(self, coin, up_price, down_price, user):
url = 'https://www.jubi.com/api/v1/ticker/'
while 1:
time.sleep(5)
try:
data = requests.post(url, data={'coin': coin}).json()
except Exception as e:
print(e)
print("time out. Retry")
time.sleep(15)
continue
current = float(data['last'])
if current >= up_price:
print("Up to ", up_price)
print("current price ", current)
if self.send == 'msn':
self.send_text(coin, str(current))
if self.send == 'wechat':
self.send_wechat(coin, str(current), user)
time.sleep(1200)
if current <= down_price:
print("Down to ", down_price)
print("current price ", current)
if self.send == 'msn':
self.send_text(coin, str(current))
if self.send == 'wechat':
self.send_wechat(coin, str(current), user)
time.sleep(1200)
# 上面的内容尽量不用修改。
def getContent(self):
url = 'https://www.jubi.com/api/v1/trade_list'
params_data = {'key': 'x', 'signature': 'x'}
s = requests.get(url=url, params=params_data)
def getHash(self, s):
m = hashlib.md5()
m.update(s)
return m.hexdigest()
def sha_convert(self, s):
return hashlib.sha256(self.getHash(s)).hexdigest()
def get_nonce(self):
lens = 12
return ''.join([str(random.randint(0, 9)) for i in range(lens)])
def get_signiture(self):
url = 'https://www.jubi.com/api/v1/ticker/'
coin = 'zet'
nonce = self.get_nonce()
# sha=self.sha_convert(private_key)
md5 = self.getHash(self.private_key)
message = 'nonce=' + nonce + '&' + 'key=' + self.public_key
# print(message)
signature = hmac.new(md5, message, digestmod=hashlib.sha256).digest()
# print(signature)
# req=requests.post(stock_url,data={'signature':signature,'key':public_key,'nonce':nonce,'coin':'zet'})
req = requests.post(url, data={'coin': coin})
print(req.status_code)
print(req.text)
def real_time_ticker(self, coin):
url = 'https://www.jubi.com/api/v1/ticker/'
try:
data = requests.post(url, data={'coin': coin}).json()
# print(data)
except Exception as e:
print(e)
data = None
return data
def real_time_depth(self, coin):
url = 'https://www.jubi.com/api/v1/depth/'
data = requests.post(url, data={'coin': coin}).json()
print(data)
data_bids = data['bids']
data_asks = data['asks']
print("bids")
for i in data_bids:
print(i[0], )
print(' ', )
print(i[1])
print("asks")
for j in data_asks:
print(j[0], )
print(' ', )
print(j[1])
def list_all_price(self):
for i in self.coin_list:
print(i, )
print(" price: ", )
p = self.real_time_ticker(i.lower())
if p is not None:
print(p['last'])
def getOrder(self, coin):
url = 'https://www.jubi.com/api/v1/orders/'
try:
req = requests.get(url, params={'coin': coin})
except Exception as e:
print(e)
data = req.json()
return data
# recent 100 trade turn over
def turnover(self, coin):
i = coin.lower()
coins = Toolkit.getUserData('coins.csv')
total = long(coins[i])
p = self.getOrder(i)
print(p)
amount = 0.00
for j in p:
t = j['amount']
amount = float(t) + amount
# current=float(self.real_time_ticker(i)['last'])
turn_over = amount * 1.00 / total * 100
print(turn_over)
def multi_thread(self, coin_list, price_list, username):
thread_num = len(coin_list)
thread_list = []
for i in range(thread_num):
if username[i] == 0:
nameID = self.toName
if username[i] == 1:
nameID = self.toName1
t = threading.Thread(target=self.warming, args=(coin_list[i], price_list[i][0], price_list[i][1], nameID), )
thread_list.append(t)
for j in thread_list:
j.start()
for k in thread_list:
k.join()
if __name__ == '__main__':
obj = Jubi_web(send='wechat')
# print(obj.get_signiture())
# print(obj.real_time_ticker('zet'))
# obj.real_time_depth('zet')
# obj.warming('zet',0.23,0.17)
# obj.list_all_price()
# obj.turnover('doge')
# print(obj.getOrder('zet'))
coin_list = ['zet', 'doge']
price_list = [[0.2, 0.11], [0.03, 0.02]]
# obj.warming('zet',0.24,0.16)
username = [0, 0]
obj.multi_thread(coin_list, price_list, username)