Designed to interact with the Milton Keynes' BT DX platform
Project description
BTDX Library
The btdx library is designed to interact with the Milton Keynes' BT Data Exchange Platform. This README provides a guide on how to install, set up, and effectively use the DX class.
Table of Contents
Installation
-
From PyPI (Python Package Index)
You can install the
btdxlibrary using pip. Make sure you havepython >= 3.8and pip installed on your machine, then,pip install btdx
-
From source
To install btdx from source, clone the repository from here. In your terminal type:
pip install .
or in editable mode
pip install -e .
You will also need requests to use
btdxpip install requests
Usage
To use the btdx, you need to create an instance of DX first. Then use either post method to ingest data or get method to retrieve data
-
Initialization
To create an instance of DX, provide your API key, feed ID, and optionally a version number.
from btdx import DX # Make sure to import the DX class from the module api_key = "your_api_key" # Your API key feed_id = "your_feed_id" # The feed ID you want to interact with version = 1 # Optional: Version number (default is 1) response = DX(api_key, feed_id, version)
-
Posting Data
You can post data to a specific stream by calling the post method. You need to provide the stream ID and the data you want to post.
stream_id = "100" # The ID of the stream you want to post data to data = "AQI: 2" # The value you want to post response.post(stream_id=stream_id, data=data)
-
Getting Data
To retrieve data from a specific stream, use the get method. You can specify the stream ID and whether you want to display the data.
stream_id = "100" # The ID of the stream you want to get data from # Retrieve and display data response.get(stream_id=stream_id, display=True)
You can also pass optional parameters such as agregate.
# Retrieve last 100 values between a date range and display data, if no range is provided last 100 values from current time will be obtained. start="YYYY-MM-DD" end="YYYY-MM-DD" response.get(stream_id=stream_id, start=start, end=end, display=True, agregate=True)
Contributing
Contributions are welcome! If you find any issues or have suggestions for improvements, feel free to submit a pull request or open an issue.
License
This project is licensed under the MIT License. See the LICENSE file for details.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file btdx-0.0.3.tar.gz.
File metadata
- Download URL: btdx-0.0.3.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a7c1b5a7cfac185f38dcfb95377c16f2698dd0b5f627b3c84cacaf936615b54
|
|
| MD5 |
148d500f02a895ef35c953a02dfe7a6f
|
|
| BLAKE2b-256 |
23170735e5cc45610055df41ce4c0e49067be7ac36d89fa51168da9703c3b954
|
File details
Details for the file btdx-0.0.3-py3-none-any.whl.
File metadata
- Download URL: btdx-0.0.3-py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78a7c0eb59401a0f94be5950e6f9dd06c285e794e0d0308e5868489f8b6a792b
|
|
| MD5 |
ce4fc8ef4d49b7f9e6a43533277826bf
|
|
| BLAKE2b-256 |
48020b7c5a728b3216c42b38690ca9b55842f2e4678e556e0fabcf5f5592dfab
|