Skip to content

Instantly share code, notes, and snippets.

@sky-joker
Created June 28, 2020 03:52
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Zabbixテンプレート
#!/usr/bin/env python
from zabbix_api import ZabbixAPI
if __name__ == "__main__":
url = ""
user = ""
passwd = ""
zapi = ZabbixAPI(server=url)
zapi.login(user, passwd)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment