DNS Zone Test Documentation

Similar documents
Python Project Example Documentation

Roman Numeral Converter Documentation

I2C LCD Documentation

chatterbot-weather Documentation

sainsmart Documentation

Python wrapper for Viscosity.app Documentation

TPS Documentation. Release Thomas Roten

Python simple arp table reader Documentation

Aircrack-ng python bindings Documentation

PyCRC Documentation. Release 1.0

Release Nicholas A. Del Grosso

Simple libtorrent streaming module Documentation

Poulpe Documentation. Release Edouard Klein

google-search Documentation

Redis Timeseries Documentation

django-reinhardt Documentation

django-idioticon Documentation

Release Fulfil.IO Inc.

Google Domain Shared Contacts Client Documentation

Game Server Manager Documentation

Python State Machine Documentation

Pykemon Documentation

Python Schema Generator Documentation

Simple Binary Search Tree Documentation

Django Wordpress API Documentation

django-cas Documentation

smartfilesorter Documentation

Frontier Documentation

doconv Documentation Release Jacob Mourelos

OpenUpgrade Library Documentation

gunny Documentation Release David Blewett

withenv Documentation

Python AutoTask Web Services Documentation

Mantis STIX Importer Documentation

django CMS Export Objects Documentation

Release Ralph Offinger

Poetaster. Release 0.1.1

pydrill Documentation

dj-libcloud Documentation

Python State Machine Documentation

Python AMT Tools Documentation

open-helpdesk Documentation

django-users2 Documentation

gpib-ctypes Documentation

eventbrite-sdk-python Documentation

Aldryn Installer Documentation

pyldavis Documentation

AnyDo API Python Documentation

yardstick Documentation

PyCon APAC 2014 Documentation

Python data pipelines similar to R Documentation

e24paymentpipe Documentation

django-telegram-bot Documentation

django-responsive2 Documentation

syslog-ng Apache Kafka destination

API Wrapper Documentation

smsghussd Documentation

Job Submitter Documentation

cwmon-mysql Release 0.5.0

dicompyler-core Documentation

django-private-chat Documentation

PyZillow Documentation

Python Finite State Machine. Release 0.1.5

ejpiaj Documentation Release Marek Wywiał

xmljson Documentation

lazy-object-proxy Release 1.3.1

pvl Documentation Release William Trevor Olson

dublincore Documentation

CID Documentation. Release Francis Reyes

Connexion Sqlalchemy Utils Documentation

Infoblox Client Documentation

django-composite-foreignkey Documentation

ProxySQL Tools Documentation

django-stored-messages Documentation

nacelle Documentation

pytest-benchmark Release 2.5.0

django-composite-foreignkey Documentation

Airoscript-ng Documentation

Dragon Mapper Documentation

xmodels Documentation

Archan. Release 2.0.1

invenio-groups Documentation

Durga Documentation. Release dev2. transcode

Gearthonic Documentation

OTX to MISP. Release 1.4.2

django-bootstrap3 Documentation

Release Manu Phatak

Microlab Instruments Documentation

invenio-formatter Documentation

Face Recognition Documentation

MT940 Documentation. Release Rick van Hattem (wolph)

otree Virtual Machine Manager Documentation

Regressors Documentation

redis-lock Release 3.2.0

mlpy Documentation Release Astrid Jackson

django mail admin Documentation

diceware Documentation

timegate Documentation

Python Project Documentation

MyAnimeList Scraper. Release 0.3.0

Transcription:

DNS Zone Test Documentation Release 1.1.3 Maarten Diemel Dec 02, 2017

