RDAP Explorer provides a basic frontend for querying, formatting and navigating RDAP information using:
- IPWhois by Philip Hane.
- pycountry by Christian Theune
- JSONFormatter by Mohsen Azimi.
- Python 3.x
- Pip3 + pipenv
pip3 install --user pipenv
cd /path/to/cloned/repo
export PIPENV_VENV_IN_PROJECT=1
pipenv install --three
cd rdap_explorer/settings
cp example.py custom.py
Open custom.py
in your preferred editor and add, at least, a SECRET_KEY
.
pipenv shell
export DJANGO_SETTINGS_FILE=rdap_explorer.settings.custom
python manage.py migrate
python manage.py createcachetable
python manage.py runserver
The application should now be available at http://127.0.0.1:8000/.