1
This commit is contained in:
parent
278436a5a6
commit
c33014254c
@ -43,5 +43,22 @@ def exportNftSumTable():
|
|||||||
writer = csv.writer(f)
|
writer = csv.writer(f)
|
||||||
writer.writerows(rows)
|
writer.writerows(rows)
|
||||||
|
|
||||||
|
def loadData():
|
||||||
|
def loadMint():
|
||||||
|
with open("t_mint.txt", "r", encoding="utf-8") as f:
|
||||||
|
reader = csv.reader(f)
|
||||||
|
for row in reader:
|
||||||
|
print(row)
|
||||||
|
def loadNft():
|
||||||
|
with open("t_nft.txt", "r", encoding="utf-8") as f:
|
||||||
|
reader = csv.reader(f)
|
||||||
|
for row in reader:
|
||||||
|
print(row)
|
||||||
|
def loadNftTransfer():
|
||||||
|
with open("t_nft_transfer.txt", "r", encoding="utf-8") as f:
|
||||||
|
reader = csv.reader(f)
|
||||||
|
for row in reader:
|
||||||
|
print(row)
|
||||||
|
pass
|
||||||
|
|
||||||
print('hello')
|
print('hello')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user