Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imubit/data-agent
Python package for accessing real-time and historical data on industrial historians and control systems.
https://github.com/imubit/data-agent
control-systems historical-data industrial-iot python time-series-data
Last synced: about 2 months ago
JSON representation
Python package for accessing real-time and historical data on industrial historians and control systems.
- Host: GitHub
- URL: https://github.com/imubit/data-agent
- Owner: imubit
- License: lgpl-3.0
- Created: 2023-08-21T21:29:18.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-06T22:19:54.000Z (about 1 year ago)
- Last Synced: 2023-12-19T17:13:44.580Z (about 1 year ago)
- Topics: control-systems, historical-data, industrial-iot, python, time-series-data
- Language: Python
- Homepage:
- Size: 82 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
- Authors: AUTHORS.md
Awesome Lists containing this project
README
[![PyPI-Server](https://img.shields.io/pypi/v/data-agent.svg)](https://pypi.org/project/data-agent/)
[![Coveralls](https://img.shields.io/coveralls/github/imubit/data-agent/main.svg)](https://coveralls.io/r/imubit/data-agent)# Data Agent
Python package for accessing real-time and historical data on industrial historians and control systems.
Different historian protocols and APIs are implemented through standalone plugins.*THIS PACKAGE IS USELESS WITHOUT EXTERNAL PLUGINS IMPLEMENTING TARGET SYSTEM CUSTOM DATA ACCESS PROTOCOLS*
## Description
The package provides a unified data access API having several usage scenarios:
* As a Python package
* As a command line CLI
* As a service (Windows or Linux) using AMQ protocol## Installation
```commandline
pip install data-agent
```Install the plugins required for communicating with the target systems
## Python Package Usage
```python
from data_agent.local_agent import LocalAgentwith LocalAgent() as agent:
agent.api.list_supported_connectors()
agent.api.create_connection(...)
```## Command Line Usage
```bash
dagent --service.id my_service --broker.uri amqp://guest:[email protected]/
```