11 lines
227 B
Python
Executable File
11 lines
227 B
Python
Executable File
#!/usr/bin/env python2
|
|
import os
|
|
import json
|
|
|
|
script_dir = os.path.dirname(__file__)
|
|
with open(script_dir + '/assetchains.json') as file:
|
|
assetchains = json.load(file)
|
|
|
|
for chain in assetchains:
|
|
print(chain['ac_name'])
|