Initial commit
This commit is contained in:
13
scraper_utilities/jsontesting.py
Normal file
13
scraper_utilities/jsontesting.py
Normal file
@@ -0,0 +1,13 @@
|
||||
"""
|
||||
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)
|
||||
Reference in New Issue
Block a user