Skip to content

Latest commit

 

History

History
65 lines (45 loc) · 2.02 KB

README.md

File metadata and controls

65 lines (45 loc) · 2.02 KB

made-with-python Code style: black License

Geolocation detector

A web app example to display geolocation based on flask and pandas.

Tools

Usage

Demo

Source code

git clone git@github.com:vyahello/geolocation-detector.git
python3 -m venv venv 
. venv/bin/activate
cd geolocation-detector
pip install -r requirements.txt
cd geo
python app.py

Then please open http://localhost:5000 in your browser.

⬆ back to top

Development notes

Meta

Author – Vladimir Yahello.

Distributed under the MIT license. See license for more information.

You can reach out me at:

Contributing

  1. Clone the repository
  2. Configure git for the first time after cloning with your name and email
  3. pip install -r requirements.txt to install all project dependencies
  4. pip install -r requirements-dev.txt to install all development project dependencies
  5. Create your feature branch (git checkout -b feature/fooBar)
  6. Commit your changes (git commit -am 'Add some fooBar')
  7. Push to the branch (git push origin feature/fooBar)
  8. Create a new Pull Request

What's next

All recent activities and ideas are described at project issues page. If you have ideas you want to change/implement please do not hesitate and create an issue.

⬆ back to top