Build ctypes interfaces for shared libraries with type hinting
Project description
https://github.com/idlesign/ctyped
Description
Build ctypes interfaces for shared libraries with type hinting
Requires Python 3.6+
Less boilerplate;
Logical structuring;
Useful helpers.
from ctyped.toolbox import Library
# Define library.
lib = Library('mylib.so')
@lib.structure
class Box:
one: int
two: str
# Type less with function names prefixes.
with lib.scope(prefix='mylib_'):
# Describe function available in the library.
@lib.function
def some_func(title: str, year: int, box: Box) -> str:
...
# Bind ctype types to functions available in the library.
lib.bind_types()
# Call library function.
result_string = some_func('Hello!', 2019, Box(one=35, two='dummy'))
Read the documentation for more information.
Documentation
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
ctyped-0.7.1.tar.gz
(24.6 kB
view hashes)
Built Distribution
ctyped-0.7.1-py2.py3-none-any.whl
(11.0 kB
view hashes)
Close
Hashes for ctyped-0.7.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39d6dad083441e6d4b7712ba0b932eb6d7b7c377df91410f991348b180ffd8f7 |
|
MD5 | 6db0c5d3988fd2168c19b0575e08f58b |
|
BLAKE2b-256 | 118f1e228f12667bbbd9844de8a24784e95e236699d48e56f17568edbe2ba6c0 |