pyrad 2.5.0__py3-none-any.whl → 2.5.2__py3-none-any.whl

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.
Binary file
docs/source/conf.py CHANGED
@@ -57,16 +57,16 @@ author = u'Christian Giese <gic@gicnet.de>, Istvan Ruzman <istvan@ruzman.eu> and
57
57
  # built documents.
58
58
  #
59
59
  # The short X.Y version.
60
- version = u'2.5'
60
+ version = u'2.5.2'
61
61
  # The full version, including alpha/beta/rc tags.
62
- release = u'2.5'
62
+ release = u'2.5.2'
63
63
 
64
64
  # The language for content autogenerated by Sphinx. Refer to documentation
65
65
  # for a list of supported languages.
66
66
  #
67
67
  # This is also used if you do content translation via gettext catalogs.
68
68
  # Usually you set "language" from the command line for these cases.
69
- language = None
69
+ language = 'en'
70
70
 
71
71
  # List of patterns, relative to source directory, that match files and
72
72
  # directories to ignore when looking for source files.
@@ -84,13 +84,18 @@ todo_include_todos = True
84
84
  # The theme to use for HTML and HTML Help pages. See the documentation for
85
85
  # a list of builtin themes.
86
86
  #
87
- # html_theme = 'alabaster'
87
+ html_theme = 'sphinx_rtd_theme'
88
88
 
89
89
  # Theme options are theme-specific and customize the look and feel of a theme
90
90
  # further. For a list of options available for each theme, see the
91
91
  # documentation.
92
92
  #
93
- # html_theme_options = {}
93
+ html_theme_options = {
94
+ 'collapse_navigation': False,
95
+ 'sticky_navigation': True,
96
+ 'navigation_depth': 4,
97
+ 'style_external_links': False,
98
+ }
94
99
 
95
100
  # Add any paths that contain custom static files (such as style sheets) here,
96
101
  # relative to this directory. They are copied after the builtin static files,
docs/source/index.rst CHANGED
@@ -3,7 +3,7 @@
3
3
  :mod:`pyrad` -- RADIUS for Python
4
4
  *********************************
5
5
 
6
- :Author: Wichert Akkerman
6
+ :Author: Christian Giese (GIC-de), Istvan Ruzman (Istvan91) and Stefan Lieberth (slieberth)
7
7
  :Version: |version|
8
8
 
9
9
  Introduction
@@ -43,13 +43,42 @@ Here is an example of doing a authentication request::
43
43
  Requirements & Installation
44
44
  ===========================
45
45
 
46
- pyrad requires Python 3.6 or later
46
+ pyrad requires Python 3.8 or later
47
47
 
48
48
  Installing is simple; pyrad uses the standard distutils system for installing
49
49
  Python modules::
50
50
 
51
51
  python setup.py install
52
52
 
53
+ Author, Copyright, Availability
54
+ ===============================
55
+
56
+ pyrad was written by Wichert Akkerman <wichert@wiggy.net> and is maintained by
57
+ Christian Giese (GIC-de), Istvan Ruzman (Istvan91) and Stefan Lieberth (slieberth).
58
+
59
+ We’re looking for contributors to support the pyrad team! If you’re interested in
60
+ helping with development, testing, documentation, or other areas, please contact
61
+ us directly.
62
+
63
+ This project is licensed under a BSD license.
64
+
65
+ Copyright and license information can be found in the LICENSE.txt file.
66
+
67
+ The current version and documentation can be found on pypi:
68
+ https://pypi.org/project/pyrad/
69
+
70
+ Bugs and wishes can be submitted in the pyrad issue tracker on github:
71
+ https://github.com/pyradius/pyrad/issues
72
+
73
+ Related Projects & Forks
74
+ ========================
75
+
76
+ **pyrad2:** Noteworthy fork with experimental RadSec (RFC 6614) support. Targets Python 3.12+,
77
+ adds extensive type hints, boosts test coverage, and includes fresh bug fixes.
78
+ https://github.com/nicholasamorim/pyrad2
79
+
80
+ **pyrad-server:** Lab-grade RADIUS test server built on top of pyrad.
81
+ https://github.com/slieberth/pyrad-server
53
82
 
