The unofficial API to the TSA Compass membership database
Project description
Compass Interface - Core
The Compass Interface project aims to provide a unified and well-documented API to the Scouts' national membership system, Compass.
Notice
This is not an official API to Compass and as such should be used in a way that doesn't cause a high request load on the Compass system.
Please also remember your personal data handling obligations (under both GDPR and Scouting policies) whilst using this module.
Where to get it
The source code for the project is hosted on GitHub at the-scouts/compass-interface-core
Installers for the latest release are availibe on Conda and at the Python Package Index (PyPI).
# conda
conda install compass-interface-core
# or PyPI
pip install compass-interface-core
Dependencies
- requests - for intuitive HTTP requests
- lxml - for parsing HTML documents
- pydantic, email-validator, phonenumbers - for data validation and parsing
License
Compass Interface - Core is naturally open source and is licensed under the MIT license.
Core Module
This sub-project hosts the extraction functionaility of Compass Interface, and is itself a standalone module for querying Compass.
The main project is found at the-scouts/compass-interface.
Example Usage
import compass.core as ci
# Turn on debug logging for development
ci.logger.enable_debug_logging()
# Login to Compass
api = ci.login("username", "password")
# Get all unique members from your hierarchy
member_set = api.hierarchy.get_unique_members()
Specifying a role
By default, Compass Interface uses your primary role to access Compass. To
change this, a custom role can be specified when calling ci.login
, as
follows:
import compass.core as ci
# Turn on debug logging for development
ci.logger.enable_debug_logging()
# Login to Compass
api = ci.login("username", "password", role="role_as_on_compass")
The string passed to the role
argument must match the role title on Compass
exactly, as they are compared internally. You can validate that the role has
updated successfully through the log output.
Specifying a role and location
If you have multiple roles with the same title on compass (for example, two
Group Administrator
or Scout Active Support Manager
roles), these can be
differentiated by also specifying a role location, as follows:
import compass.core as ci
# Turn on debug logging for development
ci.logger.enable_debug_logging()
# Login to Compass
api = ci.login("username", "password", role="role_as_on_compass", location="location_as_on_compass")
As with the role title, the location needs to match the text in the Location
column of My Roles
exactly, as we verify the text matches internally.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for compass-interface-core-0.15.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0f509432ed33289225015ace8ba29faa73db0e681c01d2fbcb7e2fffc31b3ce |
|
MD5 | 2ae2e479bc936132536948cdc6a512da |
|
BLAKE2b-256 | 092e0bdc5f2592b98ed9b2a0e74a025bc6600256a607c4023cecb60bab7b3f01 |
Hashes for compass_interface_core-0.15.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9faa7e9718ca45cfde51a6c555948c2483bb3f2a0e6b7b5b0c71a2331bc898c |
|
MD5 | 09cd105c6acaaa57d314ff13cde1122a |
|
BLAKE2b-256 | 62d7687430dfcbbb7ecff2ac05f3a5ddba42b7eb13c864011d7ebb1ca1d4e953 |