This Python script provides a simple interface to execute the Eterna prediction tool (Windows .exe file) from the command line.
To use this wrapper correctly:
- Place the contents of this repository directly under the
C:\directory. - Rename the main folder from
eterna_wrappertoeterna33.
After setup, your folder structure should look like:
C:\
└── eterna33\
├── main.py
├── predict.exe
└── sites\This wrapper has also been tested on Ubuntu using Wine.
In this case:
- Place the files under
/home/your-user/.wine/drive_c/eterna33/ - Refer to the Wine documentation to confirm the correct location of your
C:\drive.
python3 main.py --sitename=PARIS --startdate=01/01/2024 --enddate=10/01/2024 --samplerate=10python3 main.py -s PARIS -sd 01/01/2024 -ed 10/01/2024 -sr=10_Note: Ensure the sites folder is correctly set up. An example sites folder is included in this repository. You will need to configure your site-specific parameters similarly to how you would with the stock Eterna tool. _
- Python >= 3.6
- Wine (required for Linux users)