npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

swagger-codegen-tool

v0.1.9

Published

<h1 align="center"> <b> <a href="https://github.com/sixdjango/swagger-codegen-tool.git"><img src="https://raw.githubusercontent.com/swagger-api/swagger.io/wordpress/images/assets/SWC-logo-clr.png" height="80"></a><br> </b> </h1>

Downloads

17

Readme

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

  • [x] 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