Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created October 16, 2020 01:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/2eb2c58f4b1066ea76397485701b501b to your computer and use it in GitHub Desktop.
Save r-ryantm/2eb2c58f4b1066ea76397485701b501b to your computer and use it in GitHub Desktop.
/nix/store/7rvshzq7dkwr8l182rrbihizjbs5f5kw-python3.7-pyowm-3.1.1
├── lib
│   └── python3.7
│   └── site-packages
│   ├── pyowm
│   │   ├── agroapi10
│   │   │   ├── agro_manager.py
│   │   │   ├── enums.py
│   │   │   ├── imagery.py
│   │   │   ├── __init__.py
│   │   │   ├── polygon.py
│   │   │   ├── __pycache__
│   │   │   │   ├── agro_manager.cpython-37.pyc
│   │   │   │   ├── enums.cpython-37.pyc
│   │   │   │   ├── imagery.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── polygon.cpython-37.pyc
│   │   │   │   ├── search.cpython-37.pyc
│   │   │   │   ├── soil.cpython-37.pyc
│   │   │   │   └── uris.cpython-37.pyc
│   │   │   ├── search.py
│   │   │   ├── soil.py
│   │   │   └── uris.py
│   │   ├── airpollutionapi30
│   │   │   ├── airpollution_client.py
│   │   │   ├── airpollution_manager.py
│   │   │   ├── coindex.py
│   │   │   ├── __init__.py
│   │   │   ├── no2index.py
│   │   │   ├── ozone.py
│   │   │   ├── __pycache__
│   │   │   │   ├── airpollution_client.cpython-37.pyc
│   │   │   │   ├── airpollution_manager.cpython-37.pyc
│   │   │   │   ├── coindex.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── no2index.cpython-37.pyc
│   │   │   │   ├── ozone.cpython-37.pyc
│   │   │   │   ├── so2index.cpython-37.pyc
│   │   │   │   └── uris.cpython-37.pyc
│   │   │   ├── so2index.py
│   │   │   └── uris.py
│   │   ├── alertapi30
│   │   │   ├── alert_manager.py
│   │   │   ├── alert.py
│   │   │   ├── condition.py
│   │   │   ├── enums.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── alert.cpython-37.pyc
│   │   │   │   ├── alert_manager.cpython-37.pyc
│   │   │   │   ├── condition.cpython-37.pyc
│   │   │   │   ├── enums.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── trigger.cpython-37.pyc
│   │   │   │   └── uris.cpython-37.pyc
│   │   │   ├── trigger.py
│   │   │   └── uris.py
│   │   ├── commons
│   │   │   ├── cityidregistry.py
│   │   │   ├── cityids
│   │   │   │   ├── 097-102.txt.bz2
│   │   │   │   ├── 103-108.txt.bz2
│   │   │   │   ├── 109-114.txt.bz2
│   │   │   │   ├── 115-122.txt.bz2
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── databoxes.py
│   │   │   ├── enums.py
│   │   │   ├── exceptions.py
│   │   │   ├── http_client.py
│   │   │   ├── image.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── cityidregistry.cpython-37.pyc
│   │   │   │   ├── databoxes.cpython-37.pyc
│   │   │   │   ├── enums.cpython-37.pyc
│   │   │   │   ├── exceptions.cpython-37.pyc
│   │   │   │   ├── http_client.cpython-37.pyc
│   │   │   │   ├── image.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── tile.cpython-37.pyc
│   │   │   └── tile.py
│   │   ├── config.py
│   │   ├── constants.py
│   │   ├── __init__.py
│   │   ├── owm.py
│   │   ├── __pycache__
│   │   │   ├── config.cpython-37.pyc
│   │   │   ├── constants.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── owm.cpython-37.pyc
│   │   │   └── __version__.cpython-37.pyc
│   │   ├── stationsapi30
│   │   │   ├── buffer.py
│   │   │   ├── __init__.py
│   │   │   ├── measurement.py
│   │   │   ├── persistence_backend.py
│   │   │   ├── __pycache__
│   │   │   │   ├── buffer.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── measurement.cpython-37.pyc
│   │   │   │   ├── persistence_backend.cpython-37.pyc
│   │   │   │   ├── station.cpython-37.pyc
│   │   │   │   ├── stations_manager.cpython-37.pyc
│   │   │   │   └── uris.cpython-37.pyc
│   │   │   ├── station.py
│   │   │   ├── stations_manager.py
│   │   │   └── uris.py
│   │   ├── tiles
│   │   │   ├── enums.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── enums.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── tile_manager.cpython-37.pyc
│   │   │   │   └── uris.cpython-37.pyc
│   │   │   ├── tile_manager.py
│   │   │   └── uris.py
│   │   ├── utils
│   │   │   ├── config.py
│   │   │   ├── decorators.py
│   │   │   ├── formatting.py
│   │   │   ├── geo.py
│   │   │   ├── __init__.py
│   │   │   ├── measurables.py
│   │   │   ├── __pycache__
│   │   │   │   ├── config.cpython-37.pyc
│   │   │   │   ├── decorators.cpython-37.pyc
│   │   │   │   ├── formatting.cpython-37.pyc
│   │   │   │   ├── geo.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── measurables.cpython-37.pyc
│   │   │   │   ├── strings.cpython-37.pyc
│   │   │   │   ├── timestamps.cpython-37.pyc
│   │   │   │   └── weather.cpython-37.pyc
│   │   │   ├── strings.py
│   │   │   ├── timestamps.py
│   │   │   └── weather.py
│   │   ├── uvindexapi30
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── uris.cpython-37.pyc
│   │   │   │   ├── uv_client.cpython-37.pyc
│   │   │   │   ├── uvindex.cpython-37.pyc
│   │   │   │   └── uvindex_manager.cpython-37.pyc
│   │   │   ├── uris.py
│   │   │   ├── uv_client.py
│   │   │   ├── uvindex_manager.py
│   │   │   └── uvindex.py
│   │   ├── __version__.py
│   │   └── weatherapi25
│   │   ├── forecaster.py
│   │   ├── forecast.py
│   │   ├── historian.py
│   │   ├── __init__.py
│   │   ├── location.py
│   │   ├── observation.py
│   │   ├── one_call.py
│   │   ├── __pycache__
│   │   │   ├── forecast.cpython-37.pyc
│   │   │   ├── forecaster.cpython-37.pyc
│   │   │   ├── historian.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── location.cpython-37.pyc
│   │   │   ├── observation.cpython-37.pyc
│   │   │   ├── one_call.cpython-37.pyc
│   │   │   ├── stationhistory.cpython-37.pyc
│   │   │   ├── uris.cpython-37.pyc
│   │   │   ├── weathercoderegistry.cpython-37.pyc
│   │   │   ├── weather.cpython-37.pyc
│   │   │   └── weather_manager.cpython-37.pyc
│   │   ├── stationhistory.py
│   │   ├── uris.py
│   │   ├── weathercoderegistry.py
│   │   ├── weather_manager.py
│   │   └── weather.py
│   └── pyowm-3.1.1.dist-info
│   ├── direct_url.json
│   ├── INSTALLER
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
27 directories, 159 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment