{ "info": { "author": "Victor Stinner", "author_email": "victor.stinner@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "************\ncoz_bytecode\n************\n\n.. image:: https://img.shields.io/pypi/v/bytecode.svg\n :alt: Latest release on the Python Cheeseshop (PyPI)\n :target: https://pypi.python.org/pypi/bytecode\n\n.. image:: https://img.shields.io/travis/vstinner/bytecode/master.svg\n :alt: Build status of bytecode on Travis CI\n :target: https://travis-ci.org/vstinner/bytecode\n\n.. image:: https://img.shields.io/codecov/c/github/vstinner/bytecode/master.svg\n :alt: Code coverage of bytecode on codecov.io\n :target: https://codecov.io/github/vstinner/bytecode\n\n``bytecode`` is a Python module to generate and modify bytecode.\n\n* `bytecode project homepage at GitHub\n `_ (code, bugs)\n* `bytecode documentation\n `_\n* `Download latest bytecode release at the Python Cheeseshop (PyPI)\n `_\n\n\nThis is a fork of https://github.com/vstinner/bytecode\n\nIt will be removed from Pypi once the original is deployed there.\n\nInstall bytecode: ``python3 -m pip install coz_bytecode``. It requires Python 3.4\nor newer.\n\nExample executing ``print('Hello World!')``::\n\n from bytecode import Instr, Bytecode\n\n bytecode = Bytecode([Instr(\"LOAD_NAME\", 'print'),\n Instr(\"LOAD_CONST\", 'Hello World!'),\n Instr(\"CALL_FUNCTION\", 1),\n Instr(\"POP_TOP\"),\n Instr(\"LOAD_CONST\", None),\n Instr(\"RETURN_VALUE\")])\n code = bytecode.to_code()\n exec(code)\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/localhuman/bytecode", "keywords": "", "license": "MIT license", "maintainer": "", "maintainer_email": "", "name": "coz-bytecode", "package_url": "https://pypi.org/project/coz-bytecode/", "platform": "", "project_url": "https://pypi.org/project/coz-bytecode/", "project_urls": { "Homepage": "https://github.com/localhuman/bytecode" }, "release_url": "https://pypi.org/project/coz-bytecode/0.5.1/", "requires_dist": [ "aenum (>=2.0)" ], "requires_python": "", "summary": "Python module to generate and modify bytecode (Temporary CoZ Fork)", "version": "0.5.1" }, "last_serial": 3719770, "releases": { "0.5.1": [ { "comment_text": "", "digests": { "md5": "17af2b9d492f2e58b72ea3ff8d074f09", "sha256": "36a944a9c9d340f7fdc9d04a0cdf8580cf9ddfc471db9e631145824934584cb2" }, "downloads": -1, "filename": "coz_bytecode-0.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "17af2b9d492f2e58b72ea3ff8d074f09", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 39456, "upload_time": "2018-03-30T13:38:46", "url": "https://files.pythonhosted.org/packages/7e/96/72132b21d49ef06bd927ffd3c8bb352fa404f32c7a08ca4cad05ded9d1ee/coz_bytecode-0.5.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4106d1dc6323ebca2d5bd80c04b9f9b3", "sha256": "d1ac2488ce793bbd4b48a9dd1fa981dcb1cc984b375d0250b6efd4ca1a278244" }, "downloads": -1, "filename": "coz_bytecode-0.5.1.tar.gz", "has_sig": false, "md5_digest": "4106d1dc6323ebca2d5bd80c04b9f9b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49650, "upload_time": "2018-03-30T13:39:55", "url": "https://files.pythonhosted.org/packages/13/f3/8f552174fee1e26fed209f68d738885f31b83c727390e5b6827faa9f4827/coz_bytecode-0.5.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "17af2b9d492f2e58b72ea3ff8d074f09", "sha256": "36a944a9c9d340f7fdc9d04a0cdf8580cf9ddfc471db9e631145824934584cb2" }, "downloads": -1, "filename": "coz_bytecode-0.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "17af2b9d492f2e58b72ea3ff8d074f09", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 39456, "upload_time": "2018-03-30T13:38:46", "url": "https://files.pythonhosted.org/packages/7e/96/72132b21d49ef06bd927ffd3c8bb352fa404f32c7a08ca4cad05ded9d1ee/coz_bytecode-0.5.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4106d1dc6323ebca2d5bd80c04b9f9b3", "sha256": "d1ac2488ce793bbd4b48a9dd1fa981dcb1cc984b375d0250b6efd4ca1a278244" }, "downloads": -1, "filename": "coz_bytecode-0.5.1.tar.gz", "has_sig": false, "md5_digest": "4106d1dc6323ebca2d5bd80c04b9f9b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49650, "upload_time": "2018-03-30T13:39:55", "url": "https://files.pythonhosted.org/packages/13/f3/8f552174fee1e26fed209f68d738885f31b83c727390e5b6827faa9f4827/coz_bytecode-0.5.1.tar.gz" } ] }