معرفی شرکت ها


aliot-py-0.5.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Aliot-py is the python implementation of the Aliot library, an IOT library made to work with the ALIVEIoT ecosystem (see https://alivecode.ca/iot)
ویژگی مقدار
سیستم عامل -
نام فایل aliot-py-0.5.0
نام aliot-py
نسخه کتابخانه 0.5.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Mathis Laroche, Enric Soldevila
ایمیل نویسنده alivecode.developers@gmail.com
آدرس صفحه اصلی https://github.com/ALIVEcode/aliot/tree/aliot2
آدرس اینترنتی https://pypi.org/project/aliot-py/
مجوز -
### ALIOT-PY: The python implementation of the Aliot library! #### What is Aliot? Before everything else, aliot is a fancy websocket written in python that aims to facilitate iot focused exchanges between a server and a client #### Installation 1. create a python virtual environment - run the command `py -m venv venv` 2. add aliot in a folder in your project (replace $FOLDER in the command by the name of your folder) 3. run the command `pip install ./$FOLDER` #### Creating my first Aliot program 1. create an object ObjConnecte #### Creating an endpoint (or, like we call it here, a protocol) 1. Create a function that takes some parameters ```py # my function will take money ($) and give cookies for every 2$ received def give_cookies_for_money(money: int): return {"cookies": money // 2} ``` 2. Register your function as a protocol by decorating it with the `on_recv` decorator in your ObjConnecte that you created for your project and pass the id of your protocol in the argument of the decorator ```py # here, I chose that my function will be protocol 34 @my_iot.on_recv(action_id=34) def give_cookies_for_money(money: int): return {"cookies": money // 2} ``` 3. As of now, my function `give_cookies_for_money` doesn't return anything to the server, if I want to send back my cookies, I have to ways: 1. use the function `my_iot.send()` ```py @my_iot.on_recv(action_id=34) def give_cookies_for_money(money: int): my_iot.send({"cookies": money // 2}) ``` 2. set the convenience parameter `send_result` to True in the decorator ```py @my_iot.on_recv(action_id=34, send_result=True) def give_cookies_for_money(money: int): return {"cookies": money // 2} ``` 3. You're all set! Now repeat and enjoy! 🎉 #### Order of execution (once `run()` is called) 1. obj.on_start() * On receive: 1. [ interceptor.intercept_recv() ] 2. decoder.decode_event(event: dict) -> AliotEvent 3. controller.handle_event(event: AliotEvent) -> None 4. decoder.decode_data<T>(data: dict) -> T * On send: 1. encoder.encode_data(data: Any) -> dict 2. encode.encode_event() 3. obj.__send_event() -> None


نیازمندی

مقدار نام
~=1.3.2 websocket-client
~=12.3.0 rich
~=8.1.3 click
~=2.27.1 requests
==62.1.0 setuptools


زبان مورد نیاز

مقدار نام
>=3.7 Python


نحوه نصب


نصب پکیج whl aliot-py-0.5.0:

    pip install aliot-py-0.5.0.whl


نصب پکیج tar.gz aliot-py-0.5.0:

    pip install aliot-py-0.5.0.tar.gz