swagger-codegen-tool v0.1.9
dependencies
- Ensure
node.jsinstallation,nvminstallation is recommended
usage
npx swagger-codegen-tool generate -i xxx -l python -o xx/xxor
- install
npm i swagger-codegen-tool -g- start
swagger-codegen-tool -i <swagger-json> -l <lang> -o <output (optional)>Currently only support python lang pares form swagger-api, There may be versions of swagger that are not compatible.
This is a swagger parser for internal use.
If you find any problems while using, you are welcome to submit pr.
output
python
After the command is executed, You can see 4 files under the current folder codegen_api.py codegen_components.py request-session.py codegen_enums.py
codegen_api.pyThis is the one that contains all the apis file, Each command is overwritten
from .request_session import provide_request_session
from . import codegen_components
from aiohttp import ClientSession
@provide_request_session
async def errorUsingGET( session: ClientSession):
async with session.get('/error') as response:
data:object = await response.json()
return datacodegen_components.pyThis is the file that contains all the models, Each command is overwritten
from pydantic import BaseModel
from typing import Generic, TypeVar
class BaseResponse(BaseModel):
code: str
message: strrequest-session.pyDefault async request file
import contextlib
from functools import wraps
import aiohttp
@contextlib.asynccontextmanager
async def getClientSession():
session = aiohttp.ClientSession()
try:
yield session
except Exception as e:
raise e
finally:
session.close()codegen_enums.pyThis is the file that contains all the enums, Each command is overwritten. By determining the component name === 'AllEnumsInfo', then the enum is generated.
from enum import Enum
""" description """
class XXXEnum(Enum):
A = 'A'
B = 'B'
C = 'C'
F = 'D'📖 help
swagger-codegen-tool --help🤔 roadmap
- python parse
- typescript
💁 Contributing
If you find any problems while using, you are welcome to submit pr. or you can contact me directly by email