mangru 0.0.1__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.
- mangru-0.0.1/.idea/.gitignore +10 -0
- mangru-0.0.1/.idea/workspace.xml +9 -0
- mangru-0.0.1/LICENSE +21 -0
- mangru-0.0.1/PKG-INFO +46 -0
- mangru-0.0.1/README.md +19 -0
- mangru-0.0.1/pyproject.toml +38 -0
- mangru-0.0.1/src/mangru/__init__.py +8 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectViewState">
|
|
4
|
+
<option name="hideEmptyMiddlePackages" value="true" />
|
|
5
|
+
<option name="showExcludedFiles" value="false" />
|
|
6
|
+
<option name="showLibraryContents" value="true" />
|
|
7
|
+
</component>
|
|
8
|
+
<component name="PropertiesComponent">{}</component>
|
|
9
|
+
</project>
|
mangru-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Sae-won Rami Chang
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
mangru-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mangru
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Python client for the Mangru sensor data API — a planetary network of public environmental sensors.
|
|
5
|
+
Project-URL: Homepage, https://mangru.live
|
|
6
|
+
Project-URL: Documentation, https://docs.mangru.live
|
|
7
|
+
Project-URL: Repository, https://github.com/saewon-rami-chang/mangru-python
|
|
8
|
+
Project-URL: Issues, https://github.com/saewon-rami-chang/mangru-python/issues
|
|
9
|
+
Author-email: Sae-won Rami Chang <changrami@gmail.com>
|
|
10
|
+
License-Expression: MIT
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Keywords: air-quality,api-client,environmental-data,research,sensors,weather
|
|
13
|
+
Classifier: Development Status :: 1 - Planning
|
|
14
|
+
Classifier: Intended Audience :: Science/Research
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Operating System :: OS Independent
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
|
|
23
|
+
Classifier: Topic :: Scientific/Engineering :: GIS
|
|
24
|
+
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
25
|
+
Requires-Python: >=3.10
|
|
26
|
+
Description-Content-Type: text/markdown
|
|
27
|
+
|
|
28
|
+
# Mangru
|
|
29
|
+
|
|
30
|
+
Python client for the [Mangru](https://mangru.live) sensor data API.
|
|
31
|
+
|
|
32
|
+
Mangru aggregates live readings from public environmental sensor networks
|
|
33
|
+
worldwide — weather stations, air quality monitors, hydrology gauges,
|
|
34
|
+
ocean buoys, and more — and serves them through one unified API.
|
|
35
|
+
|
|
36
|
+
## Status
|
|
37
|
+
|
|
38
|
+
🚧 **This is a placeholder release.** The functional Python client is
|
|
39
|
+
under active development. The first usable release will ship as `0.1.0`.
|
|
40
|
+
|
|
41
|
+
The live API itself (the data) is operational at <https://mangru.live>.
|
|
42
|
+
For early API access, see <https://docs.mangru.live>.
|
|
43
|
+
|
|
44
|
+
## License
|
|
45
|
+
|
|
46
|
+
MIT
|
mangru-0.0.1/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Mangru
|
|
2
|
+
|
|
3
|
+
Python client for the [Mangru](https://mangru.live) sensor data API.
|
|
4
|
+
|
|
5
|
+
Mangru aggregates live readings from public environmental sensor networks
|
|
6
|
+
worldwide — weather stations, air quality monitors, hydrology gauges,
|
|
7
|
+
ocean buoys, and more — and serves them through one unified API.
|
|
8
|
+
|
|
9
|
+
## Status
|
|
10
|
+
|
|
11
|
+
🚧 **This is a placeholder release.** The functional Python client is
|
|
12
|
+
under active development. The first usable release will ship as `0.1.0`.
|
|
13
|
+
|
|
14
|
+
The live API itself (the data) is operational at <https://mangru.live>.
|
|
15
|
+
For early API access, see <https://docs.mangru.live>.
|
|
16
|
+
|
|
17
|
+
## License
|
|
18
|
+
|
|
19
|
+
MIT
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "mangru"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Python client for the Mangru sensor data API — a planetary network of public environmental sensors."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Sae-won Rami Chang", email = "changrami@gmail.com" },
|
|
14
|
+
]
|
|
15
|
+
keywords = ["sensors", "weather", "air-quality", "environmental-data", "research", "api-client"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 1 - Planning",
|
|
18
|
+
"Intended Audience :: Science/Research",
|
|
19
|
+
"License :: OSI Approved :: MIT License",
|
|
20
|
+
"Operating System :: OS Independent",
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"Programming Language :: Python :: 3.10",
|
|
23
|
+
"Programming Language :: Python :: 3.11",
|
|
24
|
+
"Programming Language :: Python :: 3.12",
|
|
25
|
+
"Programming Language :: Python :: 3.13",
|
|
26
|
+
"Topic :: Scientific/Engineering :: Atmospheric Science",
|
|
27
|
+
"Topic :: Scientific/Engineering :: GIS",
|
|
28
|
+
"Topic :: Scientific/Engineering :: Information Analysis",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[project.urls]
|
|
32
|
+
Homepage = "https://mangru.live"
|
|
33
|
+
Documentation = "https://docs.mangru.live"
|
|
34
|
+
Repository = "https://github.com/saewon-rami-chang/mangru-python"
|
|
35
|
+
Issues = "https://github.com/saewon-rami-chang/mangru-python/issues"
|
|
36
|
+
|
|
37
|
+
[tool.hatch.build.targets.wheel]
|
|
38
|
+
packages = ["src/mangru"]
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"""Mangru — Python client for the Mangru sensor data API.
|
|
2
|
+
|
|
3
|
+
This is a placeholder release that reserves the package name on PyPI.
|
|
4
|
+
The functional client is under active development.
|
|
5
|
+
|
|
6
|
+
See https://mangru.live for the live data and API documentation.
|
|
7
|
+
"""
|
|
8
|
+
__version__ = "0.0.1"
|