printers-tests/get_glpi_printers.py
Евгений Иваницкий 9ca8334240
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
2023-03-16 18:55:13 +03:00

9 lines
127 B
Python

import requests
api_url = "https://glpi.ipa.basealt.ru"
def main():
print("hello")
if __name__ == "__main__":
main()