Update README.md

This commit is contained in:
Jack Sweeney 2020-06-24 12:50:56 -04:00 committed by GitHub
parent 19f102c20e
commit 6d2fac9f05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 9 deletions

View File

@ -1,24 +1,24 @@
# plane-notify # plane-notify
Python to Notify If a Selected Plane has taken off or landed Still WIP Should not use yet. Notify If a Selected Plane has taken off or landed using Python with OpenSky API, outputs location of takeoff location of landing and takeoff by revese lookup of cordinates.
Required PIP packages ## Required PIP packages
OpenSky API https://github.com/openskynetwork/opensky-api - OpenSky API https://github.com/openskynetwork/opensky-api
geopy https://github.com/geopy/geopy - geopy https://github.com/geopy/geopy
colorama https://github.com/tartley/colorama - colorama https://github.com/tartley/colorama
##Install OpenSky API ### Install OpenSky API
```bash ```bash
apt install git apt install git
git clone https://github.com/openskynetwork/opensky-api.git git clone https://github.com/openskynetwork/opensky-api.git
pip install -e ~/opensky-api/python pip install -e ~/opensky-api/python
``` ```
##Install Colorama and geopy ### Install Colorama and geopy
```bash ```bash
pip install colorama pip install colorama
pip install geopy pip install geopy
``` ```
##Install Pushbullet and Tweepy optional output methods already implemented in code ### Install Pushbullet and Tweepy optional output methods already implemented in code
```bash ```bash
pip install tweepy pip install tweepy
pip install pip pushbullet.py pip install pushbullet.py
``` ```