codext 1.15.3__tar.gz → 1.15.5__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.
- {codext-1.15.3 → codext-1.15.5}/.github/workflows/python-package.yml +2 -2
- {codext-1.15.3 → codext-1.15.5}/PKG-INFO +2 -5
- {codext-1.15.3 → codext-1.15.5}/docs/coverage.svg +1 -1
- {codext-1.15.3 → codext-1.15.5}/pyproject.toml +1 -4
- codext-1.15.3/src/codext.egg-info/requires.txt → codext-1.15.5/requirements.txt +1 -1
- codext-1.15.5/src/codext/VERSION.txt +1 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/__common__.py +3 -2
- {codext-1.15.3 → codext-1.15.5}/src/codext/hashing/crypt.py +4 -1
- {codext-1.15.3 → codext-1.15.5}/src/codext.egg-info/PKG-INFO +2 -5
- codext-1.15.5/src/codext.egg-info/requires.txt +4 -0
- codext-1.15.3/requirements.txt +0 -1
- codext-1.15.3/src/codext/VERSION.txt +0 -1
- {codext-1.15.3 → codext-1.15.5}/.coveragerc +0 -0
- {codext-1.15.3 → codext-1.15.5}/.github/workflows/pypi-publish.yml +0 -0
- {codext-1.15.3 → codext-1.15.5}/.gitignore +0 -0
- {codext-1.15.3 → codext-1.15.5}/.readthedocs.yml +0 -0
- {codext-1.15.3 → codext-1.15.5}/LICENSE +0 -0
- {codext-1.15.3 → codext-1.15.5}/README.md +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/mkdocs.yml +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/cli.md +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/css/extra.css +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/demos/using-bases.gif +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/demos/using-codext.gif +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/demos/using-debase.gif +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/enc/base.md +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/enc/binary.md +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/enc/common.md +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/enc/compressions.md +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/enc/crypto.md +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/enc/hashing.md +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/enc/languages.md +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/enc/others.md +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/enc/stegano.md +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/enc/web.md +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/features.md +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/guessing.md +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/howto.md +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/img/banner.png +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/img/icon.png +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/img/logo.png +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/index.md +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/pages/manipulations.md +0 -0
- {codext-1.15.3 → codext-1.15.5}/docs/requirements.txt +0 -0
- {codext-1.15.3 → codext-1.15.5}/pytest.ini +0 -0
- {codext-1.15.3 → codext-1.15.5}/setup.cfg +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/__info__.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/__init__.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/base/__init__.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/base/_base.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/base/_base2n.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/base/base100.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/base/base122.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/base/base45.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/base/base85.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/base/base91.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/base/baseN.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/binary/__init__.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/binary/baudot.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/binary/bcd.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/binary/excess3.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/binary/gray.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/binary/manchester.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/binary/rotate.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/common/__init__.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/common/a1z26.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/common/cases.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/common/dummy.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/common/octal.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/common/ordinal.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/compressions/__init__.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/compressions/gzipp.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/compressions/lz77.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/compressions/lz78.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/compressions/pkzip.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/crypto/__init__.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/crypto/affine.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/crypto/atbash.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/crypto/bacon.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/crypto/barbie.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/crypto/citrix.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/crypto/railfence.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/crypto/rot.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/crypto/scytale.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/crypto/shift.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/crypto/xor.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/hashing/__init__.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/hashing/blake.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/hashing/checksums.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/hashing/md.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/hashing/sha.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/hashing/shake.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/languages/__init__.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/languages/braille.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/languages/galactic.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/languages/ipsum.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/languages/leetspeak.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/languages/morse.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/languages/navajo.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/languages/radio.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/languages/southpark.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/languages/tap.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/languages/tomtom.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/macros.json +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/others/__init__.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/others/dna.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/others/kbshift.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/others/letters.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/others/markdown.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/others/uuencode.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/stegano/__init__.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/stegano/hexagram.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/stegano/klopf.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/stegano/resistor.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/stegano/rick.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/stegano/sms.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/stegano/whitespace.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/web/__init__.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/web/html.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext/web/url.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext.egg-info/SOURCES.txt +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext.egg-info/dependency_links.txt +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext.egg-info/entry_points.txt +0 -0
- {codext-1.15.3 → codext-1.15.5}/src/codext.egg-info/top_level.txt +0 -0
- {codext-1.15.3 → codext-1.15.5}/tests/__init__.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/tests/test_base.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/tests/test_common.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/tests/test_generated.py +0 -0
- {codext-1.15.3 → codext-1.15.5}/tests/test_manual.py +0 -0
|
@@ -19,7 +19,7 @@ jobs:
|
|
|
19
19
|
fail-fast: false
|
|
20
20
|
matrix:
|
|
21
21
|
os: [ubuntu-latest]
|
|
22
|
-
python-version: ["3.8", "3.9", "3.10", "3.11"]
|
|
22
|
+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
|
|
23
23
|
steps:
|
|
24
24
|
- uses: actions/checkout@v3
|
|
25
25
|
- name: Set up Python ${{ matrix.python-version }}
|
|
@@ -60,7 +60,7 @@ jobs:
|
|
|
60
60
|
pytest --cov=$package --cov-report=xml
|
|
61
61
|
genbadge coverage -i coverage.xml -o $cov_badge_path
|
|
62
62
|
- name: Verify Changed files
|
|
63
|
-
uses: tj-actions/verify-changed-files@
|
|
63
|
+
uses: tj-actions/verify-changed-files@v17
|
|
64
64
|
id: changed_files
|
|
65
65
|
with:
|
|
66
66
|
files: ${{ env.cov_badge_path }}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: codext
|
|
3
|
-
Version: 1.15.
|
|
3
|
+
Version: 1.15.5
|
|
4
4
|
Summary: Native codecs extension
|
|
5
5
|
Author-email: Alexandre D'Hondt <alexandre.dhondt@gmail.com>
|
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
|
@@ -688,14 +688,11 @@ Classifier: Environment :: Console
|
|
|
688
688
|
Classifier: Intended Audience :: Developers
|
|
689
689
|
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
690
690
|
Classifier: Programming Language :: Python :: 3
|
|
691
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
692
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
693
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
694
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
695
691
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
696
692
|
Requires-Python: <4,>=3.8
|
|
697
693
|
Description-Content-Type: text/markdown
|
|
698
694
|
License-File: LICENSE
|
|
695
|
+
Requires-Dist: crypt-r; python_version >= "3.13"
|
|
699
696
|
Requires-Dist: markdown2>=2.4.0
|
|
700
697
|
|
|
701
698
|
<p align="center"><img src="https://github.com/dhondta/python-codext/raw/main/docs/pages/img/logo.png"></p>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="114" height="20" role="img" aria-label="coverage: 99.
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="114" height="20" role="img" aria-label="coverage: 99.11%"><title>coverage: 99.11%</title><linearGradient id="s" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="r"><rect width="114" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#r)"><rect width="61" height="20" fill="#555"/><rect x="61" width="53" height="20" fill="#4c1"/><rect width="114" height="20" fill="url(#s)"/></g><g fill="#fff" text-anchor="middle" font-family="Verdana,Geneva,DejaVu Sans,sans-serif" text-rendering="geometricPrecision" font-size="110"><text aria-hidden="true" x="315" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="510">coverage</text><text x="315" y="140" transform="scale(.1)" fill="#fff" textLength="510">coverage</text><text aria-hidden="true" x="865" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="430">99.11%</text><text x="865" y="140" transform="scale(.1)" fill="#fff" textLength="430">99.11%</text></g></svg>
|
|
@@ -23,13 +23,10 @@ classifiers = [
|
|
|
23
23
|
"Intended Audience :: Developers",
|
|
24
24
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
25
25
|
"Programming Language :: Python :: 3",
|
|
26
|
-
"Programming Language :: Python :: 3.8",
|
|
27
|
-
"Programming Language :: Python :: 3.9",
|
|
28
|
-
"Programming Language :: Python :: 3.10",
|
|
29
|
-
"Programming Language :: Python :: 3.11",
|
|
30
26
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
31
27
|
]
|
|
32
28
|
dependencies = [
|
|
29
|
+
"crypt-r; python_version >= '3.13'",
|
|
33
30
|
"markdown2>=2.4.0",
|
|
34
31
|
]
|
|
35
32
|
dynamic = ["version"]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
markdown2>=2.4.0
|
|
1
|
+
markdown2>=2.4.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.15.5
|
|
@@ -200,8 +200,9 @@ def _input(infile):
|
|
|
200
200
|
|
|
201
201
|
def _set_exc(name, etype="ValueError"):
|
|
202
202
|
if not hasattr(builtins, name):
|
|
203
|
-
|
|
204
|
-
|
|
203
|
+
ns = {}
|
|
204
|
+
exec(f"class {name}({etype}): __module__ = 'builtins'", {}, ns)
|
|
205
|
+
setattr(builtins, name, ns[name])
|
|
205
206
|
_set_exc("InputSizeLimitError")
|
|
206
207
|
_set_exc("ParameterError")
|
|
207
208
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: codext
|
|
3
|
-
Version: 1.15.
|
|
3
|
+
Version: 1.15.5
|
|
4
4
|
Summary: Native codecs extension
|
|
5
5
|
Author-email: Alexandre D'Hondt <alexandre.dhondt@gmail.com>
|
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
|
@@ -688,14 +688,11 @@ Classifier: Environment :: Console
|
|
|
688
688
|
Classifier: Intended Audience :: Developers
|
|
689
689
|
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
690
690
|
Classifier: Programming Language :: Python :: 3
|
|
691
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
692
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
693
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
694
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
695
691
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
696
692
|
Requires-Python: <4,>=3.8
|
|
697
693
|
Description-Content-Type: text/markdown
|
|
698
694
|
License-File: LICENSE
|
|
695
|
+
Requires-Dist: crypt-r; python_version >= "3.13"
|
|
699
696
|
Requires-Dist: markdown2>=2.4.0
|
|
700
697
|
|
|
701
698
|
<p align="center"><img src="https://github.com/dhondta/python-codext/raw/main/docs/pages/img/logo.png"></p>
|
codext-1.15.3/requirements.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
six
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
1.15.3
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|