Jason Secula 8b34682e59
All checks were successful
Build python package / Build (push) Successful in 36s
Added entities selection methods and updated profile selection methods
2026-04-25 21:56:37 +02:00
2026-04-23 16:26:03 +02: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 155 KiB
Languages
Python 100%