Ctack14-practice-data-sets 0.1.13__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.
- ctack14_practice_data_sets-0.1.13/PKG-INFO +63 -0
- ctack14_practice_data_sets-0.1.13/README.md +52 -0
- ctack14_practice_data_sets-0.1.13/pyproject.toml +38 -0
- ctack14_practice_data_sets-0.1.13/setup.cfg +4 -0
- ctack14_practice_data_sets-0.1.13/src/Ctack14_practice_data_sets.egg-info/PKG-INFO +63 -0
- ctack14_practice_data_sets-0.1.13/src/Ctack14_practice_data_sets.egg-info/SOURCES.txt +13 -0
- ctack14_practice_data_sets-0.1.13/src/Ctack14_practice_data_sets.egg-info/dependency_links.txt +1 -0
- ctack14_practice_data_sets-0.1.13/src/Ctack14_practice_data_sets.egg-info/requires.txt +2 -0
- ctack14_practice_data_sets-0.1.13/src/Ctack14_practice_data_sets.egg-info/top_level.txt +2 -0
- ctack14_practice_data_sets-0.1.13/src/__init__.py +0 -0
- ctack14_practice_data_sets-0.1.13/src/practice_data_sets/__init__.py +4 -0
- ctack14_practice_data_sets-0.1.13/src/practice_data_sets/data/Weather Training Data.csv +99517 -0
- ctack14_practice_data_sets-0.1.13/src/practice_data_sets/data/__init__.py +0 -0
- ctack14_practice_data_sets-0.1.13/src/practice_data_sets/loader.py +17 -0
- ctack14_practice_data_sets-0.1.13/src/practice_data_sets/stats.py +16 -0
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: Ctack14-practice-data-sets
|
|
3
|
+
Version: 0.1.13
|
|
4
|
+
Summary: Australian weather data used to learn and practice data analysis skills.
|
|
5
|
+
Author-email: Caden Atack <cadenthomas4@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/Ctack14/practice-data-sets
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: pandas
|
|
10
|
+
Requires-Dist: numpy
|
|
11
|
+
|
|
12
|
+
# Australian Weather Data Analysis
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
This project loads daily Australian weather data over 10 years
|
|
16
|
+
and stores it in a pandas DataFrame. It's likely that this
|
|
17
|
+
project will expand to perform data analysis.
|
|
18
|
+
|
|
19
|
+
## Dataset
|
|
20
|
+
- Title: Australia Weather Data
|
|
21
|
+
- Source: Kaggle
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
Run main.py to read and display weather data to the console.
|
|
25
|
+
|
|
26
|
+
## Technologies
|
|
27
|
+
- Python 3.10
|
|
28
|
+
- pandas
|
|
29
|
+
|
|
30
|
+
## Installation
|
|
31
|
+
Make sure you have:
|
|
32
|
+
- Python 3.10 or higher installed
|
|
33
|
+
- Build installed: `pip install build`
|
|
34
|
+
-
|
|
35
|
+
To install the required dependencies, run the following command:
|
|
36
|
+
```bash
|
|
37
|
+
pip install Ctack14-practice-data-sets
|
|
38
|
+
```
|
|
39
|
+
---
|
|
40
|
+
To Install as a developer:
|
|
41
|
+
```bash
|
|
42
|
+
pip install Ctack14-practice-data-sets[dev]
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
## Steps
|
|
47
|
+
|
|
48
|
+
For module 2, I broke the project into modules and created a package. This included using a pyproject.toml file for configuration.
|
|
49
|
+
I also took the functions previously in main.py and moved them into their own module files within the package.
|
|
50
|
+
main.py is now just an example usage script to run the package once installed.
|
|
51
|
+
I then generated new documentation with:
|
|
52
|
+
- `pydoc -w practice_data_sets`
|
|
53
|
+
- `pydoc -w main`
|
|
54
|
+
|
|
55
|
+
__init__.py files were added to each package folder to make them recognizable as packages.
|
|
56
|
+
|
|
57
|
+
## For Grading
|
|
58
|
+
|
|
59
|
+
Execute the following:
|
|
60
|
+
```bash
|
|
61
|
+
pip install practice-data-sets
|
|
62
|
+
python main.py
|
|
63
|
+
```
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Australian Weather Data Analysis
|
|
2
|
+
|
|
3
|
+
---
|
|
4
|
+
This project loads daily Australian weather data over 10 years
|
|
5
|
+
and stores it in a pandas DataFrame. It's likely that this
|
|
6
|
+
project will expand to perform data analysis.
|
|
7
|
+
|
|
8
|
+
## Dataset
|
|
9
|
+
- Title: Australia Weather Data
|
|
10
|
+
- Source: Kaggle
|
|
11
|
+
|
|
12
|
+
## Usage
|
|
13
|
+
Run main.py to read and display weather data to the console.
|
|
14
|
+
|
|
15
|
+
## Technologies
|
|
16
|
+
- Python 3.10
|
|
17
|
+
- pandas
|
|
18
|
+
|
|
19
|
+
## Installation
|
|
20
|
+
Make sure you have:
|
|
21
|
+
- Python 3.10 or higher installed
|
|
22
|
+
- Build installed: `pip install build`
|
|
23
|
+
-
|
|
24
|
+
To install the required dependencies, run the following command:
|
|
25
|
+
```bash
|
|
26
|
+
pip install Ctack14-practice-data-sets
|
|
27
|
+
```
|
|
28
|
+
---
|
|
29
|
+
To Install as a developer:
|
|
30
|
+
```bash
|
|
31
|
+
pip install Ctack14-practice-data-sets[dev]
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
## Steps
|
|
36
|
+
|
|
37
|
+
For module 2, I broke the project into modules and created a package. This included using a pyproject.toml file for configuration.
|
|
38
|
+
I also took the functions previously in main.py and moved them into their own module files within the package.
|
|
39
|
+
main.py is now just an example usage script to run the package once installed.
|
|
40
|
+
I then generated new documentation with:
|
|
41
|
+
- `pydoc -w practice_data_sets`
|
|
42
|
+
- `pydoc -w main`
|
|
43
|
+
|
|
44
|
+
__init__.py files were added to each package folder to make them recognizable as packages.
|
|
45
|
+
|
|
46
|
+
## For Grading
|
|
47
|
+
|
|
48
|
+
Execute the following:
|
|
49
|
+
```bash
|
|
50
|
+
pip install practice-data-sets
|
|
51
|
+
python main.py
|
|
52
|
+
```
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
authors = [
|
|
3
|
+
{ name = "Caden Atack", email = "cadenthomas4@gmail.com" }
|
|
4
|
+
]
|
|
5
|
+
name = "Ctack14-practice-data-sets"
|
|
6
|
+
version = "0.1.13"
|
|
7
|
+
description = "Australian weather data used to learn and practice data analysis skills."
|
|
8
|
+
readme = "README.md"
|
|
9
|
+
requires-python = ">=3.10"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"pandas",
|
|
12
|
+
"numpy",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[build-system]
|
|
16
|
+
requires = ["setuptools>=42", "wheel"]
|
|
17
|
+
build-backend = "setuptools.build_meta"
|
|
18
|
+
|
|
19
|
+
[tool.setuptools]
|
|
20
|
+
package-dir = {"" = "src"}
|
|
21
|
+
|
|
22
|
+
[tool.setuptools.package-data]
|
|
23
|
+
"practice_data_sets" = ["data/*.csv"]
|
|
24
|
+
|
|
25
|
+
[project.urls]
|
|
26
|
+
# Homepage is the same as the repository URL
|
|
27
|
+
"Homepage" = "https://github.com/Ctack14/practice-data-sets"
|
|
28
|
+
|
|
29
|
+
# This is currently empty
|
|
30
|
+
# "Issues" = "https://github.com/Ctack14/practice-data-sets/issues"
|
|
31
|
+
|
|
32
|
+
# Install with `pip install .[dev]` to get the dev dependencies
|
|
33
|
+
[tool.uv.dependencies]
|
|
34
|
+
dev = [
|
|
35
|
+
"pytest",
|
|
36
|
+
"black",
|
|
37
|
+
"ruff"
|
|
38
|
+
]
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: Ctack14-practice-data-sets
|
|
3
|
+
Version: 0.1.13
|
|
4
|
+
Summary: Australian weather data used to learn and practice data analysis skills.
|
|
5
|
+
Author-email: Caden Atack <cadenthomas4@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/Ctack14/practice-data-sets
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: pandas
|
|
10
|
+
Requires-Dist: numpy
|
|
11
|
+
|
|
12
|
+
# Australian Weather Data Analysis
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
This project loads daily Australian weather data over 10 years
|
|
16
|
+
and stores it in a pandas DataFrame. It's likely that this
|
|
17
|
+
project will expand to perform data analysis.
|
|
18
|
+
|
|
19
|
+
## Dataset
|
|
20
|
+
- Title: Australia Weather Data
|
|
21
|
+
- Source: Kaggle
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
Run main.py to read and display weather data to the console.
|
|
25
|
+
|
|
26
|
+
## Technologies
|
|
27
|
+
- Python 3.10
|
|
28
|
+
- pandas
|
|
29
|
+
|
|
30
|
+
## Installation
|
|
31
|
+
Make sure you have:
|
|
32
|
+
- Python 3.10 or higher installed
|
|
33
|
+
- Build installed: `pip install build`
|
|
34
|
+
-
|
|
35
|
+
To install the required dependencies, run the following command:
|
|
36
|
+
```bash
|
|
37
|
+
pip install Ctack14-practice-data-sets
|
|
38
|
+
```
|
|
39
|
+
---
|
|
40
|
+
To Install as a developer:
|
|
41
|
+
```bash
|
|
42
|
+
pip install Ctack14-practice-data-sets[dev]
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
## Steps
|
|
47
|
+
|
|
48
|
+
For module 2, I broke the project into modules and created a package. This included using a pyproject.toml file for configuration.
|
|
49
|
+
I also took the functions previously in main.py and moved them into their own module files within the package.
|
|
50
|
+
main.py is now just an example usage script to run the package once installed.
|
|
51
|
+
I then generated new documentation with:
|
|
52
|
+
- `pydoc -w practice_data_sets`
|
|
53
|
+
- `pydoc -w main`
|
|
54
|
+
|
|
55
|
+
__init__.py files were added to each package folder to make them recognizable as packages.
|
|
56
|
+
|
|
57
|
+
## For Grading
|
|
58
|
+
|
|
59
|
+
Execute the following:
|
|
60
|
+
```bash
|
|
61
|
+
pip install practice-data-sets
|
|
62
|
+
python main.py
|
|
63
|
+
```
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
src/__init__.py
|
|
4
|
+
src/Ctack14_practice_data_sets.egg-info/PKG-INFO
|
|
5
|
+
src/Ctack14_practice_data_sets.egg-info/SOURCES.txt
|
|
6
|
+
src/Ctack14_practice_data_sets.egg-info/dependency_links.txt
|
|
7
|
+
src/Ctack14_practice_data_sets.egg-info/requires.txt
|
|
8
|
+
src/Ctack14_practice_data_sets.egg-info/top_level.txt
|
|
9
|
+
src/practice_data_sets/__init__.py
|
|
10
|
+
src/practice_data_sets/loader.py
|
|
11
|
+
src/practice_data_sets/stats.py
|
|
12
|
+
src/practice_data_sets/data/Weather Training Data.csv
|
|
13
|
+
src/practice_data_sets/data/__init__.py
|
ctack14_practice_data_sets-0.1.13/src/Ctack14_practice_data_sets.egg-info/dependency_links.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
File without changes
|