You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 19, 2025. It is now read-only.
import apistar
import yaml
import json
from apistar import Link
from typesystem import to_json_schema
def get_link(link: Link):
_data = {}
for field in link.fields:
str= open('API/api.json', encoding="utf-8")
openapi = json.load(str)
client = apistar.Client(openapi)
link = client.lookup_operation("uploadFile")
print(get_link(link))
run result
