-
Notifications
You must be signed in to change notification settings - Fork 33
/
server.py
65 lines (56 loc) · 1.89 KB
/
server.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
from flask import Flask, request
from tradingview import tradingview
import json
#from threading import Thread
app = Flask('')
@app.route('/validate/<username>', methods=['GET'])
def validate(username):
try:
print(username)
tv = tradingview()
response = tv.validate_username(username)
return json.dumps(response), 200, {'Content-Type': 'application/json; charset=utf-8'}
except Exception as e:
print("[X] Exception Occured : ", e)
failureResponse = {
'errorMessage':'Unknown Exception Occurred'
}
return json.dumps(failureResponse), 500, {'Content-Type': 'application/json; charset=utf-8'}
@app.route('/access/<username>', methods=['GET', 'POST', 'DELETE'])
def access(username):
try:
jsonPayload = request.json
pine_ids = jsonPayload.get('pine_ids')
print(jsonPayload)
print(pine_ids)
tv = tradingview()
accessList = []
for pine_id in pine_ids:
access = tv.get_access_details(username, pine_id)
accessList = accessList + [access]
if request.method == 'POST':
duration = jsonPayload.get('duration')
dNumber = int(duration[:-1])
dType = duration[-1:]
for access in accessList:
tv.add_access(access, dType, dNumber)
if request.method == 'DELETE':
for access in accessList:
tv.remove_access(access)
return json.dumps(accessList), 200, {'Content-Type': 'application/json; charset=utf-8'}
except Exception as e:
print("[X] Exception Occured : ", e)
failureResponse = {
'errorMessage':'Unknown Exception Occurred'
}
return json.dumps(failureResponse), 500, {'Content-Type': 'application/json; charset=utf-8'}
@app.route('/')
def main():
return 'Your bot is alive!'
# def run():
# app.run(host='0.0.0.0', port=5000)
# def start_server_async():
# server = Thread(target=run)
# server.start()
def start_server():
app.run(host='0.0.0.0', port=5000)