-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtcgplayer.py
154 lines (141 loc) · 4.77 KB
/
tcgplayer.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
import requests
import json
import asyncio
import os,time
from datetime import datetime
from requests.api import get
import functools
import config
version="1.37.0"
aliases=json.loads(open("aliases.json","r").read())
temp=[]
pricecache={}
for a in aliases:
r=a
r["name"]=r["name"].lower()
temp.append(r)
aliases=temp
acces_token=""
def getId(name):
for i in aliases:
if(i["name"]==name):
return i["id"]
return -1
def getHeader():
global acces_token
header={"Authorization": "bearer "+acces_token,"Application":"Pokemon TCG Discord Bot"}
return header
def getAccesToken():
data="grant_type=client_credentials&client_id="+config.config["tcgplayer_id"]+"&client_secret="+config.config["tcgplayer_secret"]
header="application/x-www-form-urlencoded"
result=requests.post("https://api.tcgplayer.com/token",data=data)
result=json.loads(result.content.decode("utf-8"))
return result["access_token"]
def getPrice(sku):
url="https://api.tcgplayer.com/pricing/marketprices/"+str(sku)
result=requests.get(url,headers=getHeader())
try:
price=round(int(json.loads(result.text)["results"][0]["price"])*10)
return price
except:
#print("Sku: "+str(sku))
#print("result: "+result.text)
return 1000
def getBoosterPrice(name):
if("promo" in name):
return 5000
if(name in pricecache):
difference=datetime.utcnow()-pricecache[name][1]
if(difference.days==0):
return pricecache[name][0]
url= "https://api.tcgplayer.com/catalog/products"
querystring={"categoryId":"3","groupId": getId(name),"productTypes":"Sealed Products", "limit":"100","includeSkus":"true"}
result=requests.get(url,headers=getHeader(),params=querystring)
result=json.loads(result.content.decode("utf-8"))
for i in result["results"]:
if("Pack" in i["name"]):
price=getPrice(i["skus"][0]["skuId"])
pricecache[name]=[price,datetime.utcnow()]
return price
return 1000
def getSets():
url = "https://api.tcgplayer.com/catalog/categories/3/groups"
querystring = {"limit":"100","offset":100}
result = requests.get(url,headers=getHeader(),params=querystring)
text='['
for i in json.loads(result.text)["results"]:
text+='{\n'
text+='"id":"'+str(i["groupId"])+'",\n'+'"name":"'+str(i["name"])+'"\n'
text+='},\n'
text+=']'
open("aliases2.json","w").write(text)
def testSets():
sets=os.listdir(r"cards")
count=0
names=[]
wrong=[]
for i in sets:
names.append(i.replace(".json",""))
for i in names:
count+=1
print("Doing Set: "+i+" "+str(count)+"/"+str(len(names)))
if(getBoosterPrice(i)==None):
print("Failed! "+i)
wrong.append(i)
#input("Press enter to continue: ")
print(wrong)
def getSets():
sets=os.listdir(r"cards")
count=0
names=[]
pricecache={}
for i in sets:
names.append(i.replace(".json",""))
for i in names:
count+=1
print("Doing Set: "+i+" "+str(count)+"/"+str(len(names)))
price=getBoosterPrice(i.lower())
if(price==None):
print("Failed! "+i+", setting to 100")
#input("Press enter to continue: ")
print(pricecache)
async def getCardPrice(id):
if(id in pricecache):
difference=datetime.utcnow()-pricecache[id][1]
if(difference.days==0):
return pricecache[id][0]
try:
header={"X-Api-Key":api_key}
loop = asyncio.get_event_loop()
future = loop.run_in_executor(None, functools.partial(requests.get,url="https://api.pokemontcg.io/v2/cards?q=id:"+id,headers=header))
result = await future
result=json.loads(result.text)
result=result["data"][0]["tcgplayer"]["prices"]
for i in result:
price=round(float(result[i]["market"])*5)
pricecache[id]=[price,datetime.utcnow()]
return str(int(price))
except Exception as e:
print(e)
return "1"
return "1"
def getCardPriceBlocking(id):
if(id in pricecache):
difference=datetime.utcnow()-pricecache[id][1]
if(difference.days==0):
return pricecache[id][0]
try:
header={"X-Api-Key":api_key}
result = requests.get(url="https://api.pokemontcg.io/v2/cards?q=id:"+id,headers=header)
result=json.loads(result.text)
result=result["data"][0]["tcgplayer"]["prices"]
for i in result:
price=round(float(result[i]["market"])*5)
pricecache[id]=[price,datetime.utcnow()]
return str(int(price))
except Exception as e:
print(e)
return "1"
return "1"
acces_token=getAccesToken()
api_key=config.config["tcgplayer_token"]