8 lines
270 B
Markdown
8 lines
270 B
Markdown
python -m venv venv
|
|
source venv/bin/activate
|
|
pip install -r requirements.txt
|
|
python save_iana_domains.py
|
|
|
|
# This will create a data/ directory with:
|
|
# - Individual JSON files for each domain (e.g., data/com.json)
|
|
# - Summary file with all domains (data/all_domains.json) |