Go to file
2024-06-02 19:50:01 +03:00
app TEMP 2024-06-02 00:12:19 +03:00
.gitignore TEMP: Working data pipeline & rendering 2024-06-01 16:15:31 +03:00
LICENSE Initial commit 2024-05-26 13:08:54 +03:00
Pipfile TEMP: Rewrite everything on top of FastAPI 2024-05-31 23:14:15 +03:00
Pipfile.lock TEMP: Rewrite everything on top of FastAPI 2024-05-31 23:14:15 +03:00
README.md Added curl example to README. 2024-06-02 19:50:01 +03:00

Traceroute Internet Mapper - TIM

Development

# Install all dependencies. `pipenv` was used previously:
pipenv --python 3.11
pipenv install
pipenv shell

# Start dev server
fastapi dev app/main.py

# Start posting data to the tracing endpoint:
traceroute git.rauhala.info -q1 | http POST localhost:8000/trace/MYHOSTNAME
or, with curl:
traceroute tuoppi.dy.fi -q1 | curl -X POST http://localhost:8000/trace/MYHOSTNAME --data-binary @-

URLs of interest