bencoder.pyx 3.0.0__tar.gz → 3.0.2__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.
- {bencoder.pyx-3.0.0/bencoder.pyx.egg-info → bencoder_pyx-3.0.2}/PKG-INFO +31 -10
- {bencoder.pyx-3.0.0 → bencoder_pyx-3.0.2}/README.rst +14 -2
- bencoder_pyx-3.0.2/bencoder.c +14861 -0
- {bencoder.pyx-3.0.0 → bencoder_pyx-3.0.2}/bencoder.pyx +2 -3
- {bencoder.pyx-3.0.0 → bencoder_pyx-3.0.2/bencoder.pyx.egg-info}/PKG-INFO +31 -10
- bencoder_pyx-3.0.2/pyproject.toml +8 -0
- {bencoder.pyx-3.0.0 → bencoder_pyx-3.0.2}/setup.py +5 -5
- bencoder.pyx-3.0.0/bencoder.c +0 -10136
- bencoder.pyx-3.0.0/pyproject.toml +0 -7
- {bencoder.pyx-3.0.0 → bencoder_pyx-3.0.2}/LICENSE +0 -0
- {bencoder.pyx-3.0.0 → bencoder_pyx-3.0.2}/MANIFEST.in +0 -0
- {bencoder.pyx-3.0.0 → bencoder_pyx-3.0.2}/bencoder.pyx.egg-info/SOURCES.txt +0 -0
- {bencoder.pyx-3.0.0 → bencoder_pyx-3.0.2}/bencoder.pyx.egg-info/dependency_links.txt +0 -0
- {bencoder.pyx-3.0.0 → bencoder_pyx-3.0.2}/bencoder.pyx.egg-info/not-zip-safe +0 -0
- {bencoder.pyx-3.0.0 → bencoder_pyx-3.0.2}/bencoder.pyx.egg-info/top_level.txt +0 -0
- {bencoder.pyx-3.0.0 → bencoder_pyx-3.0.2}/setup.cfg +0 -0
- {bencoder.pyx-3.0.0 → bencoder_pyx-3.0.2}/tests/debian-8.3.0-amd64-netinst.iso.torrent +0 -0
- {bencoder.pyx-3.0.0 → bencoder_pyx-3.0.2}/tests/test_decode.py +0 -0
- {bencoder.pyx-3.0.0 → bencoder_pyx-3.0.2}/tests/test_encode.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: bencoder.pyx
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.2
|
|
4
4
|
Summary: Yet another bencode implementation in Cython
|
|
5
5
|
Home-page: https://github.com/whtsky/bencoder.pyx
|
|
6
6
|
Author: whtsky
|
|
@@ -17,23 +17,34 @@ Classifier: Operating System :: OS Independent
|
|
|
17
17
|
Classifier: Programming Language :: Cython
|
|
18
18
|
Classifier: Programming Language :: Python
|
|
19
19
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
23
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
24
20
|
Classifier: Programming Language :: Python :: 3.10
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
25
24
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
26
25
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
27
26
|
Classifier: Intended Audience :: Developers
|
|
28
27
|
Classifier: Topic :: Software Development :: Libraries
|
|
29
28
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
30
29
|
Classifier: Topic :: Utilities
|
|
30
|
+
Requires-Python: >=3.10
|
|
31
31
|
License-File: LICENSE
|
|
32
|
+
Dynamic: author
|
|
33
|
+
Dynamic: author-email
|
|
34
|
+
Dynamic: classifier
|
|
35
|
+
Dynamic: description
|
|
36
|
+
Dynamic: home-page
|
|
37
|
+
Dynamic: keywords
|
|
38
|
+
Dynamic: license
|
|
39
|
+
Dynamic: license-file
|
|
40
|
+
Dynamic: platform
|
|
41
|
+
Dynamic: requires-python
|
|
42
|
+
Dynamic: summary
|
|
32
43
|
|
|
33
44
|
Bencoder.pyx
|
|
34
45
|
============
|
|
35
46
|
|
|
36
|
-
A fast bencode implementation in Cython
|
|
47
|
+
A fast bencode implementation in Cython for Python 3.
|
|
37
48
|
|
|
38
49
|
.. image:: https://img.shields.io/pypi/l/bencoder.pyx.svg
|
|
39
50
|
:alt: PyPI License
|
|
@@ -73,7 +84,19 @@ Usage
|
|
|
73
84
|
ChangeLog
|
|
74
85
|
----------
|
|
75
86
|
|
|
76
|
-
|
|
87
|
+
Version 3.0.2
|
|
88
|
+
~~~~~~~~~~~~~~~
|
|
89
|
+
|
|
90
|
+
+ Drop support for Python 3.6–3.9, require Python >= 3.10
|
|
91
|
+
+ Add support for Python 3.12 & 3.13
|
|
92
|
+
+ Fix Cython 3 build
|
|
93
|
+
|
|
94
|
+
Version 3.0.1
|
|
95
|
+
~~~~~~~~~~~~~~~
|
|
96
|
+
|
|
97
|
+
+ Add support for Python 3.11
|
|
98
|
+
|
|
99
|
+
Version 3.0.0
|
|
77
100
|
~~~~~~~~~~~~~~~
|
|
78
101
|
|
|
79
102
|
+ Add support for Python 3.9 & 3.10
|
|
@@ -120,5 +143,3 @@ Version 1.1.0
|
|
|
120
143
|
|
|
121
144
|
+ Use OrderedDict instaed of dict
|
|
122
145
|
+ Support encoding subclasses of dict
|
|
123
|
-
|
|
124
|
-
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Bencoder.pyx
|
|
2
2
|
============
|
|
3
3
|
|
|
4
|
-
A fast bencode implementation in Cython
|
|
4
|
+
A fast bencode implementation in Cython for Python 3.
|
|
5
5
|
|
|
6
6
|
.. image:: https://img.shields.io/pypi/l/bencoder.pyx.svg
|
|
7
7
|
:alt: PyPI License
|
|
@@ -41,7 +41,19 @@ Usage
|
|
|
41
41
|
ChangeLog
|
|
42
42
|
----------
|
|
43
43
|
|
|
44
|
-
|
|
44
|
+
Version 3.0.2
|
|
45
|
+
~~~~~~~~~~~~~~~
|
|
46
|
+
|
|
47
|
+
+ Drop support for Python 3.6–3.9, require Python >= 3.10
|
|
48
|
+
+ Add support for Python 3.12 & 3.13
|
|
49
|
+
+ Fix Cython 3 build
|
|
50
|
+
|
|
51
|
+
Version 3.0.1
|
|
52
|
+
~~~~~~~~~~~~~~~
|
|
53
|
+
|
|
54
|
+
+ Add support for Python 3.11
|
|
55
|
+
|
|
56
|
+
Version 3.0.0
|
|
45
57
|
~~~~~~~~~~~~~~~
|
|
46
58
|
|
|
47
59
|
+ Add support for Python 3.9 & 3.10
|