54
83
  API Documentation
55
84
  =================
pyrad/__init__.py CHANGED
@@ -41,6 +41,6 @@ __docformat__ = 'epytext en'
41
41
  __author__ = 'Christian Giese <gic@gicnet.de>, Istvan Ruzman <istvan@ruzman.eu> and Stefan Lieberth <stefan@lieberth.net>'
42
42
  __url__ = 'http://pyrad.readthedocs.io/en/latest/?badge=latest'
43
43
  __copyright__ = 'Copyright 2002-2026 Wichert Akkerman, Christian Giese, Istvan Ruzman and Stefan Lieberth. All rights reserved.'
44
- __version__ = '2.5.0'
44
+ __version__ = '2.5.2'
45
45
 
46
46
  __all__ = ['client', 'dictionary', 'packet', 'server', 'tools', 'dictfile']
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyrad
3
- Version: 2.5.0
3
+ Version: 2.5.2
4
4
  Summary: RADIUS tools
5
5
  Author-email: Istvan Ruzman <istvan@ruzman.eu>, Christian Giese <gic@gicnet.de>, Stefan Lieberth <stefan@lieberth.net>
6
6
  License: BSD-3-Clause
@@ -9,7 +9,6 @@ Project-URL: Documentation, https://pyradius-pyrad.readthedocs.io
9
9
  Keywords: radius,authentication,AAA,accounting,authorization,RADIUS
10
10
  Classifier: Development Status :: 6 - Mature
11
11
  Classifier: Intended Audience :: Developers
12
- Classifier: License :: OSI Approved :: BSD License
13
12
  Classifier: Programming Language :: Python :: 3
14
13
  Classifier: Programming Language :: Python :: 3.8
15
14
  Classifier: Programming Language :: Python :: 3.9
@@ -28,6 +27,10 @@ Requires-Dist: six>=1.16.0
28
27
  Provides-Extra: test
29
28
  Requires-Dist: pytest>=8; extra == "test"
30
29
  Requires-Dist: mock; python_version < "3.10" and extra == "test"
30
+ Provides-Extra: docs
31
+ Requires-Dist: sphinx>=7.0; extra == "docs"
32
+ Requires-Dist: sphinx-autodoc-typehints; extra == "docs"
33
+ Requires-Dist: sphinx-rtd-theme>=2.0; extra == "docs"
31
34
  Dynamic: license-file
32
35
 
33
36
 
@@ -99,7 +102,7 @@ Author, Copyright, Availability
99
102
  ===============================
100
103
 
101
104
  pyrad was written by Wichert Akkerman <wichert@wiggy.net> and is maintained by
102
- Christian Giese (GIC-de) and Istvan Ruzman (Istvan91).
105
+ Christian Giese (GIC-de), Istvan Ruzman (Istvan91) and Stefan Lieberth (slieberth).
103
106
 
104
107
  We’re looking for contributors to support the pyrad team! If you’re interested in
105
108
  helping with development, testing, documentation, or other areas, please contact
@@ -1,8 +1,8 @@
1
1
  docs/Makefile,sha256=De9yQi78Rqt6niypd7CgZSkhyHFEx5cXhh6ZL3YT1Yc,606
2
2
  docs/make.bat,sha256=MIkBA-XhK2GzLus-jttyGfmQMlVYtQT23DOTPKnICw8,813
3
- docs/source/conf.py,sha256=BmMQb6oxGNAzfGGDT6WZ4MYrd_h0kf5-00Iasu2F-Uk,5137
4
- docs/source/index.rst,sha256=i_Fb3-3lEDGp8iMYdgQphqexeoiGY0WREO-btdlnelA,1650
5
- docs/source/_static/logo.png,sha256=xr7ETIziytN2Sl9WkOCnAKWwikXJYwvpIB7stu5a6iE,1247
3
+ docs/source/conf.py,sha256=ksIiLe0EBbiiHxU1xsdQge26vWj1HabH7jCUeIzRAgk,5272
4
+ docs/source/index.rst,sha256=bSw12RrKh5-lnYxl4zndeJvnOCOadmZp-9GIpEnAcpQ,2837
5
+ docs/source/_static/logo.png,sha256=oph-C7ITwrkhWukBTdhmhcEQfrUxXz6Q2xz7sANPDuo,426505
6
6
  docs/source/api/client.rst,sha256=Bg2tB-hlaRtiZleaJXEOrA0weDi0w25lS0xzw_k0xKE,181
