python-obfuscation-framework 1.4.1__tar.gz → 1.4.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.
Files changed (155) hide show
  1. {python_obfuscation_framework-1.4.1/python_obfuscation_framework.egg-info → python_obfuscation_framework-1.4.2}/PKG-INFO +32 -9
  2. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/README.md +27 -7
  3. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/__init__.py +6 -1
  4. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2/python_obfuscation_framework.egg-info}/PKG-INFO +32 -9
  5. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/python_obfuscation_framework.egg-info/SOURCES.txt +1 -0
  6. python_obfuscation_framework-1.4.2/python_obfuscation_framework.egg-info/requires.txt +2 -0
  7. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/setup.py +9 -2
  8. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/LICENSE +0 -0
  9. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/MANIFEST.in +0 -0
  10. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/__main__.py +0 -0
  11. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/cli.py +0 -0
  12. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/errors.py +0 -0
  13. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/__init__.py +0 -0
  14. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/argv.py +0 -0
  15. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/base.py +0 -0
  16. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/cpu/__init__.py +0 -0
  17. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/cpu/cpu_count.py +0 -0
  18. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/fs/__init__.py +0 -0
  19. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/fs/directory_exist.py +0 -0
  20. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/fs/directory_list_exist.py +0 -0
  21. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/fs/directory_list_missing.py +0 -0
  22. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/fs/directory_missing.py +0 -0
  23. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/fs/exec_method.py +0 -0
  24. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/fs/executable_path.py +0 -0
  25. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/fs/file_exist.py +0 -0
  26. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/fs/file_list_exist.py +0 -0
  27. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/fs/file_list_missing.py +0 -0
  28. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/fs/file_missing.py +0 -0
  29. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/fs/tmp.py +0 -0
  30. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/hardware/__init__.py +0 -0
  31. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/hardware/ram_count.py +0 -0
  32. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/hooks/__init__.py +0 -0
  33. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/hooks/debugger.py +0 -0
  34. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/hooks/tracemalloc.py +0 -0
  35. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/human/__init__.py +0 -0
  36. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/human/p.py +0 -0
  37. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/human/prompt.py +0 -0
  38. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/integrity.py +0 -0
  39. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/multi.py +0 -0
  40. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/os/__init__.py +0 -0
  41. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/os/domain.py +0 -0
  42. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/os/hostname.py +0 -0
  43. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/os/uid.py +0 -0
  44. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/os/username.py +0 -0
  45. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/processes/__init__.py +0 -0
  46. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/processes/proc_count.py +0 -0
  47. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/time/__init__.py +0 -0
  48. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/time/expire.py +0 -0
  49. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/time/uptime.py +0 -0
  50. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/time/utc.py +0 -0
  51. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/evasion/utils.py +0 -0
  52. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/main.py +0 -0
  53. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/__init__.py +0 -0
  54. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/builtins.py +0 -0
  55. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/cipher/__init__.py +0 -0
  56. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/cipher/deep_encryption.py +0 -0
  57. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/cipher/rc4.py +0 -0
  58. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/cipher/shift.py +0 -0
  59. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/cipher/xor.py +0 -0
  60. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/compression/__init__.py +0 -0
  61. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/compression/bz2.py +0 -0
  62. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/compression/gzip.py +0 -0
  63. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/compression/lzma.py +0 -0
  64. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/compression/zlib.py +0 -0
  65. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/constants.py +0 -0
  66. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/definitions.py +0 -0
  67. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/encoding/__init__.py +0 -0
  68. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/encoding/a85.py +0 -0
  69. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/encoding/b16.py +0 -0
  70. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/encoding/b32.py +0 -0
  71. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/encoding/b32hex.py +0 -0
  72. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/encoding/b64.py +0 -0
  73. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/encoding/b85.py +0 -0
  74. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/encoding/binascii.py +0 -0
  75. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/encoding/snt.py +0 -0
  76. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/esoteric/__init__.py +0 -0
  77. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/esoteric/call.py +0 -0
  78. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/esoteric/doc.py +0 -0
  79. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/esoteric/globals.py +0 -0
  80. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/esoteric/imports.py +0 -0
  81. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/extract_variables.py +0 -0
  82. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/junk/__init__.py +0 -0
  83. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/junk/add_comments.py +0 -0
  84. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/junk/add_newlines.py +0 -0
  85. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/names.py +0 -0
  86. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/names_rope.py +0 -0
  87. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/numbers.py +0 -0
  88. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/other/__init__.py +0 -0
  89. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/other/tokens.py +0 -0
  90. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/remove/__init__.py +0 -0
  91. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/remove/comments.py +0 -0
  92. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/remove/exceptions.py +0 -0
  93. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/remove/indents.py +0 -0
  94. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/remove/loggings.py +0 -0
  95. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/remove/loggings_old.py +0 -0
  96. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/remove/newline.py +0 -0
  97. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/remove/print.py +0 -0
  98. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/restructure.py +0 -0
  99. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/stegano/__init__.py +0 -0
  100. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/stegano/docstrings.py +0 -0
  101. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/stegano/ipv6encoding.py +0 -0
  102. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/stegano/macencoding.py +0 -0
  103. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/stegano/uuidencoding.py +0 -0
  104. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/obfuscator/strings.py +0 -0
  105. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/stager/__init__.py +0 -0
  106. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/stager/cipher/__init__.py +0 -0
  107. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/stager/cipher/rc4.py +0 -0
  108. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/stager/download.py +0 -0
  109. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/stager/image.py +0 -0
  110. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/stager/lots/__init__.py +0 -0
  111. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/stager/lots/cl1pnet.py +0 -0
  112. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/stager/lots/pastebin.py +0 -0
  113. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/stager/lots/pasters.py +0 -0
  114. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/stager/quine.py +0 -0
  115. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/__init__.py +0 -0
  116. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/cipher/__init__.py +0 -0
  117. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/cipher/rc4.py +0 -0
  118. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/cipher/shift.py +0 -0
  119. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/compression/__init__.py +0 -0
  120. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/compression/bz2.py +0 -0
  121. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/compression/gzip.py +0 -0
  122. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/compression/lzma.py +0 -0
  123. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/compression/zlib.py +0 -0
  124. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/encoding/__init__.py +0 -0
  125. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/encoding/a85.py +0 -0
  126. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/encoding/b16.py +0 -0
  127. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/encoding/b3.py +0 -0
  128. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/encoding/b32.py +0 -0
  129. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/encoding/b32hex.py +0 -0
  130. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/encoding/b64.py +0 -0
  131. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/encoding/b85.py +0 -0
  132. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/encoding/binascii.py +0 -0
  133. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/encoding/snt.py +0 -0
  134. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/entropy.py +0 -0
  135. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/extract_names.py +0 -0
  136. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/generator/__init__.py +0 -0
  137. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/generator/advanced.py +0 -0
  138. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/generator/base.py +0 -0
  139. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/generator/basic.py +0 -0
  140. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/generator/names.txt +0 -0
  141. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/generator/unicode.py +0 -0
  142. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/se/__init__.py +0 -0
  143. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/se/homoglyphs.py +0 -0
  144. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/se/homoglyphs.txt +0 -0
  145. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/stegano/__init__.py +0 -0
  146. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/stegano/ipv6encoding.py +0 -0
  147. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/stegano/macencoding.py +0 -0
  148. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/stegano/uuidencoding.py +0 -0
  149. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pof/utils/tokens.py +0 -0
  150. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/pyproject.toml +0 -0
  151. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/python_obfuscation_framework.egg-info/dependency_links.txt +0 -0
  152. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/python_obfuscation_framework.egg-info/entry_points.txt +0 -0
  153. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/python_obfuscation_framework.egg-info/not-zip-safe +0 -0
  154. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/python_obfuscation_framework.egg-info/top_level.txt +0 -0
  155. {python_obfuscation_framework-1.4.1 → python_obfuscation_framework-1.4.2}/setup.cfg +0 -0
