ca频谱web服务api包装器。

spectrum-client的Python项目详细描述


频谱客户端

imageimageimage


ca频谱web服务api包装器

安装

spectrum客户端在pypi上发布,在linux/macos和windows上可用,并支持python 2.7、3.4+。

pip install -U spectrum-client

用法

fromspectrum_clientimportSpectrumoc=Spectrum('http://oneclick.mydomain:8080','myuser','secret')# Update a model attributeoc.update_attribute(0x210afa,0x10024,'MySNMPSecret')# Update multiple attributesnotes='Some notes'updates=[(0x11564,notes),(0x12db9,'JKL002'),(0x1295d,False)]oc.update_attributes(mh,updates)# Get a list of devices by name, using regex, restricting the search to landscape 0x200000oc.devices_by_name('^SW00',0x200000)# Get a lis tof devices by specific attribute from all landscapesoc.devices_by_attr(0x12db9,'XYZ001')# Get a list of devices by multipe matching filtersoc.devices_by_filters([(attr1,'equals',value1),(attr2,'has-pcre','^foo.*bar')],landscape)# Put a model in maintenance modeoc.set_maintenance(model_handle,True)# Remove a model from maintenance modeoc.set_maintenance(model_handle,False)# Create an event of type 0x10f06 (generates a High Memory Utilization alarm) on a device with IP Address.event='0x10f06'device_ip='10.10.0.1'var_binds={0:75,1:99,3:'mem_instance',5:'name'}oc.generate_event_by_ip(event,device_ip,var_binds)

如果不提供,将从环境变量SPECTRUM_URLSPECTRUM_USERNAMESPECTRUM_PASSWORD读取服务器和凭据。

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
java“抹去”了整个swing GUI,只有一个组件例外   有人能解释一下为什么这个用来反转字符串的Java程序不起作用吗?   jar使用java代码发送电子邮件   java如何使用keyRelease连续激发筛选表?   安卓 studio在java中执行lua脚本   java在实现StatefulJob时,“延迟”是什么意思?   当我再次尝试上传时,java Android无法查看保存在新目录中的图像   爪哇岩布剪刀问题只返回一半结果   使用Jersey Rest客户端进行java异步大文件上载   Java日历。加错年份   java对于多个autosize文本视图只有一个大小   java JodaTime:句点、间隔和持续时间之间有什么区别?   java对返回数据的正确处理   多线程多线程在java中打印偶数和奇数?   摆动Java弹跳球移动   httpconnection Java HttpUrlConnection抛出连接被拒绝   寻找C#的XmlConvert的Java等价物。编码名称   jetty在一个cookie Java代码中设置多个值   使用maven构建java jar显示错误   java我可以只使用输入在iText中生成超级脚本吗?