0.1.9 • Published 8 months ago

swagger-codegen-tool v0.1.9

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

npm version install size npm downloads gitter chat License: MIT

dependencies

  1. Ensure node.js installation, nvm installation is recommended

usage

npx swagger-codegen-tool generate -i xxx -l python -o xx/xx

or

  • 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.py

    This 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 data
  • codegen_components.py

    This 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: str
  • request-session.py

    Default 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.py

    This 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

0.1.8

8 months ago

0.1.7

8 months ago

0.1.9

8 months ago

0.1.4

12 months ago

0.1.3

12 months ago

0.1.6

8 months ago

0.1.5

11 months ago

0.1.2

12 months ago

0.1.1

12 months ago

0.1.0

12 months ago