Skip to main content

Python type code generator

Project description

Build Status codecov pyup

pytypgen

Code generator that converts from Python types (implemented by dataclasses) to TypeScript interfaces

Dependencies

  • Python 3.7 (need dataclass)

Install

pip install pytypegen

Usage

from pytypgen.core import contracts_to_typescript, Contract

class Gender(Enum):
    male = 1
    female = 2


@dataclass
class Address(Contract):
    street: str


@dataclass
class Person(Contract):
    name: str
    gender: Gender
    birth_date: datetime.datetime
    addresses: Optional[List[Address]] = None

print(contracts_to_typescript(dataclasses=[Gender, Address, Person]))

Will generate the following TypeScript code:

export enum Gender {
  male = 'male',
  female = 'female'
}

export interface Address {
  street: string
}

export interface Person {
  name: string
  gender: Gender
  birth_date: string
  addresses?: Array<Address>|null
}

Development Setup

  • Run make setup. This will setup a pre-commit hook which creates README.rst file.

  • Run pip install -r dev-requirements.txt, preferably in a virtualenv.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytypegen-1.0.4.tar.gz (9.7 kB view hashes)

Uploaded Source

Built Distribution

pytypegen-1.0.4-py3-none-any.whl (12.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page