dns-benchmark-tool 0.1.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,23 @@
1
+ # 📜 LICENSE (MIT)
2
+
3
+ MIT License
4
+
5
+ Copyright (c) 2025 Joseph Oseh Frank
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in
15
+ all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ THE SOFTWARE.
@@ -0,0 +1,6 @@
1
+ include README-pypi.md LICENSE
2
+ recursive-include src/dns_benchmark *.py
3
+ recursive-include docs/screenshots *.png
4
+ exclude sample_data/*
5
+ exclude data/*
6
+ exclude tests/*
@@ -0,0 +1,96 @@
1
+ Metadata-Version: 2.4
2
+ Name: dns-benchmark-tool
3
+ Version: 0.1.3
4
+ Summary: Benchmark DNS resolvers across domains and record types with analytics and reports (CSV, Excel, PDF, JSON).
5
+ Author-email: Joseph Oseh Frank <frank@osehfrank.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/frankovo/dns-benchmark-tool
8
+ Project-URL: Documentation, https://github.com/frankovo/dns-benchmark-tool#readme
9
+ Project-URL: Source, https://github.com/frankovo/dns-benchmark-tool
10
+ Project-URL: Tracker, https://github.com/frankovo/dns-benchmark-tool/issues
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Intended Audience :: System Administrators
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Topic :: Internet :: Name Service (DNS)
15
+ Classifier: Topic :: System :: Networking
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.8
19
+ Classifier: Programming Language :: Python :: 3.9
20
+ Classifier: Programming Language :: Python :: 3.10
21
+ Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
23
+ Requires-Python: >=3.8
24
+ Description-Content-Type: text/markdown
25
+ License-File: LICENSE
26
+ Requires-Dist: dnspython<3.0,>=2.7
27
+ Requires-Dist: pandas<3.0,>=2.0
28
+ Requires-Dist: aiohttp<4.0,>=3.8
29
+ Requires-Dist: click<9.0,>=8.0
30
+ Requires-Dist: pyfiglet<2.0,>=1.0
31
+ Requires-Dist: colorama<1.0,>=0.4
32
+ Requires-Dist: Jinja2<4.0,>=3.1
33
+ Requires-Dist: weasyprint<67.0,>=66.0
34
+ Requires-Dist: openpyxl<4.0,>=3.1
35
+ Requires-Dist: pyyaml<7.0,>=6.0
36
+ Requires-Dist: tqdm<5.0,>=4.66
37
+ Requires-Dist: matplotlib<4.0,>=3.8
38
+ Provides-Extra: dev
39
+ Requires-Dist: mypy<2.0,>=1.8; extra == "dev"
40
+ Requires-Dist: black<25.0,>=24.0; extra == "dev"
41
+ Requires-Dist: flake8<8.0,>=7.0; extra == "dev"
42
+ Requires-Dist: autopep8<3.0,>=2.0; extra == "dev"
43
+ Requires-Dist: pytest<9.0,>=8.0; extra == "dev"
44
+ Requires-Dist: coverage<8.0,>=7.6; extra == "dev"
45
+ Requires-Dist: isort<6.0,>=5.12; extra == "dev"
46
+ Requires-Dist: pytest-asyncio<2.0,>=0.23; extra == "dev"
47
+ Dynamic: license-file
48
+
49
+ # DNS Benchmark Tool
50
+
51
+ [![CI Tests](https://github.com/frankovo/dns-benchmark-tool/actions/workflows/test.yml/badge.svg)](https://github.com/frankovo/dns-benchmark-tool/actions/workflows/test.yml)
52
+ [![Publish to TestPyPI](https://github.com/frankovo/dns-benchmark-tool/actions/workflows/testpypi.yml/badge.svg)](https://github.com/frankovo/dns-benchmark-tool/actions/workflows/testpypi.yml)
53
+ [![Publish to PyPI](https://github.com/frankovo/dns-benchmark-tool/actions/workflows/pypi.yml/badge.svg)](https://github.com/frankovo/dns-benchmark-tool/actions/workflows/pypi.yml)
54
+ [![PyPI version](https://img.shields.io/pypi/v/dns-benchmark-tool.svg)](https://pypi.org/project/dns-benchmark-tool/)
55
+
56
+ ![Python Version](https://img.shields.io/badge/python-3.8%2B-blue.svg)
57
+ ![License](https://img.shields.io/badge/license-MIT-green.svg)
58
+
59
+ Benchmark DNS resolvers across domains and record types.
60
+ Generates analytics and exports to CSV, Excel, PDF, and JSON.
61
+
62
+ ## Installation
63
+
64
+ ```bash
65
+ pip install dns-benchmark-tool
66
+ ```
67
+
68
+ ## Quick usage
69
+
70
+ ```bash
71
+ # Benchmark with default resolvers and domains
72
+ dns-benchmark benchmark --use-defaults
73
+
74
+ # Custom resolvers and domains
75
+ dns-benchmark benchmark --resolvers data/resolvers.json --domains data/domains.txt
76
+ ```
77
+
78
+ ## Features
79
+
80
+ - Compare DNS resolver performance globally
81
+ - Export results to CSV, Excel, PDF, JSON
82
+ - Domain and record‑type statistics
83
+ - Error breakdowns
84
+ - Automation support (cron jobs, CI/CD)
85
+
86
+ ## Documentation
87
+
88
+ Full usage guide, advanced examples, and screenshots are available on [GitHub](https://github.com/frankovo/dns-benchmark-tool).
89
+
90
+ ---
91
+
92
+ ## License
93
+
94
+ This project is licensed under the MIT License — see the [LICENSE](LICENSE) file for details.
95
+
96
+ ---
@@ -0,0 +1,48 @@
1
+ # DNS Benchmark Tool
2
+
3
+ [![CI Tests](https://github.com/frankovo/dns-benchmark-tool/actions/workflows/test.yml/badge.svg)](https://github.com/frankovo/dns-benchmark-tool/actions/workflows/test.yml)
4
+ [![Publish to TestPyPI](https://github.com/frankovo/dns-benchmark-tool/actions/workflows/testpypi.yml/badge.svg)](https://github.com/frankovo/dns-benchmark-tool/actions/workflows/testpypi.yml)
5
+ [![Publish to PyPI](https://github.com/frankovo/dns-benchmark-tool/actions/workflows/pypi.yml/badge.svg)](https://github.com/frankovo/dns-benchmark-tool/actions/workflows/pypi.yml)
6
+ [![PyPI version](https://img.shields.io/pypi/v/dns-benchmark-tool.svg)](https://pypi.org/project/dns-benchmark-tool/)
7
+
8
+ ![Python Version](https://img.shields.io/badge/python-3.8%2B-blue.svg)
9
+ ![License](https://img.shields.io/badge/license-MIT-green.svg)
10
+
11
+ Benchmark DNS resolvers across domains and record types.
12
+ Generates analytics and exports to CSV, Excel, PDF, and JSON.
13
+
14
+ ## Installation
15
+
16
+ ```bash
17
+ pip install dns-benchmark-tool
18
+ ```
19
+
20
+ ## Quick usage
21
+
22
+ ```bash
23
+ # Benchmark with default resolvers and domains
24
+ dns-benchmark benchmark --use-defaults
25
+
26
+ # Custom resolvers and domains
27
+ dns-benchmark benchmark --resolvers data/resolvers.json --domains data/domains.txt
28
+ ```
29
+
30
+ ## Features
31
+
32
+ - Compare DNS resolver performance globally
33
+ - Export results to CSV, Excel, PDF, JSON
34
+ - Domain and record‑type statistics
35
+ - Error breakdowns
36
+ - Automation support (cron jobs, CI/CD)
37
+
38
+ ## Documentation
39
+
40
+ Full usage guide, advanced examples, and screenshots are available on [GitHub](https://github.com/frankovo/dns-benchmark-tool).
41
+
42
+ ---
43
+
44
+ ## License
45
+
46
+ This project is licensed under the MIT License — see the [LICENSE](LICENSE) file for details.
47
+
48
+ ---