PRPConnector

Connector for Clients to the PRP-Backend


Keywords
API
License
MIT
Install
pip install PRPConnector==0.1

Documentation

PRP-Connector

GitHub GitHub repo size GitHub code size in bytes Lines of code GitHub last commit CI - Tests GitHub Release Date GitHub tag (latest by date) PyPi PyPI GitHub deployments

Installation

Install the current release over PyPI:

$ pip install PRPConnector

Clone the whole repository for the latest version:

$ git clone https://github.com/manuelbieri/PRP-APIConnect.git

Documentation

The code documentation is hosted on github.io/PRP-APIConnect.

Example

ToDo Connector

import PRPConnector.ToDoConnector as Connector

connection: Connector.ToDoConnector = Connector.ToDoConnector('username', 'password', 'domain_url')
connection.get_all_todo()

Basic Connector

import PRPConnector.Connector as Connector

connection: Connector.PRPConnector = Connector.PRPConnector('username', 'password', 'domain_url')
connection.get_all('todo')

See the documentation for further methods.