🧙🔧 Utils that can be reused and shared across and beyond the ESO Nowcast project
Project description
Nowcast Library
🧙♂️🔧 Utils that can be reused and shared across and beyond the ESO Nowcast project
This is a public repository hosted on GitHub via a push mirror setup in the internal ESO GitLab repository
Installation
Simply run
pip install nowcastlib
Usage and Documentation
Nowcast Library consists in a collection of functions organized in submodules (API) and a tool accessible via the command line (CLI).
Please refer to the examples folder on GitHub for usage examples.
API
Here is a quick example of how one may import nowcastlib and get access to one of the functions:
"""Example showing how to access compute_trig_fields function"""
import nowcastlib as ncl
import pandas as pd
import numpy as np
data_df = pd.DataFrame(
[[0, 3, 4, np.NaN], [32, 4, np.NaN, 4], [56, 8, 0, np.NaN]],
columns=["A", "B", "C"],
index=pd.date_range(start="1/1/2018", periods=4, freq="2min"),
)
result = ncl.rawdata.compute_trig_fields(data_df, ["A", "C"])
More in-depth API documentation can be found here.
CLI
Some of the library's functionality is bundled in configurable subcommands
accessible via the terminal with the command nowcastlib
:
usage: nowcastlib [-h] {triangulate,chunksync} ...
positional arguments:
{triangulate,chunksync}
available commands
triangulate Run `nowcastlib triangulate -h` for further help
chunksync Run `nowcastlib chunksync -h` for further help
optional arguments:
-h, --help show this help message and exit
Development Setup
This repository relies on Poetry for tracking dependencies, building and publishing. It is therefore recommended that developers install poetry and make use of it throughout their development of the project.
Dependencies
Make sure you are in the right Python environment and run
poetry install
This reads pyproject.toml, resolves the dependencies, and installs them.
Deployment
The repository is published to PyPi, so to make it
accessible via a pip install
command as mentioned earlier.
To publish changes follow these steps. Ideally this process is automated via a CI tool triggered by a push/merge to the master branch:
-
Optionally run
poetry version
with the appropriate argument based on semver guidelines. -
Update the documentation by running
make document
-
Prepare the package by running
poetry build
-
Ensure you have TestPyPi and PyPi configured as your poetry repositories:
poetry config repositories.testpypi https://test.pypi.org/legacy/ poetry config repositories.pypi https://pypi.org/
-
Publish the repository to TestPyPi, to see that everything works as expected:
poetry publish -r testpypi
-
Stage, commit and push your changes (to master) with git.
-
Publish the repository to PyPi:
poetry publish -r pypi
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
File details
Details for the file nowcastlib-2.4.0.tar.gz
.
File metadata
- Download URL: nowcastlib-2.4.0.tar.gz
- Upload date:
- Size: 25.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.6.9 Darwin/19.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2ca3672430f1a5827114924b04f79999606c6ebd0e66d92ba6611440074cc514 |
|
MD5 | 8ef4509c2fdb49f1f4cfac5ed68b31c1 |
|
BLAKE2b-256 | f0a982e2915ac2a9fb83c4f535e10897a172384279f4a82badb2aa0a7c57bc32 |
Provenance
File details
Details for the file nowcastlib-2.4.0-py3-none-any.whl
.
File metadata
- Download URL: nowcastlib-2.4.0-py3-none-any.whl
- Upload date:
- Size: 38.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.6.9 Darwin/19.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2bf2d05ef62fa4c4e460bae9a720e1a7c24599e7a467ba869c7c8af35c455d4 |
|
MD5 | 3a784e0a2fdaf3741b45812f125dd53b |
|
BLAKE2b-256 | 7545791eaf09d456c542b4cfd39fae16a887636ff8291dca1627ac50f94d891c |