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
Caveats
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. Nevertheless, library doesn’t enforce any checks with that case and will generate .pyi as is:
from dataclasses import dataclass
@dataclass
class TodoItem:
id: int
type: int = 1
text: str
Development
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.1.0b3.tar.gz
.
File metadata
- Download URL: thrift-pyi-0.1.0b3.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.16 CPython/3.7.1 Linux/4.15.0-1028-gcp
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 29466945bc5f109fa222277b0f512e5c9a704806f1a376188687b53d15027b1f |
|
MD5 | 33eb4fdc08fdc3714eb97584ab414d01 |
|
BLAKE2b-256 | e1d9ed5dc580a38ffb1ccf8ce4b85d7ad4eb2386097115ead2a7c46e1eeea3ad |
File details
Details for the file thrift_pyi-0.1.0b3-py3-none-any.whl
.
File metadata
- Download URL: thrift_pyi-0.1.0b3-py3-none-any.whl
- Upload date:
- Size: 9.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.16 CPython/3.7.1 Linux/4.15.0-1028-gcp
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 66c36858146e8563dad8aeb23f9a604d35b07f00247f7bf4a26d2bdbacc447be |
|
MD5 | 875fffcfbb927f72a9fde5eea05d1fa6 |
|
BLAKE2b-256 | 8dd898d4cf3cb47b5f0214071e225bbb28c9712af2c744290628204ff7bd4311 |