Metadata-Version: 2.1
Name: hstreamdb
Version: 0.2.0
Summary: Python client for HStreamDB
Home-page: https://github.com/hstreamdb/hstreamdb-py
Author: lambda
Author-email: lambda@emqx.io
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/hstreamdb/hstreamdb-py/issues
Description: # hstreamdb-py
        
        Python client for [HStreamDB](https://github.com/hstreamdb/hstream)
        
        ## Installation
        
        Create a new virtual environment if you prefer to use isolated environments:
        
        ```sh
        virtualenv -p python3 ./venv
        source ./venv/bin/activate
        ```
        
        Install hstreamdb:
        
        ```sh
        pip install hstreamdb
        ```
        
        ## Examples
        
        Here's a basic example (For more examples and api documentation, see:
        <https://hstreamdb.github.io/hstreamdb-py/>) :
        
        ```python
        $ python
        
        >>> from hstreamdb import insecure_client
        >>> async def main():
        ...     async with await insecure_client(host="127.0.0.1", port=6570) as client:
        ...         streams = await client.list_streams()
        ...         print(list(streams))
        ...
        >>> import asyncio
        >>> asyncio.run(main())
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
