7 lines
271 B
Python
7 lines
271 B
Python
|
import requests
|
||
|
|
||
|
r = requests.get('https://wiki.claremontmakerspace.org/api.php?action=askargs&conditions=Asset Tag::%2B&printouts=Asset Tag|Requires Certification|Has Reservation URL&format=json&api_version=2')
|
||
|
|
||
|
with open('wiki-tools.json', 'w') as f:
|
||
|
f.write(r.text)
|