pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
493 B
15 lines
493 B
import json
|
|
from pathlib import Path
|
|
|
|
file_path = Path("./openapi.json")
|
|
openapi_content = json.loads(file_path.read_text())
|
|
|
|
for path_data in openapi_content["paths"].values():
|
|
for operation in path_data.values():
|
|
tag = operation["tags"][0]
|
|
operation_id = operation["operationId"]
|
|
to_remove = f"{tag}-"
|
|
new_operation_id = operation_id[len(to_remove) :]
|
|
operation["operationId"] = new_operation_id
|
|
|
|
file_path.write_text(json.dumps(openapi_content))
|
|
|