14 lines
218 B
Python
14 lines
218 B
Python
"""
|
|
Used for writing parsing scripts using saved html file
|
|
Allows parsing a page without requesting the api each time
|
|
"""
|
|
|
|
import json
|
|
|
|
with open('testing.json', 'r') as f:
|
|
st = f.read()
|
|
|
|
l = json.loads(st)
|
|
|
|
print(l)
|