Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/roaldnefs/kpn-api-store-python
🐍 Python client library for APIs provided by the KPN API Store.
https://github.com/roaldnefs/kpn-api-store-python
api api-cli kpn python python3
Last synced: about 2 months ago
JSON representation
🐍 Python client library for APIs provided by the KPN API Store.
- Host: GitHub
- URL: https://github.com/roaldnefs/kpn-api-store-python
- Owner: roaldnefs
- License: lgpl-3.0
- Created: 2021-01-06T17:00:50.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-11T19:57:50.000Z (almost 4 years ago)
- Last Synced: 2024-10-11T19:47:51.758Z (2 months ago)
- Topics: api, api-cli, kpn, python, python3
- Language: Python
- Homepage: https://kpn-api-store-python.readthedocs.io/en/latest/
- Size: 284 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: COPYING
Awesome Lists containing this project
README
[![kpn-api-store-python](https://github.com/roaldnefs/kpn-api-store-python/blob/main/cover.png?raw=true)](https://github.com/roaldnefs/kpn-api-store-python)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/kpn-api-store?color=090&logo=python&logoColor=white&style=for-the-badge)](https://pypi.org/project/kpn-api-store/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/kpn-api-store?color=090&logo=python&logoColor=white&style=for-the-badge)](https://pypi.org/project/kpn-api-store/)
[![PyPI - Format](https://img.shields.io/pypi/format/kpn-api-store?color=090&logo=python&logoColor=white&style=for-the-badge)](https://pypi.org/project/kpn-api-store/)
[![License](https://img.shields.io/github/license/roaldnefs/kpn-api-store-python?color=090&style=for-the-badge)](https://raw.githubusercontent.com/roaldnefs/kpn-api-store-python/main/COPYING.LESSER)
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/roaldnefs/kpn-api-store-python/tests?color=090&label=CI&logo=github&style=for-the-badge)](https://github.com/roaldnefs/kpn-api-store-python/actions)
[![GitHub contributors](https://img.shields.io/github/contributors/roaldnefs/kpn-api-store-python?color=090&logo=github&style=for-the-badge)](https://github.com/roaldnefs/kpn-api-store-python/graphs/contributors)**kpn-api-store-python** is the Python client library for APIs provided by the [KPN API Store](https://developer.kpn.com/).
```python
from kpnapistore.messaging.sms_kpn.v1 import Clientclient_id = "APP_CLIENT_ID"
client_secret = "APP_CLIENT_SECRET"client = Client(client_id, client_secret)
client.send("KPN API", "316xxxxxxxx", "Hello from kpn-api-store-python!")
```## Installing kpn-api-store-python and Supported Versions
**kpn-api-store-python** is available on PyPI:
```console
$ python -m pip install kpn-api-store
```**kpn-api-store-python** officially supports Python 3.6+.