Initial commit: SIBU 2.0 MISSION
This commit is contained in:
8
backend/parse_openapi.py
Normal file
8
backend/parse_openapi.py
Normal file
@ -0,0 +1,8 @@
|
||||
import json
|
||||
|
||||
with open("vertexdc_openapi.json", "r") as f:
|
||||
data = json.load(f)
|
||||
|
||||
for path in data.get("paths", {}):
|
||||
if "/api/users" in path:
|
||||
print(path)
|
||||
Reference in New Issue
Block a user