codext 1.15.7__tar.gz → 1.15.8__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.7 → codext-1.15.8}/.github/workflows/python-package.yml +0 -4
- {codext-1.15.7 → codext-1.15.8}/PKG-INFO +1 -1
- codext-1.15.8/src/codext/VERSION.txt +1 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/__common__.py +1 -1
- {codext-1.15.7 → codext-1.15.8}/src/codext.egg-info/PKG-INFO +1 -1
- codext-1.15.7/src/codext/VERSION.txt +0 -1
- {codext-1.15.7 → codext-1.15.8}/.coveragerc +0 -0
- {codext-1.15.7 → codext-1.15.8}/.gitignore +0 -0
- {codext-1.15.7 → codext-1.15.8}/.readthedocs.yml +0 -0
- {codext-1.15.7 → codext-1.15.8}/LICENSE +0 -0
- {codext-1.15.7 → codext-1.15.8}/README.md +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/coverage.svg +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/mkdocs.yml +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/cli.md +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/css/extra.css +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/demos/using-bases.gif +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/demos/using-codext.gif +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/demos/using-debase.gif +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/enc/base.md +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/enc/binary.md +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/enc/common.md +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/enc/compressions.md +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/enc/crypto.md +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/enc/hashing.md +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/enc/languages.md +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/enc/others.md +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/enc/stegano.md +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/enc/web.md +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/features.md +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/guessing.md +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/howto.md +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/img/banner.png +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/img/icon.png +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/img/logo.png +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/index.md +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/pages/manipulations.md +0 -0
- {codext-1.15.7 → codext-1.15.8}/docs/requirements.txt +0 -0
- {codext-1.15.7 → codext-1.15.8}/pyproject.toml +0 -0
- {codext-1.15.7 → codext-1.15.8}/pytest.ini +0 -0
- {codext-1.15.7 → codext-1.15.8}/requirements.txt +0 -0
- {codext-1.15.7 → codext-1.15.8}/setup.cfg +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/__info__.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/__init__.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/base/__init__.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/base/_base.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/base/_base2n.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/base/base100.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/base/base122.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/base/base45.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/base/base85.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/base/base91.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/base/baseN.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/binary/__init__.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/binary/baudot.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/binary/bcd.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/binary/excess3.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/binary/gray.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/binary/manchester.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/binary/rotate.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/common/__init__.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/common/a1z26.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/common/cases.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/common/dummy.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/common/octal.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/common/ordinal.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/compressions/__init__.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/compressions/gzipp.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/compressions/lz77.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/compressions/lz78.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/compressions/pkzip.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/crypto/__init__.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/crypto/affine.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/crypto/atbash.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/crypto/bacon.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/crypto/barbie.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/crypto/citrix.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/crypto/railfence.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/crypto/rot.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/crypto/scytale.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/crypto/shift.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/crypto/xor.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/hashing/__init__.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/hashing/blake.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/hashing/checksums.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/hashing/crypt.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/hashing/md.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/hashing/sha.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/hashing/shake.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/languages/__init__.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/languages/braille.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/languages/galactic.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/languages/ipsum.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/languages/leetspeak.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/languages/morse.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/languages/navajo.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/languages/radio.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/languages/southpark.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/languages/tap.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/languages/tomtom.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/macros.json +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/others/__init__.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/others/dna.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/others/kbshift.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/others/letters.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/others/markdown.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/others/uuencode.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/stegano/__init__.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/stegano/hexagram.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/stegano/klopf.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/stegano/resistor.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/stegano/rick.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/stegano/sms.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/stegano/whitespace.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/web/__init__.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/web/html.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext/web/url.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext.egg-info/SOURCES.txt +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext.egg-info/dependency_links.txt +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext.egg-info/entry_points.txt +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext.egg-info/requires.txt +0 -0
- {codext-1.15.7 → codext-1.15.8}/src/codext.egg-info/top_level.txt +0 -0
- {codext-1.15.7 → codext-1.15.8}/tests/__init__.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/tests/test_base.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/tests/test_common.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/tests/test_generated.py +0 -0
- {codext-1.15.7 → codext-1.15.8}/tests/test_manual.py +0 -0
|
@@ -26,8 +26,6 @@ jobs:
|
|
|
26
26
|
uses: actions/setup-python@v4
|
|
27
27
|
with:
|
|
28
28
|
python-version: ${{ matrix.python-version }}
|
|
29
|
-
- name: Install pandoc
|
|
30
|
-
run: sudo apt-get install -y pandoc
|
|
31
29
|
- name: Install ${{ env.package }}
|
|
32
30
|
run: |
|
|
33
31
|
python -m pip install --upgrade pip
|
|
@@ -48,8 +46,6 @@ jobs:
|
|
|
48
46
|
uses: actions/setup-python@v4
|
|
49
47
|
with:
|
|
50
48
|
python-version: "3.12"
|
|
51
|
-
- name: Install pandoc
|
|
52
|
-
run: sudo apt-get install -y pandoc notification-daemon
|
|
53
49
|
- name: Install ${{ env.package }}
|
|
54
50
|
run: |
|
|
55
51
|
python -m pip install --upgrade pip
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.15.8
|
|
@@ -261,7 +261,7 @@ def add(ename, encode=None, decode=None, pattern=None, text=True, add_to_codecs=
|
|
|
261
261
|
while True:
|
|
262
262
|
try:
|
|
263
263
|
g = m.group(i) or ""
|
|
264
|
-
if g.isdigit() and not g.startswith("0") and "".join(set(g)) != "01":
|
|
264
|
+
if g.isdigit() and not g.startswith("0") and (re.match(r"10+", g) or "".join(set(g)) != "01"):
|
|
265
265
|
g = int(g)
|
|
266
266
|
args += [g]
|
|
267
267
|
i += 1
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
1.15.7
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|