Jason Secula c023fd3c10
All checks were successful
Build python package / Build (push) Successful in 20s
changed module version to 1.0.1
2026-02-20 06:44:29 +01:00
2026-02-20 06:42:46 +01:00
2026-02-20 06:44:29 +01:00
2026-02-18 10:58:06 +01:00
2026-02-18 10:58:06 +01:00
2026-02-18 10:58:06 +01:00

GLPIAPI

A python module to help making API requests to GLPI servers easier.

Usage

You can create an GLPIAPI object to connect to the API using an APpToken and an UserToken.

Example :

from GLPIAPI import GLPIAPI

glpiServer = https://my-glpi-server.local
glpiAppToken = "YOUR-APP-TOKEN"
glpiUserToken = "YOUR-USER-TOKEN"
glpiUserAgent = "GLPI API Connector"

GLPIConnector = GLPIAPI(Server=glpiServer, AppToken=glpiAppToken, UserToken=glpiUserToken, UserAgent=glpiUserAgent)

device = GLPIConnector.GetDevice(serialNumber="S0123456789")
Description
A module python to make it easier to use GLPI API
Readme 61 KiB
Languages
Python 100%