From 9a6321489d4775a6fa5585c904bfebce66df58cb Mon Sep 17 00:00:00 2001 From: Jack Sweeney Date: Wed, 24 Jun 2020 12:32:39 -0400 Subject: [PATCH] Starting to Make Readme --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..2db9745 --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ +# plane-notify +Python to Notify If a Selected Plane has taken off or landed + +Required PIP packages +OpenSky API https://github.com/openskynetwork/opensky-api +geopy https://github.com/geopy/geopy +colorama https://github.com/tartley/colorama + +##Install OpenSky API +```bash +apt install git +git clone https://github.com/openskynetwork/opensky-api.git +pip install -e ~/opensky-api/python +``` +##Install Colorama and geopy +```bash +pip install colorama +pip install geopy +``` +##Install Pushbullet and Tweepy optional output methods already implemented in code +```bash +pip install tweepy +pip install pip pushbullet.py +```