@@ -1,10 +1,9 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-obfuscation-framework
3
- Version: 1.4.1
3
+ Version: 1.4.2
4
4
  Summary: Python Obfuscation Framework.
5
5
  Home-page: https://github.com/deoktr/pof
6
6
  Author: deoktr
7
- Author-email:
8
7
  License: GPLv3 license
9
8
  Project-URL: Bug Tracker, https://github.com/deoktr/pof/issues
10
9
  Classifier: Development Status :: 4 - Beta
@@ -20,23 +19,41 @@ Classifier: Programming Language :: Python :: 3.9
20
19
  Classifier: Programming Language :: Python :: 3.10
21
20
  Classifier: Programming Language :: Python :: 3.11
22
21
  Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
23
+ Classifier: Programming Language :: Python :: 3.14
23
24
  Classifier: Topic :: Security
24
25
  Requires-Python: >=3.5
25
26
  Description-Content-Type: text/markdown
26
27
  License-File: LICENSE
28
+ Requires-Dist: rope>=1.0.0
29
+ Requires-Dist: Pillow>=10.0.0
27
30
 
28
31
  # pof
29
32
 
33
+ [![python-obfuscation-framework-pypi](https://img.shields.io/pypi/v/python-obfuscation-framework.svg)](https://pypi.org/project/python-obfuscation-framework)
34
+
30
35
  Python Obfuscation Framework.
31
36
 
32
37
  Combine and chain obfuscation methods on a single Python source file.
33
38
 
39
+ Install:
40
+
41
+ ```bash
42
+ pip install python-obfuscation-framework
43
+ ```
44
+
34
45
  Source:
35
46
 
36
47
  ```python
37
48
  print('Hello, world')
38
49
  ```
39
50
 
51
+ Run:
52
+
53
+ ```bash
54
+ pof src.py > out.py
55
+ ```
56
+
40
57
  Output:
41
58
 
42
59
  ```python
@@ -80,9 +97,17 @@ And finally the 'classical' techniques, names, definitions won't have an impact
80
97
 
81
98
  ## Install
82
99
 
83
- There is 2 installation option, 1 inside a virtualenv, 2 inside a Docker container.
100
+ There are 3 installation options, with PIP, a virtualenv, or a Docker container.
101
+
102
+ ### 1. PIP
103
+
104
+ From [pypi](https://pypi.org/project/python-obfuscation-framework):
105
+
106
+ ```bash
107
+ pip install python-obfuscation-framework
108
+ ```
84
109
 
85
- ### 1. Python
110
+ ### 2. Python
86
111
 
87
112
  ```bash
88
113
  git clone https://github.com/deoktr/pof
@@ -94,9 +119,11 @@ source ./venv/bin/activate
94
119
 
95
120
  This will install pof inside a virtual env, so you'll need to activate it every time you want to use it.
96
121
 
97
- ### 2. Docker
122
+ ### 3. Docker
98
123
 
99
124
  ```bash
125
+ git clone https://github.com/deoktr/pof
126
+ cd pof
100
127
  docker build -t pof .
101
128
  docker run --rm -it pof --help
102
129
  ```
@@ -840,11 +867,7 @@ ruff .
840
867
 
841
868
  ## TODO
842
869
 
843
- - When installing (in setup.py) add txt files, homoglyphs.txt and names.txt
844
870
  - Get the version (in setup.py) from `__init__.py`
845
- - Increase test coverage
846
- - Setup package
847
- - Publish package on pypi
848
871
 
849
872
  ## License
850
873
 
@@ -1,15 +1,29 @@
1
1
  # pof
2
2
 
3
+ [![python-obfuscation-framework-pypi](https://img.shields.io/pypi/v/python-obfuscation-framework.svg)](https://pypi.org/project/python-obfuscation-framework)
4
+
3
5
  Python Obfuscation Framework.
4
6
 
5
7
  Combine and chain obfuscation methods on a single Python source file.
6
8
 
9
+ Install:
10
+
11
+ ```bash
12
+ pip install python-obfuscation-framework
13
+ ```
14
+
7
15
  Source:
8
16
 
9
17
  ```python
10
18
  print('Hello, world')
11
19
  ```
12
20
 
21
+ Run:
22
+
23
+ ```bash
24
+ pof src.py > out.py
25
+ ```
26
+
13
27
  Output:
14
28
 
15
29
  ```python
@@ -53,9 +67,17 @@ And finally the 'classical' techniques, names, definitions won't have an impact
53
67
 
54
68
  ## Install
55
69
 
56
- There is 2 installation option, 1 inside a virtualenv, 2 inside a Docker container.
70
+ There are 3 installation options, with PIP, a virtualenv, or a Docker container.
71
+
72
+ ### 1. PIP
73
+
74
+ From [pypi](https://pypi.org/project/python-obfuscation-framework):
75
+
76
+ ```bash
77
+ pip install python-obfuscation-framework
78
+ ```
57
79
 
58
- ### 1. Python
80
+ ### 2. Python
59
81
 
60
82
  ```bash
61
83
  git clone https://github.com/deoktr/pof
@@ -67,9 +89,11 @@ source ./venv/bin/activate
67
89
 
68
90
  This will install pof inside a virtual env, so you'll need to activate it every time you want to use it.
69
91
 
70
- ### 2. Docker
92
+ ### 3. Docker
71
93
 
72
94
  ```bash
95
+ git clone https://github.com/deoktr/pof
96
+ cd pof
73
97
  docker build -t pof .
74
98
  docker run --rm -it pof --help
75
99
  ```
@@ -813,11 +837,7 @@ ruff .
813
837
 
814
838
  ## TODO
815
839
 
816
- - When installing (in setup.py) add txt files, homoglyphs.txt and names.txt
817
840
  - Get the version (in setup.py) from `__init__.py`
818
- - Increase test coverage
819
- - Setup package
820
- - Publish package on pypi
821
841
 
822
842
  ## License
823
843
 
@@ -16,6 +16,11 @@
16
16
 
17
17
  from pof.main import BaseObfuscator, Obfuscator
18
18
 
19
- __version__ = "1.4.1"
19
+ try:
20
+ from importlib.metadata import version
21
+
22
+ __version__ = version("python-obfuscation-framework")
23
+ except Exception: # noqa: BLE001
24
+ __version__ = "0.0.0"
20
25
 
21
26
  __all__ = ("BaseObfuscator", "Obfuscator", "__version__")
@@ -1,10 +1,9 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-obfuscation-framework
3
- Version: 1.4.1
3
+ Version: 1.4.2
4
4
  Summary: Python Obfuscation Framework.
5
5
  Home-page: https://github.com/deoktr/pof
6
6
  Author: deoktr
7
- Author-email:
8
7
  License: GPLv3 license
9
8
  Project-URL: Bug Tracker, https://github.com/deoktr/pof/issues
10
9
  Classifier: Development Status :: 4 - Beta
@@ -20,23 +19,41 @@ Classifier: Programming Language :: Python :: 3.9
20
19
  Classifier: Programming Language :: Python :: 3.10
21
20
  Classifier: Programming Language :: Python :: 3.11
22
21
  Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
23
+ Classifier: Programming Language :: Python :: 3.14
23
24
  Classifier: Topic :: Security
24
25
  Requires-Python: >=3.5
25
26
  Description-Content-Type: text/markdown
26
27
  License-File: LICENSE
28
+ Requires-Dist: rope>=1.0.0
29
+ Requires-Dist: Pillow>=10.0.0
27
30
 
28
31
  # pof
29
32
 
33
+ [![python-obfuscation-framework-pypi](https://img.shields.io/pypi/v/python-obfuscation-framework.svg)](https://pypi.org/project/python-obfuscation-framework)
34
+
30
35
  Python Obfuscation Framework.
31
36
 
32
37
  Combine and chain obfuscation methods on a single Python source file.
33
38
 
39
+ Install:
40
+
41
+ ```bash
42
+ pip install python-obfuscation-framework
43
+ ```
44
+
34
45
  Source:
35
46
 
36
47
  ```python
37
48
  print('Hello, world')
38
49
  ```
39
50
 
51
+ Run:
52
+
53
+ ```bash
54
+ pof src.py > out.py
55
+ ```
56
+
40
57
  Output:
41
58
 
42
59
  ```python
@@ -80,9 +97,17 @@ And finally the 'classical' techniques, names, definitions won't have an impact
80
97
 
81
98
  ## Install
82
99
 
83
- There is 2 installation option, 1 inside a virtualenv, 2 inside a Docker container.
100
+ There are 3 installation options, with PIP, a virtualenv, or a Docker container.
101
+
102
+ ### 1. PIP
103
+
104
+ From [pypi](https://pypi.org/project/python-obfuscation-framework):
105
+
106
+ ```bash
107
+ pip install python-obfuscation-framework
108
+ ```
84
109
 
85
- ### 1. Python
110
+ ### 2. Python
86
111
 
87
112
  ```bash
88
113
  git clone https://github.com/deoktr/pof
@@ -94,9 +119,11 @@ source ./venv/bin/activate
94
119
 
95
120
  This will install pof inside a virtual env, so you'll need to activate it every time you want to use it.
96
121
 
97
- ### 2. Docker
122
+ ### 3. Docker
98
123
 
99
124
  ```bash
125
+ git clone https://github.com/deoktr/pof
126
+ cd pof
100
127
  docker build -t pof .
101
128
  docker run --rm -it pof --help
102
129
  ```
@@ -840,11 +867,7 @@ ruff .
840
867
 
841
868
  ## TODO
842
869
 
843
- - When installing (in setup.py) add txt files, homoglyphs.txt and names.txt
844
870
  - Get the version (in setup.py) from `__init__.py`
845
- - Increase test coverage
846
- - Setup package
847
- - Publish package on pypi
848
871
 
849
872
  ## License
850
873
 
@@ -149,4 +149,5 @@ python_obfuscation_framework.egg-info/SOURCES.txt
149
149
  python_obfuscation_framework.egg-info/dependency_links.txt
150
150
  python_obfuscation_framework.egg-info/entry_points.txt
151
151
  python_obfuscation_framework.egg-info/not-zip-safe
152
+ python_obfuscation_framework.egg-info/requires.txt
152
153
  python_obfuscation_framework.egg-info/top_level.txt
@@ -9,11 +9,15 @@ root = Path(__file__).parent.resolve()
9
9
 
10
10
  long_description = (root / "README.md").read_text()
11
11
 
12
+ install_requires = [
13
+ "rope>=1.0.0",
14
+ "Pillow>=10.0.0",
15
+ ]
16
+
12
17
  setup(
13
18
  name="python-obfuscation-framework",
14
- version="1.4.1",
19
+ version="1.4.2",
15
20
  author="deoktr",
16
- author_email="",
17
21
  description="Python Obfuscation Framework.",
18
22
  long_description=long_description,
19
23
  long_description_content_type="text/markdown",
@@ -36,9 +40,12 @@ setup(
36
40
  "Programming Language :: Python :: 3.10",
37
41
  "Programming Language :: Python :: 3.11",
38
42
  "Programming Language :: Python :: 3.12",
43
+ "Programming Language :: Python :: 3.13",
44
+ "Programming Language :: Python :: 3.14",
39
45
  "Topic :: Security",
40
46
  ],
41
47
  packages=find_packages(include=["pof", "pof.*"]),
48
+ install_requires=install_requires,
42
49
  python_requires=">=3.5",
43
50
  entry_points={
44
51
  "console_scripts": [