Skip to main content

This is simple `.pyi` stubs generator from thrift interfaces

Project description

Build Status Coverage Status Codacy Badge Requirements Status PyPI Package latest release PyPI Wheel Supported versions MIT License

This is simple .pyi stubs generator from thrift interfaces. Motivation for this project is to have autocomplete and type checking for dynamically loaded thrift interfaces

Installation

pip install thrift-pyi

Quickstart

Sample usage:

$ thriftpyi example/interfaces --output example/app/interfaces

Additionally to generated stubs you might want to create __init__.py that will load thrift interfaces, for example:

from pathlib import Path
from types import ModuleType
from typing import Dict

import thriftpy2

_interfaces_path = Path("example/interfaces")
_interfaces: Dict[str, ModuleType] = {}


def __getattr__(name):
    try:
        return _interfaces[name]
    except KeyError:
        interface = thriftpy2.load(str(_interfaces_path.joinpath(f"{name}.thrift")))
        _interfaces[name] = interface
        return interface

To see more detailed example of usage refer to example app

–strict-optional

Python and thrift are very different at argument handling. For example in thrift the following will be correct declaration:

struct TodoItem {
    1: required i32 id
    3: optional i32 type = 1
    2: required string text
}

In python, fields without default values cannot appear after fields with default values. Therefore by default all fields are optional with default to None. This is compliant to thriftpy2.

However, if you want more strict behaviour you can specify –strict-optional option. For the case above, the following stubs will be generated:

from dataclasses import dataclass

@dataclass
class TodoItem:
    id: int
    type: int = 1
    text: str

Development

To install pre-commit hooks:

pre-commit install

To run the all tests run:

tox

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

thrift_pyi-0.5.0.tar.gz (9.3 kB view details)

Uploaded Source

Built Distribution

thrift_pyi-0.5.0-py3-none-any.whl (10.1 kB view details)

Uploaded Python 3

File details

Details for the file thrift_pyi-0.5.0.tar.gz.

File metadata

  • Download URL: thrift_pyi-0.5.0.tar.gz
  • Upload date:
  • Size: 9.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.1 CPython/3.8.15 Linux/5.15.0-1024-azure

File hashes

Hashes for thrift_pyi-0.5.0.tar.gz
Algorithm Hash digest
SHA256 ef5d651c92cbbc07cd5d34c4505bdac63df8498a4c364415ed261a9eea065cd9
MD5 7c2d3002866e33737245f303c0419e84
BLAKE2b-256 15acd5360d45a1e294f012321d91d29cdc4449d1661f1b1627a338daed9af85e

See more details on using hashes here.

File details

Details for the file thrift_pyi-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: thrift_pyi-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 10.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.1 CPython/3.8.15 Linux/5.15.0-1024-azure

File hashes

Hashes for thrift_pyi-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 14094cf367bb3a5cd0d7f7a7f7c36562dbcb6046920e4139f6a6cff1382c0a7c
MD5 f974c2ccea62efc852f34e80715ab203
BLAKE2b-256 02374ff81fc23e9a73727c17e4e6a57373d070a05841b53fd2845b06a9695d77

See more details on using hashes here.

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