Skip to content

Commit

Permalink
feat: add README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
furkan-bilgin committed Oct 11, 2024
1 parent a1df05e commit fd19b40
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions README.md
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
```

0 comments on commit fd19b40

Please sign in to comment.