From 9ca833424037652dbdb39b3c57458d208dad1908 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=95=D0=B2=D0=B3=D0=B5=D0=BD=D0=B8=D0=B9=20=D0=98=D0=B2?= =?UTF-8?q?=D0=B0=D0=BD=D0=B8=D1=86=D0=BA=D0=B8=D0=B9?= Date: Thu, 16 Mar 2023 18:55:13 +0300 Subject: [PATCH] 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 --- get_glpi_printers.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 get_glpi_printers.py diff --git a/get_glpi_printers.py b/get_glpi_printers.py new file mode 100644 index 0000000..c7d7d02 --- /dev/null +++ b/get_glpi_printers.py @@ -0,0 +1,9 @@ +import requests + +api_url = "https://glpi.ipa.basealt.ru" + +def main(): + print("hello") + +if __name__ == "__main__": + main() \ No newline at end of file