diff --git a/README.rst b/README.rst index 7cbf14229..37d06e729 100644 --- a/README.rst +++ b/README.rst @@ -217,9 +217,11 @@ Acquisition of historical data for specific stations using ``wetterdienst`` as l >>> import pandas as pd >>> pd.set_option('max_columns', 8) - >>> from wetterdienst import Wetterdienst - >>> API = Wetterdienst("dwd", "observation") - >>> request = API( + >>> from wetterdienst.dwd.observation import DwdObservationRequest + # Alternatively, though without argument/type hinting + # >>> from wetterdienst import Wetterdienst + # >>> API = Wetterdienst("dwd", "observation") + >>> request = DwdObservationRequest( ... parameter=["climate_summary"], ... resolution="daily", ... start_date="1990-01-01", # if not given timezone defaulted to UTC @@ -390,7 +392,10 @@ Development Known Issues ************ -Under Mac ARM64 you need to install **pandas, numpy and scipy** as follows before continuing with the regular setup: +MAC ARM64 (M1) +============== + +You need to install **pandas, numpy and scipy** as follows before continuing with the regular setup: .. code-block:: bash @@ -410,6 +415,18 @@ Further additional libraries are affected and have to be installed in a similar Furthermore as h5py is currently bound to versions of numpy that conflict with the ARM64 ready libraries, h5py itself as well as wradlib are not available for users with that architecture! +LINUX ARM (Raspberry Pi) +======================== + +Running wetterdienst on Raspberry Pi, you need to install **numpy** +and **lxml** prior to installing wetterdienst running the following +lines: + +.. code-block:: bash + + sudo apt-get install libatlas-base-dev + sudo apt-get install python3-lxml + Important Links *************** diff --git a/wetterdienst/__init__.py b/wetterdienst/__init__.py index ac9d2588d..7ffe26e56 100644 --- a/wetterdienst/__init__.py +++ b/wetterdienst/__init__.py @@ -9,7 +9,7 @@ from wetterdienst.metadata.period import Period from wetterdienst.metadata.provider import Provider from wetterdienst.metadata.resolution import Resolution -from wetterdienst.provider import dwd # remove at some point +from wetterdienst.provider import dwd, eccc, eumetnet # Single-sourcing the package version # https://cjolowicz.github.io/posts/hypermodern-python-06-ci-cd/