Python SDK for accessing the TravelPerk API
Project description
travelperk-http-python
About
This is an unofficial package for acessing the TravelPerk official Web API from your Python language project. It is designed so you can easily query and retrieve all data hold on their platform and accessible through the API.
Installation
This package is hosted on PyPi, you can install it using any python package manager.
$ pip install travelperk-http-python
Getting started
Before getting started retrieving querying information from the TravelPerk Web API you first need to get an API Key.
Getting a TravelPerk instance
For querying the data you need to get a TravelPerk instance, here are two ways to get a TravelPerk API instance depending on how you authenticate with their API.
At TravelPerk there are two ways to authenticate, using an API Key or OAuth2.
For API Key Authentication
If you have an API Key for authenticating you need to call the Service Provider's build
method passing your api key, and a boolean indicating if you will be using the sandbox environment or not like this:
from travelperk_http_python.builder.builder import build
is_sandbox = False
travelperk = build("YOUR_API_KEY", is_sandbox)
For OAuth Authentication
Due to time constrains the OAuth authentication flow is not fully implemented so is not supported yet, see this GitHub issue
Retrieving data
Everything is ready, you can start asking for the data.
travelperk.expenses().invoices().all()
For further information refer to the documentation linked in the next section.
Documentation
The full documentation can be found in the wiki section of this github repository. Also you can refer to the official TravelPerk Web API documentation
License
Contributing
Any suggestion, bug reports, prs or any other kind enhacements are welcome. Just open an issue first, for creating a PR remember this project has linting checkings and unit tests so any PR should comply with both before beign merged, this checks will be automatically applied when opening or modifying the PRs.
Local development
This project comes with a docker-compose.yml
file so if you use Docker and docker-compose you can develop without installing anything on your local environment. Just run docker-compose up --build
for the first time to setup the container and launch the tests. Pytest is configured as the entrypoint so just run docker-compose up
everytime you want the tests to execute on the Dockerized Python development container.
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 travelperk-http-python-1.0.10.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f68da0386611a99ab554aac39056a6337b94787b6c70eeb5de15187d8a62afd3 |
|
MD5 | b2f07751faa03e6c0185372950aac86f |
|
BLAKE2b-256 | 1c2a6ddba0137320ab310ff66dc9782e687b156d7c0ff33166d15bce89b98055 |
Hashes for travelperk_http_python-1.0.10-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c17c358e7f95c35244509fea1fb8dfdc2b5681502b67e8ecbc01001edf08887 |
|
MD5 | a2026f565179efd0f22c5dd3483cae81 |
|
BLAKE2b-256 | 0ce6181d414d0dca83479501a3ffb1b5db96bbc52528c38c42b50e1f4c145990 |