Made Pegass API Request easy !
French Red Cross is currently using a tool named Pegass to visualize, enroll to activities, monitor them and more... This application is carefully thought out, and the different views give you plenty options to display your data. However, my motivation was to extract Pegass data to analyze it and create some custom views. The application was not designed to let users get data out of the box (closed API, no CSV extract, ...). That's why I made this little module to help whoever wants to extract their data in a simple way through the Pegass API. 🚗 🚗 🚒 🚒 🚨 🚨
- Get authentication cookies to open Pegass API gate with your application credential
- Create an abstraction for requesting the API
# Connect to your virtualenv
$ workon projectenv
# Use pip to install the package
$ pip install pegass_auth
Verify now if the package as been successfully installed
$ python
>> import pegass_auth # Should not raise exception
import os
import requests
import pegass_auth
username = os.environ['username']
password = os.environ['password']
auth_cookies = pegass_auth.login(username, password)
# When using 'requests' package
r = requests.get('{}/crf/rest/gestiondesdroits'.format(pegass_auth.DEFAULT_PEGASS_URL), cookies=auth_cookies)
if r.status_code == 200:
print(r.json())
else:
print('Request went wrong ! Status code returned : {}'.format(r.status_code))
The package gives you two ways to make a request to Pegass API :
- Using cookies :
import os
import pegass_auth as pegass
auth_cookies = login(os.environ['username'], os.environ['password'])
rules = pegass.request('crf/rest/gestiondesdroits', cookies=auth_cookies)
print(rules)
- Using credentials:
import os
import pegass_auth as pegass
username = os.environ['username']
password = os.environ['password']
rules = pegass.request('crf/rest/gestiondesdroits', username=username, password=password)
print(rules)
Note: The last way to make request (the one with username and password) runs each time the login
logic. Make cookies methods your first choice if you need to do multiple API requests.
All the previous codes prints the following response:
{
'utilisateur':{
'id':'01XXXXXXXX',
'structure':{
'id':1XXX,
'typeStructure':'UL',
'libelle':'UNITE LOCALE DE XXXXXXX',
'libelleCourt':'XX',
'adresse':'XX XXXXXXXXXXXXXXXX XXXXXX XXXX XXXXXXXX',
'telephone':'X XX XX XX XX',
'mail':'[email protected]',
'siteWeb':'XXXXXXXXXXXX.croix-rouge.fr/XXXXXXXX/',
'parent':{
'id':XX
},
'structureMenantActiviteList':[
{
'id':1XXX,
'libelle':'UNITE LOCALE DE XXXXXXX'
}
]
},
'nom':'Foo',
'prenom':'Bar',
'actif':True,
'mineur':False
},
'structuresAdministrees':[
]
}
I've started to do a reverse engineering on Pegass app to list the API endpoints I need in order to achieve my personal app.
Their is no error handler implemented yet in the package.