windborne 1.0.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- windborne/__init__.py +76 -0
- windborne/cli.py +544 -0
- windborne/config.py +42 -0
- windborne/data_api.py +784 -0
- windborne/forecasts_api.py +459 -0
- windborne/utils.py +940 -0
- windborne-1.0.0.dist-info/METADATA +25 -0
- windborne-1.0.0.dist-info/RECORD +11 -0
- windborne-1.0.0.dist-info/WHEEL +5 -0
- windborne-1.0.0.dist-info/entry_points.txt +2 -0
- windborne-1.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,25 @@
|
|
1
|
+
Metadata-Version: 2.2
|
2
|
+
Name: windborne
|
3
|
+
Version: 1.0.0
|
4
|
+
Summary: A Python library for interacting with WindBorne Data and Forecasts API
|
5
|
+
Author-email: WindBorne Systems <data@windbornesystems.com>
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
8
|
+
Requires-Python: >=3.6
|
9
|
+
Description-Content-Type: text/markdown
|
10
|
+
Requires-Dist: requests
|
11
|
+
Requires-Dist: boto3>=1.10.0
|
12
|
+
Requires-Dist: PyJWT
|
13
|
+
Requires-Dist: numpy
|
14
|
+
Requires-Dist: xarray
|
15
|
+
Requires-Dist: pandas
|
16
|
+
Requires-Dist: netCDF4
|
17
|
+
|
18
|
+
# WindBorne API
|
19
|
+
A Python library for interacting with the WindBorne API to fetch and process observations and forecasts data.
|
20
|
+
## - [Data API](https://windbornesystems.com/docs/api/pip_data)
|
21
|
+
## - [Forecasts API](https://windbornesystems.com/docs/api/pip_forecasts)
|
22
|
+
## - [Command Line Interface](https://windbornesystems.com/docs/api/cli)
|
23
|
+
|
24
|
+
## Further information and help request
|
25
|
+
If you encounter issues or have questions, please ask your WindBorne Systems contact.
|
@@ -0,0 +1,11 @@
|
|
1
|
+
windborne/__init__.py,sha256=Dv2RK6qcZa3YDrTo_W_N9YROKOQV1_HFa0OWnZSBKAc,1783
|
2
|
+
windborne/cli.py,sha256=ZNqeIlWqlKE4iCo8kptUH6Wbish0T8O7-Hljt-gEi9Q,31031
|
3
|
+
windborne/config.py,sha256=FYIBRiIuii5igAFQlOsHUa6u2i1kKnO1yZE7QfQJvUg,1688
|
4
|
+
windborne/data_api.py,sha256=qn0mY-mE7w2LSM1OWnjzCXS3jXrDjxoW1nn58fP2ptE,35496
|
5
|
+
windborne/forecasts_api.py,sha256=AYuhFRls_XvzuNB55NF0w3y-_ocYwPxmI6C1lIyFkgM,16865
|
6
|
+
windborne/utils.py,sha256=B6aW-pGJoom8IjahrCE5UgKujSIVsfh7bjPXn4lZoq0,37594
|
7
|
+
windborne-1.0.0.dist-info/METADATA,sha256=VMnmmro1HKrr8armxZm34EX9lbjDt4MunDSSJs77k3o,982
|
8
|
+
windborne-1.0.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
9
|
+
windborne-1.0.0.dist-info/entry_points.txt,sha256=j_YrqdCDrCd7p5MIwQ2BYwNXEi95VNANzLRJmcXEg1U,49
|
10
|
+
windborne-1.0.0.dist-info/top_level.txt,sha256=PE9Lauriu5S5REf7JKhXprufZ_V5RiZ_TnfnrLGJrmE,10
|
11
|
+
windborne-1.0.0.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
windborne
|