Contents 1 DNS Zone Test 3 1.1 Features.................................................. 3 1.2 Credits.................................................. 3 2 Installation 5 2.1 Virtualenv................................................ 5 3 Usage 7 4 Contributing 9 4.1 Types of Contributions.......................................... 9 4.2 Get Started!................................................ 10 4.3 Pull Request Guidelines......................................... 11 4.4 Tips.................................................... 11 5 Credits 13 5.1 Development Lead............................................ 13 5.2 Contributors............................................... 13 6 History 15 6.1 1.1.3 (2017-08-11)............................................ 15 6.2 1.1.2 (2017-08-11)............................................ 15 6.3 1.1.1 (2017-01-31)............................................ 15 6.4 1.1.0 (2017-01-31)............................................ 15 6.5 1.0.7 (2017-01-16)............................................ 15 6.6 1.0.6 (2016-10-14)............................................ 16 6.7 1.0.5 (2016-09-01)............................................ 16 6.8 1.0.4 (2016-08-28)............................................ 16 6.9 1.0.3 (2016-08-28)............................................ 16 6.10 1.0.2 (2016-08-28)............................................ 16 6.11 1.0.1 (2016-08-28)............................................ 16 6.12 1.0.0 (2016-08-21)............................................ 16 6.13 0.3.7 (2016-08-19)............................................ 16 6.14 0.3.6 (2016-08-13)............................................ 17 6.15 0.3.5 (2016-08-13)............................................ 17 6.16 0.3.4 (2016-06-11)............................................ 17 6.17 0.3.3 (2016-06-11)............................................ 17 i

6.18 0.3.2 (2016-05-12)............................................ 17 6.19 0.3.1 (2016-05-12)............................................ 17 6.20 0.3.0 (2016-05-11)............................................ 17 6.21 0.2.3 (2016-02-06)............................................ 17 6.22 0.2.2 (2016-01-21)............................................ 18 7 Indices and tables 19 ii

Contents: Contents 1

2 Contents

CHAPTER 1 DNS Zone Test Dns Zone Test tests a DNS zone file agaist a given name server. Free software: ISC license Documentation: https://dnszonetest.readthedocs.io GitHub: https://github.com/maartenq/dnszonetest PyPi: https://pypi.python.org/pypi/dnszonetest Travis CI: https://travis-ci.org/maartenq/dnszonetest Codecov: https://codecov.io/github/maartenq/dnszonetest 1.1 Features Test all resources in a given zonefile to given nameserver. 1.2 Credits This package was created with Cookiecutter and the maartenq/cookiecutter-pypackage project template. 3

4 Chapter 1. DNS Zone Test

CHAPTER 2 Installation 2.1 Virtualenv Make virtual environment: $ virtualenv /<path>/<to>/<virtualenv_name> Activate virtual environment: $ source /<path>/<to>/<virtualenv_name>/bin/activate Install dnszonetest: (<virtualenv_name>)$ pip install dnszonetest 5

6 Chapter 2. Installation

CHAPTER 3 Usage see dnszonetest -h: usage: dnszonetest [-h] [-d NAMESERVER] [-v] [-q] [-r] [-t] [-n] [-s] zonename zonefile DNS Zone Test positional arguments: zonename zonefile zone name zone file optional arguments: -h, --help show this help message and exit -d NAMESERVER, --nameserver NAMESERVER DNS server to query. -v, --verbose Show verbose info (level DEBUG). -q, --quiet No output. -r, --norec Set No Recursion flag. -t, --ttl Compare TTL values. -n, --ns Compare NS records. -s, --soa Compare SOA records. 7

8 Chapter 3. Usage

CHAPTER 4 Contributing Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given. You can contribute in many ways: 4.1 Types of Contributions 4.1.1 Report Bugs Report bugs at https://github.com/maartenq/dnszonetest/issues. If you are reporting a bug, please include: Your operating system name and version. Any details about your local setup that might be helpful in troubleshooting. Detailed steps to reproduce the bug. 4.1.2 Fix Bugs Look through the GitHub issues for bugs. Anything tagged with bug is open to whoever wants to implement it. 4.1.3 Implement Features Look through the GitHub issues for features. Anything tagged with feature is open to whoever wants to implement it. 9

