-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathws.py
52 lines (42 loc) · 1.31 KB
/
ws.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
#!/usr/bin/env python
import asyncio
import websockets
import json
import time
import datetime
from pymongo import MongoClient
from config import block_address
async def hello():
async def xt():
name = {"event": "ping"}
time.sleep(5)
await websocket.send(json.dumps(name))
async def sub(address):
for i in address:
await websocket.send(json.dumps({"event": "txlist", "address": i}))
async with websockets.connect('wss://socket.etherscan.io/wshandler') as websocket:
# 订阅时间
await sub(block_address)
while True:
await xt()
greeting = json.loads(await websocket.recv())
# print("< {}".format(greeting))
if 'address' in greeting:
await save2mongo(greeting)
time.sleep(1)
async def save2mongo(r):
if r.get('result', False):
rs = []
n = datetime.datetime.utcnow()
for i in r['result']:
i['address'] = r['address']
i['action'] = 'txlist'
i['ts'] = n
rs.append(i)
client.insert_many(rs)
if __name__ == '__main__':
db = MongoClient()['dapdap']
db.authenticate('dapdap', 'dapdapmima123')
client = db['tokens']
loop = asyncio.get_event_loop()
loop.run_until_complete(hello())