This is simple `.pyi` stubs generator from thrift interfaces
Project description
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 attributes without a default cannot follow attributes with one. 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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file thrift-pyi-0.3.0.tar.gz
.
File metadata
- Download URL: thrift-pyi-0.3.0.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.8.12 Linux/5.11.0-1027-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93888bbeaee21c87b53cfd347c918fb808c8ff034aece913019a70f23ce757a1 |
|
MD5 | 32cdec2bceec5e0944b24d43048f5cac |
|
BLAKE2b-256 | d3d66142c385d7bc000f5c980c252e436108960bf4d49d339874772ce0b8f036 |
File details
Details for the file thrift_pyi-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: thrift_pyi-0.3.0-py3-none-any.whl
- Upload date:
- Size: 9.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.8.12 Linux/5.11.0-1027-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff51546a955b39c6df3f4ee96cba303e78cf01d2938f2b08ad7c807429dc897d |
|
MD5 | a96d1242d1ec4683c607b173f039fd96 |
|
BLAKE2b-256 | 33fc8c7a1dd7f8847507225519ff3c7017e84b04595fbc9ebf695cb24575c2e3 |