Created file get_glpi_printers.py

This file will call glpi to retrieve a list of printers in the test department using the GLPI REST API
This commit is contained in:
Евгений Иваницкий 2023-03-16 18:55:13 +03:00
parent dde5211e1f
commit 9ca8334240
Signed by: pikone
GPG Key ID: 32193CA36A1696DA

9
get_glpi_printers.py Normal file
View File

@ -0,0 +1,9 @@
import requests
api_url = "https://glpi.ipa.basealt.ru"
def main():
print("hello")
if __name__ == "__main__":
main()