Евгений Иваницкий
9ca8334240
This file will call glpi to retrieve a list of printers in the test department using the GLPI REST API
9 lines
127 B
Python
9 lines
127 B
Python
import requests
|
|
|
|
api_url = "https://glpi.ipa.basealt.ru"
|
|
|
|
def main():
|
|
print("hello")
|
|
|
|
if __name__ == "__main__":
|
|
main() |