Metadata-Version: 2.4
Name: weather_analyzer_njcs
Version: 0.0.3
Summary: "For analyzing weather data"
Author: Nick Jardine
Classifier: Programming Language :: Python :: 3.14
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Dynamic: license-file

# Weather Analyzer

## Read a file and append to an array

## Install

Navigate to the weather_program directory and create a venv

```bash
py -m venv .venv
./.venv/bin/activate
```

use the package manager pip to install the package

```bash
pip install .

py run.py
```

### Functions

```python
# takes a csv file path and returns the data frame
load_csv(file)
```

```python
# appends the read in data to the weather data array
add_to_weather_data(file_content)
```
