-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a1df05e
commit fd19b40
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# ENRGDAQ | ||
|
||
ENRGDAQ is a Python program that allows you to easily create and run data acquisition jobs. It provides a simple and flexible way to collect data from various sources and store it in various formats. | ||
|
||
## Installation | ||
|
||
0. Make sure you have Python 3.12. | ||
1. Clone the repository: | ||
|
||
``` | ||
git clone https://github.com/ENRG-tr/enrgdaq.git | ||
cd enrgdaq | ||
``` | ||
|
||
2. To install the dependencies: | ||
|
||
- We recommend using uv for installing dependencies: | ||
|
||
``` | ||
uv sync | ||
``` | ||
|
||
- Or you can use venv: | ||
|
||
``` | ||
python -m venv venv | ||
source venv/bin/activate # On Windows use `venv\Scripts\activate` | ||
pip install -r requirements.txt | ||
``` | ||
|
||
3. Using the configuration files in `configs/examples/` as a guide, create your own configuration files in the `configs/` directory, with `.toml` extension. | ||
|
||
4. Finally, run the program: | ||
|
||
``` | ||
python src/main.py | ||
``` |