micropython-ustubby
micropython-ustubby copied to clipboard
Library for building micropython c extensions using python
ustubby should support classes, with each member taking a `_t` as its first argument.
Tested on ESP32 port
#18 #19 Show the need for a different output format. For tuple: ```python def test() -> typing.Tuple[int, float, str]: pass ``` Should output something like ```c // No Comment STATIC...
Porting the python docstring over to the c stub output is handy for maintaining even more documentation synchronization. Eg. ``` """ This module is developed for adding new functionality to...