Skip to main content
[![Build Status](https://travis-ci.org/hachibeeDI/namedparser.svg?branch=master)](https://travis-ci.org/hachibeeDI/namedparser) [![Coverage Status](https://coveralls.io/repos/hachibeeDI/namedparser/badge.svg?branch=master&service=github)](https://coveralls.io/github/hachibeeDI/namedparser?branch=master)

# namedparser

Read name-daemon configuration files like the bind

# Installation

```bash
$ pip install https://github.com/hachibeeDI/namedparser/archive/master.zip
```

# Example

```python
from namedparser import Parser

txt = '''
options {
directory "/var/na/named";
check-names master ignore;
check-names slave ignore;
check-names response ignore;
allow-recursion {
any;
};
allow-query {
any;
};
allow-query-cache {
any;
};
allow-transfer { 127.0.0.1; };
max-cache-ttl 3600000;
min-retry-time 50;
max-acache-size 4M;
max-cache-size 4M;
max-journal-size 100k;
version "";
};
'''

result = Parser.parse_string(txt)
options = result.search('options')
check_names = options[0].search('check-names')
assert check_names[0].target == 'master'
assert check_names[1].target == 'slave'
assert check_names[2].target == 'response'

directory = options[0].search('directory')[0]
assert directory.value == '/var/na/named'
assert str(directory) == 'directory "/var/na/named";'
```

You may get more information how to acceess some nodes in `named.conf`, if you read test code in `namedparser/testsuite/test_parser.py`.


# Support

You may run on

- 2.6
- 2.7
- 3.*

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

namedparser-0.0.3.tar.gz (7.7 kB view details)

Uploaded Source

File details

Details for the file namedparser-0.0.3.tar.gz.

File metadata

  • Download URL: namedparser-0.0.3.tar.gz
  • Upload date:
  • Size: 7.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for namedparser-0.0.3.tar.gz
Algorithm Hash digest
SHA256 aa76a45f719c4444e102132b9b7b9cc73343553f8869c8927ba57f33b5f50aa6
MD5 73261a84e8db73f286e6065d87149d44
BLAKE2b-256 76e3f96c47e30aab88d216b064d173323daa8aa385a2fc288a76bc7dd554770b

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.0.3 This release

1 file

0.0.2

1 file

0.0.1

1 file

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page