معرفی شرکت ها


aio-exos-0.4.0


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Extreme EXOS asyncio client for JSON-RPC and RESTCONF
ویژگی مقدار
سیستم عامل -
نام فایل aio-exos-0.4.0
نام aio-exos
نسخه کتابخانه 0.4.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Jeremy Schulman
ایمیل نویسنده -
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/aio-exos/
مجوز -
**WORK IN PROGESS** # Extreme EXOS asyncio Client This repository contains an Extreme EXOS asyncio client, support for both JSON-RPC and RESTCONF options. For reference on the EXOS JSON-RPC, refer to [this document](https://documentation.extremenetworks.com/app_notes/MMI/121152_MMI_Application_Release_Notes.pdf). For reference on the EXOS RESTCONF support, refer to [this document](https://api.extremenetworks.com/EXOS/ProgramInterfaces/RESTCONF/RESTCONF.html ). ### Device Configuration In order to access the EXOS device via API you must enable the web server feature using either http or https. ```text enable web http enable web https # requires ssl configuration as well. ``` ### JSON-RPC Usage ```python from aioexos.jsonrpc import Device dev = Device(host='myhostname', username='user', password='Random') show_one = await dev.cli('show switch') show_many = await dev.cli(['show switch', 'show version']) # get text instead of JSON/dict show_text = await dev.cli('show switch', text=True) ``` ### RESTCONF Usage The RESTCONF API supports only JSON body at this time. XML is not supported even though the documentation states that it does. ```python from aioexos.restconf import Device dev = Device(host='myhostname', username='user', password='Random') # login step required for session authentication await dev.login() # execute commands providing the restconf URL, supports all request methods # (GET, POST, etc.) res = await dev.get('/openconfig-system:system') # close connection when done with commands await dev.aclose() ```


نیازمندی

مقدار نام
- httpx


نحوه نصب


نصب پکیج whl aio-exos-0.4.0:

    pip install aio-exos-0.4.0.whl


نصب پکیج tar.gz aio-exos-0.4.0:

    pip install aio-exos-0.4.0.tar.gz