معرفی شرکت ها


easy-manage-0.0.1


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Managing server infrastructure easily
ویژگی مقدار
سیستم عامل -
نام فایل easy-manage-0.0.1
نام easy-manage
نسخه کتابخانه 0.0.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Borkowski Szymus, Rejowski Tomus, Wanczyk Wojtek
ایمیل نویسنده borkowskiszymon28@gmail.com, tomekgsd@gmail.com, wojtekwanczyk@gmail.com
آدرس صفحه اصلی https://github.com/wojtekwanczyk/easy_manage
آدرس اینترنتی https://pypi.org/project/easy-manage/
مجوز -
# easy-manage :fish: This python package has been created to facilitate remote server management. It is focused on out-of-band management through IPMI and Redefish standards, however, it is possible to perform in-band management with it. The reason of creation of such package is need to unify server management regardless of standard or protocol we use below. Easy-manage delivers unified management interface. Easy-manage is able to connet either Network Interface Card assigned to BMC or whole system. You can give multiple IP addresses to ControllerFactory and it will try to connect to all of them. Example config: ``` from easy_manage.tools import Protocol from easy_manage import Credentials bmc_credentials = Credentials('username', 'password') system_credentials = Credentials('username2', 'password2') config = { Protocol.REDFISH: { 'address': bmc_ip_address, 'credentials': bmc_credentials }, Protocol.IPMI: { 'address': bmc_ip_address, 'credentials': bmc_credentials }, Protocol.BASH: { 'address': system_ip_address, 'credentials': system_credentials }, } ``` Above configuration will enable user to connect to device with all three accessible protocols. To create abstract controller over theses interfaces, we need to use ControllerFactory ``` controller = ControllerFactory.get_controller(config) ``` Now it is ready to use. ``` # See all available system methods print(ControllerFactory.get_methods(controller.system)) # See all available chassis methods print(ControllerFactory.get_methods(controller.chassis)) # Test simple abstract methods print(controller.chassis.get_power_state()) print(controller.system.get_led_state()) controller.system.power_on() ``` Connector depending on its configuration is able to aggregate up to three components: - System - Chassis - Shell You can get bulk data from every component using pre-defined methods `redings()`, `static_data()` and `raw_data()` on controller components. ``` from pprint import pprint pprint(controller.shell.readings()) pprint(controller.system.static_data()) pprint(controller.chassis.raw_data()) ``` What is important, you can invoke methods through any connected component interface by referencing it explicitly. Above calls could be transformed to: ``` from pprint import pprint pprint(controller.components['shell']['bash'].readings()) pprint(controller.components['system']['redfish'].static_data()) pprint(controller.components['chassis']['redfish'].raw_data()) # PowerShell is not supported yet #pprint(controller.components['shell']['power_shell'].readings()) pprint(controller.components['system']['ipmi'].static_data()) pprint(controller.components['system']['ipmi'].static_data()) ``` See more examples in demo/demo.py Package has been designed to provide command line tool but it has not been binded with implemented functionalities yet. Please note that this package came into existence as a part of bachelor's thesis and has not been commercially used and thus may be buggy.


نیازمندی

مقدار نام
>=2.1.0 redfish
>=2.7 cryptography
- python-ipmi
>=2.6.0 paramiko
>=0.3.1 inflection


نحوه نصب


نصب پکیج whl easy-manage-0.0.1:

    pip install easy-manage-0.0.1.whl


نصب پکیج tar.gz easy-manage-0.0.1:

    pip install easy-manage-0.0.1.tar.gz