codext 1.15.7__tar.gz → 1.15.9__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.
Files changed (128) hide show
  1. {codext-1.15.7 → codext-1.15.9}/.github/workflows/python-package.yml +2 -6
  2. {codext-1.15.7 → codext-1.15.9}/PKG-INFO +3 -3
  3. {codext-1.15.7 → codext-1.15.9}/README.md +336 -336
  4. {codext-1.15.7 → codext-1.15.9}/pyproject.toml +2 -2
  5. codext-1.15.9/pytest.ini +2 -0
  6. codext-1.15.9/requirements.txt +2 -0
  7. codext-1.15.9/src/codext/VERSION.txt +1 -0
  8. {codext-1.15.7 → codext-1.15.9}/src/codext/__common__.py +1 -1
  9. {codext-1.15.7 → codext-1.15.9}/src/codext.egg-info/PKG-INFO +3 -3
  10. {codext-1.15.7 → codext-1.15.9}/src/codext.egg-info/requires.txt +1 -1
  11. codext-1.15.7/pytest.ini +0 -2
  12. codext-1.15.7/requirements.txt +0 -1
  13. codext-1.15.7/src/codext/VERSION.txt +0 -1
  14. {codext-1.15.7 → codext-1.15.9}/.coveragerc +0 -0
  15. {codext-1.15.7 → codext-1.15.9}/.gitignore +0 -0
  16. {codext-1.15.7 → codext-1.15.9}/.readthedocs.yml +0 -0
  17. {codext-1.15.7 → codext-1.15.9}/LICENSE +0 -0
  18. {codext-1.15.7 → codext-1.15.9}/docs/coverage.svg +0 -0
  19. {codext-1.15.7 → codext-1.15.9}/docs/mkdocs.yml +0 -0
  20. {codext-1.15.7 → codext-1.15.9}/docs/pages/cli.md +0 -0
  21. {codext-1.15.7 → codext-1.15.9}/docs/pages/css/extra.css +0 -0
  22. {codext-1.15.7 → codext-1.15.9}/docs/pages/demos/using-bases.gif +0 -0
  23. {codext-1.15.7 → codext-1.15.9}/docs/pages/demos/using-codext.gif +0 -0
  24. {codext-1.15.7 → codext-1.15.9}/docs/pages/demos/using-debase.gif +0 -0
  25. {codext-1.15.7 → codext-1.15.9}/docs/pages/enc/base.md +0 -0
  26. {codext-1.15.7 → codext-1.15.9}/docs/pages/enc/binary.md +0 -0
  27. {codext-1.15.7 → codext-1.15.9}/docs/pages/enc/common.md +0 -0
  28. {codext-1.15.7 → codext-1.15.9}/docs/pages/enc/compressions.md +0 -0
  29. {codext-1.15.7 → codext-1.15.9}/docs/pages/enc/crypto.md +0 -0
  30. {codext-1.15.7 → codext-1.15.9}/docs/pages/enc/hashing.md +0 -0
  31. {codext-1.15.7 → codext-1.15.9}/docs/pages/enc/languages.md +0 -0
  32. {codext-1.15.7 → codext-1.15.9}/docs/pages/enc/others.md +0 -0
  33. {codext-1.15.7 → codext-1.15.9}/docs/pages/enc/stegano.md +0 -0
  34. {codext-1.15.7 → codext-1.15.9}/docs/pages/enc/web.md +0 -0
  35. {codext-1.15.7 → codext-1.15.9}/docs/pages/features.md +0 -0
  36. {codext-1.15.7 → codext-1.15.9}/docs/pages/guessing.md +0 -0
  37. {codext-1.15.7 → codext-1.15.9}/docs/pages/howto.md +0 -0
  38. {codext-1.15.7 → codext-1.15.9}/docs/pages/img/banner.png +0 -0
  39. {codext-1.15.7 → codext-1.15.9}/docs/pages/img/icon.png +0 -0
  40. {codext-1.15.7 → codext-1.15.9}/docs/pages/img/logo.png +0 -0
  41. {codext-1.15.7 → codext-1.15.9}/docs/pages/index.md +0 -0
  42. {codext-1.15.7 → codext-1.15.9}/docs/pages/manipulations.md +0 -0
  43. {codext-1.15.7 → codext-1.15.9}/docs/requirements.txt +0 -0
  44. {codext-1.15.7 → codext-1.15.9}/setup.cfg +0 -0
  45. {codext-1.15.7 → codext-1.15.9}/src/codext/__info__.py +0 -0
  46. {codext-1.15.7 → codext-1.15.9}/src/codext/__init__.py +0 -0
  47. {codext-1.15.7 → codext-1.15.9}/src/codext/base/__init__.py +0 -0
  48. {codext-1.15.7 → codext-1.15.9}/src/codext/base/_base.py +0 -0
  49. {codext-1.15.7 → codext-1.15.9}/src/codext/base/_base2n.py +0 -0
  50. {codext-1.15.7 → codext-1.15.9}/src/codext/base/base100.py +0 -0
  51. {codext-1.15.7 → codext-1.15.9}/src/codext/base/base122.py +0 -0
  52. {codext-1.15.7 → codext-1.15.9}/src/codext/base/base45.py +0 -0
  53. {codext-1.15.7 → codext-1.15.9}/src/codext/base/base85.py +0 -0
  54. {codext-1.15.7 → codext-1.15.9}/src/codext/base/base91.py +0 -0
  55. {codext-1.15.7 → codext-1.15.9}/src/codext/base/baseN.py +0 -0
  56. {codext-1.15.7 → codext-1.15.9}/src/codext/binary/__init__.py +0 -0
  57. {codext-1.15.7 → codext-1.15.9}/src/codext/binary/baudot.py +0 -0
  58. {codext-1.15.7 → codext-1.15.9}/src/codext/binary/bcd.py +0 -0
  59. {codext-1.15.7 → codext-1.15.9}/src/codext/binary/excess3.py +0 -0
  60. {codext-1.15.7 → codext-1.15.9}/src/codext/binary/gray.py +0 -0
  61. {codext-1.15.7 → codext-1.15.9}/src/codext/binary/manchester.py +0 -0
  62. {codext-1.15.7 → codext-1.15.9}/src/codext/binary/rotate.py +0 -0
  63. {codext-1.15.7 → codext-1.15.9}/src/codext/common/__init__.py +0 -0
  64. {codext-1.15.7 → codext-1.15.9}/src/codext/common/a1z26.py +0 -0
  65. {codext-1.15.7 → codext-1.15.9}/src/codext/common/cases.py +0 -0
  66. {codext-1.15.7 → codext-1.15.9}/src/codext/common/dummy.py +0 -0
  67. {codext-1.15.7 → codext-1.15.9}/src/codext/common/octal.py +0 -0
  68. {codext-1.15.7 → codext-1.15.9}/src/codext/common/ordinal.py +0 -0
  69. {codext-1.15.7 → codext-1.15.9}/src/codext/compressions/__init__.py +0 -0
  70. {codext-1.15.7 → codext-1.15.9}/src/codext/compressions/gzipp.py +0 -0
  71. {codext-1.15.7 → codext-1.15.9}/src/codext/compressions/lz77.py +0 -0
  72. {codext-1.15.7 → codext-1.15.9}/src/codext/compressions/lz78.py +0 -0
  73. {codext-1.15.7 → codext-1.15.9}/src/codext/compressions/pkzip.py +0 -0
  74. {codext-1.15.7 → codext-1.15.9}/src/codext/crypto/__init__.py +0 -0
  75. {codext-1.15.7 → codext-1.15.9}/src/codext/crypto/affine.py +0 -0
  76. {codext-1.15.7 → codext-1.15.9}/src/codext/crypto/atbash.py +0 -0
  77. {codext-1.15.7 → codext-1.15.9}/src/codext/crypto/bacon.py +0 -0
  78. {codext-1.15.7 → codext-1.15.9}/src/codext/crypto/barbie.py +0 -0
  79. {codext-1.15.7 → codext-1.15.9}/src/codext/crypto/citrix.py +0 -0
  80. {codext-1.15.7 → codext-1.15.9}/src/codext/crypto/railfence.py +0 -0
  81. {codext-1.15.7 → codext-1.15.9}/src/codext/crypto/rot.py +0 -0
  82. {codext-1.15.7 → codext-1.15.9}/src/codext/crypto/scytale.py +0 -0
  83. {codext-1.15.7 → codext-1.15.9}/src/codext/crypto/shift.py +0 -0
  84. {codext-1.15.7 → codext-1.15.9}/src/codext/crypto/xor.py +0 -0
  85. {codext-1.15.7 → codext-1.15.9}/src/codext/hashing/__init__.py +0 -0
  86. {codext-1.15.7 → codext-1.15.9}/src/codext/hashing/blake.py +0 -0
  87. {codext-1.15.7 → codext-1.15.9}/src/codext/hashing/checksums.py +0 -0
  88. {codext-1.15.7 → codext-1.15.9}/src/codext/hashing/crypt.py +0 -0
  89. {codext-1.15.7 → codext-1.15.9}/src/codext/hashing/md.py +0 -0
  90. {codext-1.15.7 → codext-1.15.9}/src/codext/hashing/sha.py +0 -0
  91. {codext-1.15.7 → codext-1.15.9}/src/codext/hashing/shake.py +0 -0
  92. {codext-1.15.7 → codext-1.15.9}/src/codext/languages/__init__.py +0 -0
  93. {codext-1.15.7 → codext-1.15.9}/src/codext/languages/braille.py +0 -0
  94. {codext-1.15.7 → codext-1.15.9}/src/codext/languages/galactic.py +0 -0
  95. {codext-1.15.7 → codext-1.15.9}/src/codext/languages/ipsum.py +0 -0
  96. {codext-1.15.7 → codext-1.15.9}/src/codext/languages/leetspeak.py +0 -0
  97. {codext-1.15.7 → codext-1.15.9}/src/codext/languages/morse.py +0 -0
  98. {codext-1.15.7 → codext-1.15.9}/src/codext/languages/navajo.py +0 -0
  99. {codext-1.15.7 → codext-1.15.9}/src/codext/languages/radio.py +0 -0
  100. {codext-1.15.7 → codext-1.15.9}/src/codext/languages/southpark.py +0 -0
  101. {codext-1.15.7 → codext-1.15.9}/src/codext/languages/tap.py +0 -0
  102. {codext-1.15.7 → codext-1.15.9}/src/codext/languages/tomtom.py +0 -0
  103. {codext-1.15.7 → codext-1.15.9}/src/codext/macros.json +0 -0
  104. {codext-1.15.7 → codext-1.15.9}/src/codext/others/__init__.py +0 -0
  105. {codext-1.15.7 → codext-1.15.9}/src/codext/others/dna.py +0 -0
  106. {codext-1.15.7 → codext-1.15.9}/src/codext/others/kbshift.py +0 -0
  107. {codext-1.15.7 → codext-1.15.9}/src/codext/others/letters.py +0 -0
  108. {codext-1.15.7 → codext-1.15.9}/src/codext/others/markdown.py +0 -0
  109. {codext-1.15.7 → codext-1.15.9}/src/codext/others/uuencode.py +0 -0
  110. {codext-1.15.7 → codext-1.15.9}/src/codext/stegano/__init__.py +0 -0
  111. {codext-1.15.7 → codext-1.15.9}/src/codext/stegano/hexagram.py +0 -0
  112. {codext-1.15.7 → codext-1.15.9}/src/codext/stegano/klopf.py +0 -0
  113. {codext-1.15.7 → codext-1.15.9}/src/codext/stegano/resistor.py +0 -0
  114. {codext-1.15.7 → codext-1.15.9}/src/codext/stegano/rick.py +0 -0
  115. {codext-1.15.7 → codext-1.15.9}/src/codext/stegano/sms.py +0 -0
  116. {codext-1.15.7 → codext-1.15.9}/src/codext/stegano/whitespace.py +0 -0
  117. {codext-1.15.7 → codext-1.15.9}/src/codext/web/__init__.py +0 -0
  118. {codext-1.15.7 → codext-1.15.9}/src/codext/web/html.py +0 -0
  119. {codext-1.15.7 → codext-1.15.9}/src/codext/web/url.py +0 -0
  120. {codext-1.15.7 → codext-1.15.9}/src/codext.egg-info/SOURCES.txt +0 -0
  121. {codext-1.15.7 → codext-1.15.9}/src/codext.egg-info/dependency_links.txt +0 -0
  122. {codext-1.15.7 → codext-1.15.9}/src/codext.egg-info/entry_points.txt +0 -0
  123. {codext-1.15.7 → codext-1.15.9}/src/codext.egg-info/top_level.txt +0 -0
  124. {codext-1.15.7 → codext-1.15.9}/tests/__init__.py +0 -0
  125. {codext-1.15.7 → codext-1.15.9}/tests/test_base.py +0 -0
  126. {codext-1.15.7 → codext-1.15.9}/tests/test_common.py +0 -0
  127. {codext-1.15.7 → codext-1.15.9}/tests/test_generated.py +0 -0
  128. {codext-1.15.7 → codext-1.15.9}/tests/test_manual.py +0 -0
