No project description provided
Project description
OpenWeather Report
Get weather using OpenWeather API and save to a database.
Quickstart
To install, you can use pipx:
$ pipx install openweather_report
or use uv:
$ uv tool install openweather_report
If using pip I would suggest installing into a virtual environment.
Note that libpq is required for psycopg2.
Below is how to install using a Debian based distro like Ubuntu:
$ sudo apt install install libpq-dev libpq5
Then you can install openweather_report.
Then to get help, do:
$ openweather_report --help
Usage: openweather_report [OPTIONS] {one_call}
LATITUDE LONGITUDE API_KEY
Take user inputs and save to either file or database.
Options:
--weather_date [%Y-%m-%d %H:%M]
Put in the date to get the weather for a
particular day.
--save [json|postgresql|sqlite]
--save_path TEXT
--db_string TEXT Connection string to save to database.
--version Show the version and exit.
--help Show this message and exit.
To save data to a json file:
$ openweather_report one_call 30.00 -30.00 your-api-key --save json --save_path
my_city.json
Setting up Database Structure
Currently PostgreSQL and Sqlite are supported. The table structure will need to be generated before attempting to save any data.
PostgreSQL
Below is the structure for raw_json_data:
create schema if not exists weather;
create table if not exists weather.raw_json_data (
(
id bigserial not null
,entry_date timestamp with time zone not null
,api_call text not null
,raw_data jsonb null
,software_version null
,primary key (id)
);
SQLite
The structure is similar to PostgreSQL but does not have a schema:
create table if not exists raw_json_data
(
id integer primary key
,entry_date text not null
,api_call text not null
,raw_data text null
,software_version text null
);
DuckDB
The structure is similar to PostgreSQL but does not have a schema:
create table is not exists raw_json_data
(
id integer primary key
,entry_date timestamp with time zone not null
,api_call text not null
,raw_data jsonb null
,software_version null
,primaty key (id)
);
OpenWeather API
Go to https://openweathermap.org/api though this program currently only supports the One Call API. The program will eventually support other APIs.
Development
The recommended way is to use uv:
$ git clone git@github.com:cetyler/openweather_report.git
$ uv venv --python 3.13
Using Python 3.13
Creating virtualenv at: .venv
Activate with: source .venv/bin/activate
$ source .venv/bin/activate
$ uv sync --dev
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file openweather_report-0.3.1.tar.gz.
File metadata
- Download URL: openweather_report-0.3.1.tar.gz
- Upload date:
- Size: 45.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.5.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e29661eb2fab2e6c961b1deab41bd0a2c2334ee3b7ec2bc9abab23942cd652ad
|
|
| MD5 |
67008c98fc09c5d1f051cb04d62b33c8
|
|
| BLAKE2b-256 |
81c74e2983f83ac3c169312692c3c2d33dab90f2480d49ab62ea472d106212b2
|
File details
Details for the file openweather_report-0.3.1-py3-none-any.whl.
File metadata
- Download URL: openweather_report-0.3.1-py3-none-any.whl
- Upload date:
- Size: 9.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.5.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87d4971858ed7973899a7cc4b3f3fb5a15769adafb66b974e33c3fab90e57423
|
|
| MD5 |
f306bf2a5039eef1c07a17af461d4f63
|
|
| BLAKE2b-256 |
af6e77b6b403bd163e308cebb623d0ba86906145d879d0ec1a26ac1e35d584cf
|