A PoC to display DNS LOC records on a map. It uses fastapi to serve a minimal api which responds to domains. A static map file is served from the root from where domains can be entered
Give it a spin, try SW1A2AA.find.me.uk
for example
Some more information on the LOC record
https://en.wikipedia.org/wiki/LOC_record
https://www.rfc-editor.org/rfc/rfc1876.html
Create a new virtualenv
python -m venv venv
Load the virtualenv and pull in the requirements
# Linux
source venv/bin/activate
# Windows
.\venv\Scripts\activate
pip install -r requirements.txt
Run the app with uvicorn
uvicorn main:app --reload