pycompileo


Namepycompileo JSON
Version 1.3.2 PyPI version JSON
download
home_pageNone
SummaryPython Code Obfuscator.
upload_time2024-10-06 08:37:41
maintainerNone
docs_urlNone
authorSchkimansky
requires_pythonNone
licenseNone
keywords python compile decompile proprietarify obfuscate code obfuscation
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
## Pycompileo
This is a python code obfuscator. It works by compiling your code to .pyc.
Which cant be *easily* decompiled for python version 3.9 (and higher).

# Usage
The following code will take a package, obfuscate it 
and return a new package with .pyc files instead of .py files.
```python
import pycompileo
pycompileo.obfuscate_package('your_module', 'obfuscated_module')
```

Now you can import this new obfuscated module:
```python
import obfuscated_module

# Note that there wont be syntax highlighting
# for .pyc files. Only use when you dont need
# syntax highlighting.

obfuscated_module.super_secret_code()
```

Everything should really be self explanatory. 
You can reach out to me at `ahmadchawla1432@gmail.com` 
for additional questions.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pycompileo",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "python, compile, decompile, proprietarify, obfuscate, code, obfuscation",
    "author": "Schkimansky",
    "author_email": "<ahmadchawla1432@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/77/a1/ce35b98f53690ec83c99c20a7a98d84a1aec16947186f9fe81ada5c3e393/pycompileo-1.3.2.tar.gz",
    "platform": null,
    "description": "\n## Pycompileo\nThis is a python code obfuscator. It works by compiling your code to .pyc.\nWhich cant be *easily* decompiled for python version 3.9 (and higher).\n\n# Usage\nThe following code will take a package, obfuscate it \nand return a new package with .pyc files instead of .py files.\n```python\nimport pycompileo\npycompileo.obfuscate_package('your_module', 'obfuscated_module')\n```\n\nNow you can import this new obfuscated module:\n```python\nimport obfuscated_module\n\n# Note that there wont be syntax highlighting\n# for .pyc files. Only use when you dont need\n# syntax highlighting.\n\nobfuscated_module.super_secret_code()\n```\n\nEverything should really be self explanatory. \nYou can reach out to me at `ahmadchawla1432@gmail.com` \nfor additional questions.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Python Code Obfuscator.",
    "version": "1.3.2",
    "project_urls": null,
    "split_keywords": [
        "python",
        " compile",
        " decompile",
        " proprietarify",
        " obfuscate",
        " code",
        " obfuscation"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0736d1bb1f390ade975f4d2901cea4e46a64af19e5420c0265f0176c97bcf1a8",
                "md5": "218906f1083c66a71a3fefd36c6e9ee5",
                "sha256": "7725c6c06a2e52dd6783b0640da2a4fa2afc7c84c238cc4cc59c35229dc549e6"
            },
            "downloads": -1,
            "filename": "pycompileo-1.3.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "218906f1083c66a71a3fefd36c6e9ee5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 7426,
            "upload_time": "2024-10-06T08:37:39",
            "upload_time_iso_8601": "2024-10-06T08:37:39.674768Z",
            "url": "https://files.pythonhosted.org/packages/07/36/d1bb1f390ade975f4d2901cea4e46a64af19e5420c0265f0176c97bcf1a8/pycompileo-1.3.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77a1ce35b98f53690ec83c99c20a7a98d84a1aec16947186f9fe81ada5c3e393",
                "md5": "87d9dcffced150cfa6ab230f53ae0bf8",
                "sha256": "707c66960eef9cfc12a3fd15d95ea69b991fb99a7c28a31b52ab4a341fff0f0e"
            },
            "downloads": -1,
            "filename": "pycompileo-1.3.2.tar.gz",
            "has_sig": false,
            "md5_digest": "87d9dcffced150cfa6ab230f53ae0bf8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 5446,
            "upload_time": "2024-10-06T08:37:41",
            "upload_time_iso_8601": "2024-10-06T08:37:41.459828Z",
            "url": "https://files.pythonhosted.org/packages/77/a1/ce35b98f53690ec83c99c20a7a98d84a1aec16947186f9fe81ada5c3e393/pycompileo-1.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-06 08:37:41",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pycompileo"
}
        
Elapsed time: 1.80861s