mirror of
https://github.com/selfxyz/self.git
synced 2026-04-05 03:00:53 -04:00
9 lines
289 B
Python
9 lines
289 B
Python
import requests
|
|
import json
|
|
|
|
with open("csca_inputs.json", "r") as file:
|
|
inputs = json.load(file)
|
|
|
|
response = requests.post("https://zk-passport--dsc-prover-generate-dsc-proof.modal.run", json=inputs , timeout=600)
|
|
with open("response.json", "w") as file:
|
|
file.write(response.text) |