admin / Synapse-Cortex
publicSelf Hosted ITSM Tool with RBAC/Tenanting and MFA
Synapse-Cortex / Synapse-Cortexv2 / .venv / Lib / site-packages / dnspython-2.8.0.dist-info / METADATA
5680 B · main
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | Metadata-Version: 2.4 Name: dnspython Version: 2.8.0 Summary: DNS toolkit Project-URL: homepage, https://www.dnspython.org Project-URL: repository, https://github.com/rthalley/dnspython.git Project-URL: documentation, https://dnspython.readthedocs.io/en/stable/ Project-URL: issues, https://github.com/rthalley/dnspython/issues Author-email: Bob Halley <[email protected]> License: ISC License-File: LICENSE Classifier: Development Status :: 5 - Production/Stable Classifier: Intended Audience :: Developers Classifier: Intended Audience :: System Administrators Classifier: License :: OSI Approved :: ISC License (ISCL) Classifier: Operating System :: Microsoft :: Windows Classifier: Operating System :: POSIX Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: 3.12 Classifier: Programming Language :: Python :: 3.13 Classifier: Topic :: Internet :: Name Service (DNS) Classifier: Topic :: Software Development :: Libraries :: Python Modules Requires-Python: >=3.10 Provides-Extra: dev Requires-Dist: black>=25.1.0; extra == 'dev' Requires-Dist: coverage>=7.0; extra == 'dev' Requires-Dist: flake8>=7; extra == 'dev' Requires-Dist: hypercorn>=0.17.0; extra == 'dev' Requires-Dist: mypy>=1.17; extra == 'dev' Requires-Dist: pylint>=3; extra == 'dev' Requires-Dist: pytest-cov>=6.2.0; extra == 'dev' Requires-Dist: pytest>=8.4; extra == 'dev' Requires-Dist: quart-trio>=0.12.0; extra == 'dev' Requires-Dist: sphinx-rtd-theme>=3.0.0; extra == 'dev' Requires-Dist: sphinx>=8.2.0; extra == 'dev' Requires-Dist: twine>=6.1.0; extra == 'dev' Requires-Dist: wheel>=0.45.0; extra == 'dev' Provides-Extra: dnssec Requires-Dist: cryptography>=45; extra == 'dnssec' Provides-Extra: doh Requires-Dist: h2>=4.2.0; extra == 'doh' Requires-Dist: httpcore>=1.0.0; extra == 'doh' Requires-Dist: httpx>=0.28.0; extra == 'doh' Provides-Extra: doq Requires-Dist: aioquic>=1.2.0; extra == 'doq' Provides-Extra: idna Requires-Dist: idna>=3.10; extra == 'idna' Provides-Extra: trio Requires-Dist: trio>=0.30; extra == 'trio' Provides-Extra: wmi Requires-Dist: wmi>=1.5.1; (platform_system == 'Windows') and extra == 'wmi' Description-Content-Type: text/markdown # dnspython [](https://github.com/rthalley/dnspython/actions/) [](https://dnspython.readthedocs.io/en/latest/?badge=latest) [](https://badge.fury.io/py/dnspython) [](https://opensource.org/licenses/ISC) [](https://github.com/psf/black) ## INTRODUCTION `dnspython` is a DNS toolkit for Python. It supports almost all record types. It can be used for queries, zone transfers, and dynamic updates. It supports TSIG-authenticated messages and EDNS0. `dnspython` provides both high- and low-level access to DNS. The high-level classes perform queries for data of a given name, type, and class, and return an answer set. The low-level classes allow direct manipulation of DNS zones, messages, names, and records. To see a few of the ways `dnspython` can be used, look in the `examples/` directory. `dnspython` is a utility to work with DNS, `/etc/hosts` is thus not used. For simple forward DNS lookups, it's better to use `socket.getaddrinfo()` or `socket.gethostbyname()`. `dnspython` originated at Nominum where it was developed to facilitate the testing of DNS software. ## ABOUT THIS RELEASE This is of `dnspython` 2.8.0. Please read [What's New](https://dnspython.readthedocs.io/en/stable/whatsnew.html) for information about the changes in this release. ## INSTALLATION * Many distributions have dnspython packaged for you, so you should check there first. * To use a wheel downloaded from PyPi, run: ``` pip install dnspython ``` * To install from the source code, go into the top-level of the source code and run: ``` pip install --upgrade pip build python -m build pip install dist/*.whl ``` * To install the latest from the main branch, run `pip install git+https://github.com/rthalley/dnspython.git` `dnspython`'s default installation does not depend on any modules other than those in the Python standard library. To use some features, additional modules must be installed. For convenience, `pip` options are defined for the requirements. If you want to use DNS-over-HTTPS, run `pip install dnspython[doh]`. If you want to use DNSSEC functionality, run `pip install dnspython[dnssec]`. If you want to use internationalized domain names (IDNA) functionality, you must run `pip install dnspython[idna]` If you want to use the Trio asynchronous I/O package, run `pip install dnspython[trio]`. If you want to use WMI on Windows to determine the active DNS settings instead of the default registry scanning method, run `pip install dnspython[wmi]`. If you want to try the experimental DNS-over-QUIC code, run `pip install dnspython[doq]`. Note that you can install any combination of the above, e.g.: `pip install dnspython[doh,dnssec,idna]` ### Notices Python 2.x support ended with the release of 1.16.0. `dnspython` supports Python 3.10 and later. Future support is aligned with the lifetime of the Python 3 versions. Documentation has moved to [dnspython.readthedocs.io](https://dnspython.readthedocs.io). |