alef 0.69.0

Opinionated polyglot binding generator for Rust libraries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
async def {{ adapter_name }}({{ params }}) -> {{ return_type }}:
    """{{ doc_content }}"""
{% if request_construction %}
{{ request_construction }}{% endif %}
{% if param_conversions %}
{{ param_conversions }}{% endif %}
    async for item in engine.{{ adapter_name }}({{ params_list }}):
{% if item_converter %}
        yield {{ item_converter }}(item)
{% else %}
        yield item
{% endif %}