Python 3 API wrapper for Moving Intelligence
Project description
Python: Moving Intelligence
Basic Python 3 API wrapper for Moving Intelligence asset and fleet management
About
This package allows you to get get data from https://movingintelligence.com/en/.
NOTE: You need a login account together with an apikey to be able to use it.
Installation
pip3 install pymovingintelligence
Example code
#!/usr/bin/env python3
from pymovingintelligence import MovingIntelligence, InvalidAuthError, InvalidPermissionsError
import logging
import sys
import json
import time
logger = logging.getLogger(__name__)
logging.basicConfig(level=logging.DEBUG)
try:
## Init
# Initialize API client with your login name and apikey
api = MovingIntelligence(
username="YOUR USERNAME",
apikey="YOUR APIKEY",
)
## Misc data
# Get trip classifications
classifications = api.get_trip_classifications()
logger.info(classifications)
# Get trip periods
periods = api.get_trip_periods()
logger.info(periods)
## Person data
# Get all persons
persons = api.get_persons()
logger.info(persons)
for person in persons:
person_id = person["id"]
name = person["name"]
# Get trips for person
logger.info("Get trips for %s", name)
logger.info(api.get_person_trips(person_id, 'TODAY', 'UNKNOWN'))
logger.info("Get detailed trips for %s", name)
logger.info(api.get_person_detailed_trips(person_id, 'TODAY', 'UNKNOWN'))
## Object data
# Get all objects
objects = api.get_objects()
print(objects)
for object in objects:
object_id = object["id"]
brand = object["brand"]
model = object["model"]
logger.info("Get odometer readings for %s %s", brand, model)
logger.info(api.get_odometer(object_id))
logger.info("Get trips for %s %s", brand, model)
logger.info(api.get_object_trips(object_id, 'TODAY', 'UNKNOWN'))
logger.info("Get detailed trips for %s %s", brand, model)
logger.info(api.get_object_detailed_trips(object_id, 'TODAY', 'UNKNOWN'))
except InvalidAuthError:
logger.debug("Authenticaton error, your username and/or apikey is invalid.")
except InvalidPermissionsError:
logger.debug("You don't have permission to access this data.")
except (Exception) as err:
logger.debug("Unknown error occurred. %s", err)
```
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Close
Hashes for pymovingintelligence-0.0.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7b0f6542cf9d1eafdfb9539d6b66d60c6be7078200dafd20c1ef2f5daaaef33 |
|
MD5 | 1f5fbe46eac0dda326f19c94480d40e9 |
|
BLAKE2b-256 | 9ec36806d73521a275ae61975ab4f01f7b9c5caeb6cbf0fc29071a57b17a3ba3 |