4.1.4 Write Documentation DNS Zone Test could always use more documentation, whether as part of the official DNS Zone Test docs, in docstrings, or even on the web in blog posts, articles, and such. 4.1.5 Submit Feedback The best way to send feedback is to file an issue at https://github.com/maartenq/dnszonetest/issues. If you are proposing a feature: Explain in detail how it would work. Keep the scope as narrow as possible, to make it easier to implement. Remember that this is a volunteer-driven project, and that contributions are welcome :) 4.2 Get Started! Ready to contribute? Here s how to set up dnszonetest for local development. 1. Fork the dnszonetest repo on GitHub. 2. Clone your fork locally: $ git clone git@github.com:your_name_here/dnszonetest.git 3. Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development: $ mkvirtualenv dnszonetest $ cd dnszonetest/ $ python setup.py develop 4. Create a branch for local development: $ git checkout -b name-of-your-bugfix-or-feature Now you can make your changes locally. 5. When you re done making changes, check that your changes pass flake8 and the tests, including testing other Python versions with tox: $ flake8 dnszonetest tests $ python setup.py test $ tox To get flake8 and tox, just pip install them into your virtualenv. 6. Commit your changes and push your branch to GitHub: $ git add. $ git commit -m "Your detailed description of your changes." $ git push origin name-of-your-bugfix-or-feature 7. Submit a pull request through the GitHub website. 10 Chapter 4. Contributing

4.3 Pull Request Guidelines Before you submit a pull request, check that it meets these guidelines: 1. The pull request should include tests. 2. If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.rst. 3. The pull request should work for Python 2.6, 2.7, 3.3, 3.4 and 3.5, and for PyPy. Check https://travis-ci.org/ maartenq/dnszonetest/pull_requests and make sure that the tests pass for all supported Python versions. 4.4 Tips To run a subset of tests: $ python -m unittest tests.test_dnszonetest 4.3. Pull Request Guidelines 11

12 Chapter 4. Contributing

CHAPTER 5 Credits 5.1 Development Lead Maarten Diemel <maarten@maartendiemel.nl> 5.2 Contributors None yet. Why not be the first? 13

14 Chapter 5. Credits

CHAPTER 6 History 6.1 1.1.3 (2017-08-11) requirements update Removed Python2.6 testing 6.2 1.1.2 (2017-08-11) requirements update 6.3 1.1.1 (2017-01-31) Makefile update release to PyPi 6.4 1.1.0 (2017-01-31) Better output. Updated requirements. 6.5 1.0.7 (2017-01-16) Updated requirements. 15

6.6 1.0.6 (2016-10-14) Updated requirements. 6.7 1.0.5 (2016-09-01) Update requirements. 6.8 1.0.4 (2016-08-28) Removed Travis deploy to PyPi. 6.9 1.0.3 (2016-08-28) Bumped version to test Travis deploy to PyPi. 6.10 1.0.2 (2016-08-28) Removed dev requirements Update Travis key 6.11 1.0.1 (2016-08-28) Updated dependencies Travis key 6.12 1.0.0 (2016-08-21) PyPi deployment via Travic CI README.rst updates Package removed from requirments_dev.txt Remove pytest command from setup.py Made sure flake8 and docs will run with Py27 in tox (will fail inp26).gitignore + OS X and VIM file 6.13 0.3.7 (2016-08-19) requirements: Update pytest to 3.0.0 16 Chapter 6. History

6.14 0.3.6 (2016-08-13) requirements: Update dnspython to 1.14.0 6.15 0.3.5 (2016-08-13) ISC License Pinned requirements Travis/Tox fixes 6.16 0.3.4 (2016-06-11) Factored out pytest-runner. Removes setuptools_scm dependency which breaks RPM build on RHEL6. Added recursive remove on *.egg in Makefile. 6.17 0.3.3 (2016-06-11) Add log to file option. 6.18 0.3.2 (2016-05-12) Added argparse as requirement for Python 2.6. 6.19 0.3.1 (2016-05-12) Update installation docs. 6.20 0.3.0 (2016-05-11) First working version 6.21 0.2.3 (2016-02-06) Tests on cli Project stuff 6.14. 0.3.6 (2016-08-13) 17

6.22 0.2.2 (2016-01-21) First release on PyPI. 18 Chapter 6. History

CHAPTER 7 Indices and tables genindex modindex search 19