7
7
  docs/source/api/dictionary.rst,sha256=-dQM3gTaZjcEVMe0RlDZ5TgtBhnk8A927TlrZqvjFGQ,210
8
8
  docs/source/api/host.rst,sha256=R1IUSCWpwfW7xha-Z18xyaq3kDhlsmxxX9vnJx1fPsw,153
@@ -20,7 +20,7 @@ example/pyrad.log,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
20
  example/server.py,sha256=kvXl_7HpW2xXy5U-LU-9VRSVJubeHll6XSnbms2M0rs,1993
21
21
  example/server_async.py,sha256=va4bEKX796ePDrM_pAERAXNaSUsxrelLoa3fzp2n4TY,3442
22
22
  example/status.py,sha256=jyUgdW_sUdUgjyChnKEQJQf-bnLr6KXC3479mi5-q9Q,724
23
- pyrad/__init__.py,sha256=UHLdGJEv8IRKt2TsjbJsxYO3BB-grtobpuNp0iXftGo,1537
23
+ pyrad/__init__.py,sha256=jOAVXQWleKdCmD03ksUjn8LMdEc4w4QNysWrRWtaarw,1537
24
24
  pyrad/bidict.py,sha256=wgSr6odl-sYqkHrAFvCqRPjKOPpck4tZ-YxXivmPLsQ,870
25
25
  pyrad/client.py,sha256=scOSXMs1Oee7m7w5xdwHnCoxpeBD298tgKDgxsSRhj4,8498
26
26
  pyrad/client_async.py,sha256=XIi9tEo3sfmmbG33xs3e9YDa6GGIiAMDC4LqS0VFNno,14758
@@ -43,9 +43,9 @@ pyrad/tests/test_packet.py,sha256=7d7_NObiEZeiGArz9uVXY8qZkzv_F8z8Saz41TlbK0s,27
43
43
  pyrad/tests/test_proxy.py,sha256=JVhVCDqa4waixtNw82kMsDzVeiKgIeUU5fLf8mcp7E8,2981
44
44
  pyrad/tests/test_server.py,sha256=UZo5RCyYJcYvuKvFlE0e0tWs4hjnSVVbJTqJ9YciVgA,11383
45
45
  pyrad/tests/test_tools.py,sha256=PKc5tPzyartVCE4OIMzgkIIdeSIK3luQFPlrO3ivVFM,6617
46
- pyrad-2.5.0.dist-info/licenses/LICENSE.txt,sha256=JXj4emdUhaoO3l80a9HFY7c61ekO4yLbInhCcET9r_U,1660
47
- pyrad-2.5.0.dist-info/METADATA,sha256=FP3FxyfhjQeD8c3DkRhNnKP4Y8AhiQ--Yv7nFk7U-4c,4748
48
- pyrad-2.5.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
49
- pyrad-2.5.0.dist-info/top_level.txt,sha256=DfCXLna0BEU1ycerXhff_P0tIEOQr8_XsWCw-re1Xg8,19
50
- pyrad-2.5.0.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
51
- pyrad-2.5.0.dist-info/RECORD,,
46
+ pyrad-2.5.2.dist-info/licenses/LICENSE.txt,sha256=JXj4emdUhaoO3l80a9HFY7c61ekO4yLbInhCcET9r_U,1660
47
+ pyrad-2.5.2.dist-info/METADATA,sha256=PHd5-1jnVLfRitBThxXAV5pCJ0EOUmFTY4uGumqU8ao,4902
48
+ pyrad-2.5.2.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
49
+ pyrad-2.5.2.dist-info/top_level.txt,sha256=DfCXLna0BEU1ycerXhff_P0tIEOQr8_XsWCw-re1Xg8,19
50
+ pyrad-2.5.2.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
51
+ pyrad-2.5.2.dist-info/RECORD,,
File without changes