powerdns-auth-proxy
Authenticating proxy for PowerDNS's HTTP API
File Explorer
- test.yml
- __init__.py
- test_proxy.py
- __init__.py
- proxy.py
- .flake8
- .gitignore
- .isort.cfg
- LICENSE
- proxy.ini
- README.md
- requirements-dev.txt
- setup.py
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
pytest
View Details ▼
pytest
Run Python tests.
pytest {{path/to/test_file1.py path/to/test_file2.py ...}}
Run tests from specific files:
pytest -k {{expression}}
Run tests with names matching a specific [k]eyword expression:
pytest {{[-x|--exitfirst]}}
Exit as soon as a test fails or encounters an error:
supervisord
View Details ▼
supervisord
Client/server system for controlling some processes on UNIX-like operating systems.
Supervisord is the server part of supervisor; it is primarily managed via a configuration file.
supervisord {{[-c|--configuration]}} {{path/to/file}}
Start `supervisord` with specified configuration file:
supervisord {{[-n|--nodaemon]}}
Run supervisord in the foreground:
