Stormwater Monitoring Datasheet Extraction¶
Includes typical CLI and library setup. For now, just the template with example structure.
See also the GitHub repository: https://github.com/crickets-and-comb/stormwater_monitoring_datasheet_extraction
This is a Crickets and Comb resource.
Contents¶
Installation¶
To install the package, run:
pip install stormwater_monitoring_datasheet_extraction
See https://pypi.org/project/stormwater-monitoring-datasheet-extraction/.
Library¶
Avoid calling library functions directly and stick to the public API:
from stormwater_monitoring_datasheet_extraction import wait_a_second
wait_a_second()
If you’re a power user, you can use the internal API:
from stormwater_monitoring_datasheet_extraction.api.internal import wait_a_second
wait_a_second()
Nothing is stopping you from importing from lib directly, but you should avoid it unless you’re developing:
from stormwater_monitoring_datasheet_extraction.lib.example import wait_a_second
wait_a_second()
CLI¶
When this package is installed, it comes with CLI tools. See CLI for more information.