Skip to content

Commit 5b8a638

Browse files
authored
Merge pull request #3 from Myoldmopar/PolishingAgain
Rename source dir to energyplus_api_helpers
2 parents f7dcf48 + 6b554c5 commit 5b8a638

17 files changed

+24
-24
lines changed

.github/workflows/flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ jobs:
1818
run: pip install flake8
1919

2020
- name: Run Flake8
21-
run: flake8 eplus_api_helpers
21+
run: flake8 energyplus_api_helpers

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ jobs:
4444
- name: Extract EnergyPlus
4545
run: ${{ matrix.extract_command }} "energyplus${{ matrix.file_extension }}"
4646
- name: Run Example Script 01
47-
run: python ./eplus_api_helpers/demos/01_simple_library_call.py "./${{ matrix.file_base_name }}"
47+
run: python ./energyplus_api_helpers/demos/01_simple_library_call.py "./${{ matrix.file_base_name }}"
4848
# - name: Run Example Script 02
49-
# run: python ./eplus_api_helpers/demos/02_threaded.py "./${{ matrix.file_base_name }}"
49+
# run: python ./energyplus_api_helpers/demos/02_threaded.py "./${{ matrix.file_base_name }}"
5050
- name: Run Example Script 03
51-
run: python ./eplus_api_helpers/demos/03_multiprocessed.py "./${{ matrix.file_base_name }}"
51+
run: python ./energyplus_api_helpers/demos/03_multiprocessed.py "./${{ matrix.file_base_name }}"
5252
- name: Run Example Script 04
53-
run: python ./eplus_api_helpers/demos/04_dynamic_terminal_output_progress.py "./${{ matrix.file_base_name }}"
53+
run: python ./energyplus_api_helpers/demos/04_dynamic_terminal_output_progress.py "./${{ matrix.file_base_name }}"
5454
- name: Run Example Script 05
55-
run: python ./eplus_api_helpers/demos/05_dynamic_terminal_output.py "./${{ matrix.file_base_name }}"
55+
run: python ./energyplus_api_helpers/demos/05_dynamic_terminal_output.py "./${{ matrix.file_base_name }}"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
This project is a small library of helper functionality and, more importantly, demo scripts, for interacting with the EnergyPlus API.
44
The EnergyPlus Python API is not on PyPi (as of now), it simply comes with the EnergyPlus installation.
5-
This library makes that process a bit easier, and also offers a set of demos in the `eplus_api_helpers/demos` folder.
5+
This library makes that process a bit easier, and also offers a set of demos in the `energyplus_api_helpers/demos` folder.
66

77
A super minimal example using the helper class here:
88

99
```python
1010
from pathlib import Path
11-
from eplus_api_helpers.import_helper import EPlusAPIHelper
11+
from energyplus_api_helpers.import_helper import EPlusAPIHelper
1212

1313
helper = EPlusAPIHelper(Path('/path/to/EnergyPlus-22-2-0'))
1414
api = helper.get_api_instance()

eplus_api_helpers/demos/01_simple_library_call.py renamed to energyplus_api_helpers/demos/01_simple_library_call.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from pathlib import Path
22
from sys import argv
3-
from eplus_api_helpers.import_helper import EPlusAPIHelper
3+
from energyplus_api_helpers.import_helper import EPlusAPIHelper
44

55

66
eplus_path = '/eplus/installs/EnergyPlus-22-2-0'

eplus_api_helpers/demos/02_threaded.py renamed to energyplus_api_helpers/demos/02_threaded.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from pathlib import Path
22
from sys import argv
33
from threading import Thread
4-
from eplus_api_helpers.import_helper import EPlusAPIHelper
4+
from energyplus_api_helpers.import_helper import EPlusAPIHelper
55

66

77
eplus_path = '/eplus/installs/EnergyPlus-22-2-0'

eplus_api_helpers/demos/03_multiprocessed.py renamed to energyplus_api_helpers/demos/03_multiprocessed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from pathlib import Path
22
import multiprocessing as mp
33
from sys import argv
4-
from eplus_api_helpers.import_helper import EPlusAPIHelper
4+
from energyplus_api_helpers.import_helper import EPlusAPIHelper
55

66
eplus_path = '/eplus/installs/EnergyPlus-22-2-0'
77
if len(argv) > 1:

eplus_api_helpers/demos/04_dynamic_terminal_output_progress.py renamed to energyplus_api_helpers/demos/04_dynamic_terminal_output_progress.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from pathlib import Path
22
from sys import argv
3-
from eplus_api_helpers.import_helper import EPlusAPIHelper
3+
from energyplus_api_helpers.import_helper import EPlusAPIHelper
44

55
eplus_path = '/eplus/installs/EnergyPlus-22-2-0'
66
if len(argv) > 1:

eplus_api_helpers/demos/05_dynamic_terminal_output.py renamed to energyplus_api_helpers/demos/05_dynamic_terminal_output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from pathlib import Path
33
from sys import argv
44
import sparkline
5-
from eplus_api_helpers.import_helper import EPlusAPIHelper
5+
from energyplus_api_helpers.import_helper import EPlusAPIHelper
66

77
outdoor_db_handle = None
88
plot_data = []

eplus_api_helpers/demos/06_plot_e_plus.py renamed to energyplus_api_helpers/demos/06_plot_e_plus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import matplotlib.pyplot as plt
22
from pathlib import Path
3-
from eplus_api_helpers.import_helper import EPlusAPIHelper
3+
from energyplus_api_helpers.import_helper import EPlusAPIHelper
44

55

66
class PlotManager:

0 commit comments

Comments
 (0)