alibabacloud-code-tool
Advanced tools
| [console_scripts] | ||
| alibabacloud = alibabacloud.runner:main | ||
| Metadata-Version: 2.1 | ||
| Name: alibabacloud-code-tool | ||
| Version: 2.0.3 | ||
| Summary: Alibaba Cloud SDK Python Code Encryption Tool (Obfuscated) | ||
| Home-page: https://github.com/aliyun/alibabacloud-sdk-python | ||
| Author: Alibaba Cloud Computing Co., Ltd. | ||
| Author-email: sdk@alibabacloud.com | ||
| License: UNKNOWN | ||
| Keywords: alibabacloud sdk encryption python obfuscated | ||
| Platform: UNKNOWN | ||
| Classifier: Development Status :: 4 - Beta | ||
| Classifier: Intended Audience :: Developers | ||
| Classifier: License :: OSI Approved :: Apache Software License | ||
| Classifier: Programming Language :: Python :: 3 | ||
| Classifier: Programming Language :: Python :: 3.10 | ||
| Classifier: Programming Language :: Python :: 3.11 | ||
| Classifier: Programming Language :: Python :: 3.12 | ||
| Classifier: Programming Language :: Python :: 3.13 | ||
| Classifier: Topic :: Software Development :: Libraries :: Python Modules | ||
| Classifier: Topic :: Security | ||
| Requires-Python: >=3.10 | ||
| Description-Content-Type: text/markdown | ||
| # Alibaba Cloud SDK (Obfuscated) | ||
| This package is obfuscated for security purposes. | ||
| ## Installation | ||
| ```bash | ||
| pip install . | ||
| ``` | ||
| ## Usage | ||
| ```bash | ||
| alibabacloud <encrypted_file.py> | ||
| ``` | ||
| ## Compatibility | ||
| - Python 3.10 - 3.13 | ||
| - Linux (primary), Windows, macOS | ||
| README.md | ||
| setup.py | ||
| ./alibabacloud/__init__.py | ||
| ./alibabacloud/__main__.py | ||
| ./alibabacloud/decrypt.py | ||
| ./alibabacloud/runner.py | ||
| alibabacloud_code_tool.egg-info/PKG-INFO | ||
| alibabacloud_code_tool.egg-info/SOURCES.txt | ||
| alibabacloud_code_tool.egg-info/dependency_links.txt | ||
| alibabacloud_code_tool.egg-info/entry_points.txt | ||
| alibabacloud_code_tool.egg-info/top_level.txt |
| alibabacloud |
+45
| Metadata-Version: 2.1 | ||
| Name: alibabacloud_code_tool | ||
| Version: 2.0.3 | ||
| Summary: Alibaba Cloud SDK Python Code Encryption Tool (Obfuscated) | ||
| Home-page: https://github.com/aliyun/alibabacloud-sdk-python | ||
| Author: Alibaba Cloud Computing Co., Ltd. | ||
| Author-email: sdk@alibabacloud.com | ||
| License: UNKNOWN | ||
| Keywords: alibabacloud sdk encryption python obfuscated | ||
| Platform: UNKNOWN | ||
| Classifier: Development Status :: 4 - Beta | ||
| Classifier: Intended Audience :: Developers | ||
| Classifier: License :: OSI Approved :: Apache Software License | ||
| Classifier: Programming Language :: Python :: 3 | ||
| Classifier: Programming Language :: Python :: 3.10 | ||
| Classifier: Programming Language :: Python :: 3.11 | ||
| Classifier: Programming Language :: Python :: 3.12 | ||
| Classifier: Programming Language :: Python :: 3.13 | ||
| Classifier: Topic :: Software Development :: Libraries :: Python Modules | ||
| Classifier: Topic :: Security | ||
| Requires-Python: >=3.10 | ||
| Description-Content-Type: text/markdown | ||
| # Alibaba Cloud SDK (Obfuscated) | ||
| This package is obfuscated for security purposes. | ||
| ## Installation | ||
| ```bash | ||
| pip install . | ||
| ``` | ||
| ## Usage | ||
| ```bash | ||
| alibabacloud <encrypted_file.py> | ||
| ``` | ||
| ## Compatibility | ||
| - Python 3.10 - 3.13 | ||
| - Linux (primary), Windows, macOS | ||
+20
| # Alibaba Cloud SDK (Obfuscated) | ||
| This package is obfuscated for security purposes. | ||
| ## Installation | ||
| ```bash | ||
| pip install . | ||
| ``` | ||
| ## Usage | ||
| ```bash | ||
| alibabacloud <encrypted_file.py> | ||
| ``` | ||
| ## Compatibility | ||
| - Python 3.10 - 3.13 | ||
| - Linux (primary), Windows, macOS |
| [egg_info] | ||
| tag_build = | ||
| tag_date = 0 | ||
+45
| """ | ||
| Setup script for Alibaba Cloud SDK Encryption Tool (Obfuscated) | ||
| """ | ||
| from setuptools import setup, find_packages | ||
| import os | ||
| # Read README if exists | ||
| readme_path = os.path.join(os.path.dirname(__file__), 'README.md') | ||
| long_description = "" | ||
| if os.path.exists(readme_path): | ||
| with open(readme_path, 'r', encoding='utf-8') as f: | ||
| long_description = f.read() | ||
| setup( | ||
| name='alibabacloud_code_tool', | ||
| version='2.0.3', | ||
| description='Alibaba Cloud SDK Python Code Encryption Tool (Obfuscated)', | ||
| long_description=long_description, | ||
| long_description_content_type='text/markdown', | ||
| author='Alibaba Cloud Computing Co., Ltd.', | ||
| author_email='sdk@alibabacloud.com', | ||
| url='https://github.com/aliyun/alibabacloud-sdk-python', | ||
| packages=find_packages(where='.'), | ||
| package_dir={'': '.'}, | ||
| python_requires='>=3.10', | ||
| install_requires=[], | ||
| entry_points={ | ||
| 'console_scripts': [ | ||
| 'alibabacloud=alibabacloud.runner:main', | ||
| ], | ||
| }, | ||
| classifiers=[ | ||
| 'Development Status :: 4 - Beta', | ||
| 'Intended Audience :: Developers', | ||
| 'License :: OSI Approved :: Apache Software License', | ||
| 'Programming Language :: Python :: 3', | ||
| 'Programming Language :: Python :: 3.10', | ||
| 'Programming Language :: Python :: 3.11', | ||
| 'Programming Language :: Python :: 3.12', | ||
| 'Programming Language :: Python :: 3.13', | ||
| 'Topic :: Software Development :: Libraries :: Python Modules', | ||
| 'Topic :: Security', | ||
| ], | ||
| keywords='alibabacloud sdk encryption python obfuscated', | ||
| ) |
| [console_scripts] | ||
| alibabacloud = alibabacloud.runner:main | ||
-45
| Metadata-Version: 2.1 | ||
| Name: alibabacloud-code-tool | ||
| Version: 2.0.1 | ||
| Summary: Alibaba Cloud SDK Python Code Encryption Tool (Obfuscated) | ||
| Home-page: https://github.com/aliyun/alibabacloud-sdk-python | ||
| Author: Alibaba Cloud Computing Co., Ltd. | ||
| Author-email: sdk@alibabacloud.com | ||
| License: UNKNOWN | ||
| Keywords: alibabacloud sdk encryption python obfuscated | ||
| Platform: UNKNOWN | ||
| Classifier: Development Status :: 4 - Beta | ||
| Classifier: Intended Audience :: Developers | ||
| Classifier: License :: OSI Approved :: Apache Software License | ||
| Classifier: Programming Language :: Python :: 3 | ||
| Classifier: Programming Language :: Python :: 3.10 | ||
| Classifier: Programming Language :: Python :: 3.11 | ||
| Classifier: Programming Language :: Python :: 3.12 | ||
| Classifier: Programming Language :: Python :: 3.13 | ||
| Classifier: Topic :: Software Development :: Libraries :: Python Modules | ||
| Classifier: Topic :: Security | ||
| Requires-Python: >=3.10 | ||
| Description-Content-Type: text/markdown | ||
| # Alibaba Cloud SDK (Obfuscated) | ||
| This package is obfuscated for security purposes. | ||
| ## Installation | ||
| ```bash | ||
| pip install . | ||
| ``` | ||
| ## Usage | ||
| ```bash | ||
| alibabacloud <encrypted_file.py> | ||
| ``` | ||
| ## Compatibility | ||
| - Python 3.10 - 3.13 | ||
| - Linux (primary), Windows, macOS | ||
-9
| alibabacloud/__init__.py,sha256=_8VGV90GkLGqYm2OXkTcsctZOFgQTkae2zdDbIsZhuQ,178 | ||
| alibabacloud/__main__.py,sha256=xt9zAwd75hM0WsTx9a0iEIUfrAHjt5bqedKq7jrAfFU,516 | ||
| alibabacloud/decrypt.py,sha256=Z0ebCVmg1G1cGasWNwp1tb0WqXKkcVOzYE8_GEKCK8s,4327 | ||
| alibabacloud/runner.py,sha256=EHsSvdhBhx_atESKr8YbhtcTFieOHHu1BHeO5-mCKOw,1852 | ||
| alibabacloud_code_tool-2.0.1.dist-info/METADATA,sha256=tFr7tdMps1v-xa3RzWq_FNnULMY_FlyCNJ7UNhBq5Qw,1238 | ||
| alibabacloud_code_tool-2.0.1.dist-info/WHEEL,sha256=hPN0AlP2dZM_3ZJZWP4WooepkmU9wzjGgCLCeFjkHLA,92 | ||
| alibabacloud_code_tool-2.0.1.dist-info/entry_points.txt,sha256=cxo2_cD9SHvDkxrdn6jNIeg-2rTko6JPthSfgn5JSuc,59 | ||
| alibabacloud_code_tool-2.0.1.dist-info/top_level.txt,sha256=6kg1HvWenU0Plb5-tC42crEMeun1pG4VfHz0KR5l_Eg,13 | ||
| alibabacloud_code_tool-2.0.1.dist-info/RECORD,, |
| alibabacloud |
-5
| Wheel-Version: 1.0 | ||
| Generator: bdist_wheel (0.46.3) | ||
| Root-Is-Purelib: true | ||
| Tag: py3-none-any | ||
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
11713
Infinity%13
Infinity%154
Infinity%