NWWS Client
This is client for NWWS (National Weather Wire Service).
How to use
Installation
git clone git@git.assignitapp.com:weathermap/nwws-client.git
cd nwws-client
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
Configuration
In order to use this software, you will need to a NWWS credentials. See the NWWS website for more information on how to get credentials for the NWWS.
You will need to set the following environment variables:
-
NWWS_USERNAME
- Your NWWS username -
NWWS_PASSWORD
- Your NWWS password -
NWWS_NICK
- The nickname that is used to connect to the NWWS Room. -
DB_CONNECTION_STRING
- The connection string for the Postgres database. See Psycopg2 Docs for more information on how to set the connection string.-
REDIS_CONNECTION_STRING
- The URL for the Redis database. See Redis Docs for more information on how to set the connection string.
-
Running the client
./nwws-client.py
You can change the debug level by setting the -l
flag. The default is INFO
.
LICENSE
This project is licensed under the MIT License. See the LICENSE.md file for details. This project is based on previous work by jbuitt. This project also based on MUC.py example from the slixmpp library, which is used by this project.