@@ -26,12 +26,10 @@ 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
34
- python -m pip install pytest pytest-cov pytest-pythonpath coverage
32
+ python -m pip install pytest pytest-cov coverage
35
33
  pip install -r requirements.txt
36
34
  pip install .
37
35
  - name: Test ${{ env.package }} with pytest
@@ -48,12 +46,10 @@ 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
56
- python -m pip install pytest pytest-cov pytest-pythonpath
52
+ python -m pip install pytest pytest-cov
57
53
  pip install -r requirements.txt
58
54
  pip install .
59
55
  - name: Make coverage badge for ${{ env.package }}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: codext
3
- Version: 1.15.7
3
+ Version: 1.15.9
4
4
  Summary: Native codecs extension
5
5
  Author-email: Alexandre D'Hondt <alexandre.dhondt@gmail.com>
6
6
  License: GNU GENERAL PUBLIC LICENSE
@@ -693,10 +693,10 @@ Requires-Python: <4,>=3.8
693
693
  Description-Content-Type: text/markdown
694
694
  License-File: LICENSE
695
695
  Requires-Dist: legacycrypt; python_version >= "3.13"
696
- Requires-Dist: markdown2>=2.4.0
696
+ Requires-Dist: markdown2>=2.5.4
697
697
  Dynamic: license-file
698
698
 
699
- <p align="center"><img src="https://github.com/dhondta/python-codext/raw/main/docs/pages/img/logo.png"></p>
699
+ <p align="center" id="top"><img src="https://github.com/dhondta/python-codext/raw/main/docs/pages/img/logo.png"></p>
700
700
  <h1 align="center">CodExt <a href="https://twitter.com/intent/tweet?text=CodExt%20-%20Encoding%2Fdecoding%20anything.%0D%0APython%20library%20extending%20the%20native%20codecs%20library%20with%20many%20new%20encodings%20and%20providing%20CLI%20tools%20with%20a%20guess%20feature%20based%20on%20AI.%0D%0Ahttps%3a%2f%2fgithub%2ecom%2fdhondta%2fpython-codext%0D%0A&hashtags=python,programming,encodings,codecs,cryptography,morse,base,ctftools"><img src="https://img.shields.io/badge/Tweet--lightgrey?logo=twitter&style=social" alt="Tweet" height="20"/></a></h1>
701
701
  <h3 align="center">Encode/decode anything.</h3>
702
702