/rdap-explorer

Basic web app for querying, formatting and navigating RDAP information.

Primary LanguagePythonMIT LicenseMIT

RDAP Explorer

Code style: black

RDAP Explorer provides a basic frontend for querying, formatting and navigating RDAP information using:

Installation

Prerequisites

  • Python 3.x
  • Pip3 + pipenv

Initiate environment

pip3 install --user pipenv
cd /path/to/cloned/repo
export PIPENV_VENV_IN_PROJECT=1
pipenv install --three

Configure

cd rdap_explorer/settings
cp example.py custom.py

Open custom.py in your preferred editor and add, at least, a SECRET_KEY.

Run standalone

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/.