jrpyprogramming 0.2.6__tar.gz → 0.2.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/PKG-INFO +1 -1
- jrpyprogramming-0.2.7/jrpyprogramming/__version__.py +1 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/dev/buildings.py +1 -1
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/dev/energy_demand.py +1 -1
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/dev/sectors.py +2 -2
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/pyproject.toml +1 -1
- jrpyprogramming-0.2.6/jrpyprogramming/__version__.py +0 -1
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/__init__.py +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/data/buildings.zip +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/data/data1.csv +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/data/data2.csv +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/data/data2.xlsx +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/data/data3.csv +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/data/data3.txt +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/data/data4.csv +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/data/data5.csv +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/data/energy_demand.zip +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/data/experiment.csv +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/data/genome.csv +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/data/movies.zip +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/data.py +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/data_raw/ccc_data/residential_buildings_archetype_dataset.zip +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/data_raw/ccc_data/seventh_carbon_budget_full_dataset.zip +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/dev/__init__.py +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/examples/agriculture.csv +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/examples/aviation.csv +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/examples/electricity_supply.csv +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/examples/industry.csv +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/examples/source.txt +0 -0
- {jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/examples/surface_transport.csv +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.2.7"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"""
|
|
2
2
|
This non-exported module creates the `buildings` dataset used by the climate
|
|
3
|
-
variant of the course, in chapter
|
|
3
|
+
variant of the course, in chapter 1.
|
|
4
4
|
|
|
5
5
|
The source is the Seventh Carbon Budget residential-buildings archetype dataset
|
|
6
6
|
published by the Climate Change Committee (CCC), downloaded from:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"""
|
|
2
2
|
This non-exported module creates the `energy_demand` dataset used by the
|
|
3
|
-
climate variant of the course, in the chapter
|
|
3
|
+
climate variant of the course, in the chapter 4
|
|
4
4
|
exercises.
|
|
5
5
|
|
|
6
6
|
The source is the Seventh Carbon Budget full dataset published by the Climate
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
This non-exported module creates the per-sector example CSV files used by the
|
|
3
|
-
climate variant of the course, in the chapter
|
|
4
|
-
chapter
|
|
3
|
+
climate variant of the course, in the chapter 2 and
|
|
4
|
+
chapter 4 file-concatenation and comprehension material.
|
|
5
5
|
|
|
6
6
|
It reads the Seventh Carbon Budget full dataset published by the Climate Change
|
|
7
7
|
Committee (CCC) directly. The raw workbook is stored zipped in
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.2.6"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/examples/electricity_supply.csv
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{jrpyprogramming-0.2.6 → jrpyprogramming-0.2.7}/jrpyprogramming/examples/surface_transport.csv
RENAMED
|
File without changes
|