{ "info": { "author": "Huan Do", "author_email": "doboy0@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "Underscore\n==========\nObfuscating code by changing the variable names to underscores\n\n## Installation\n```\npip install underscore\n```\n\n## Usage\n```\n$ _ [file] > _file.py\n```\nYou can also compile through python\n```python\nfrom underscore import _\n\n_(filename, output_filename)\n```\n\n## Example\n\n###### Input\n```python\n# fib.py\n\ndef fib(n):\n a, b = 0, 1\n for i in xrange(n):\n a, b = b, a + b\n return b\n\nprint fib(10)\n```\n\n###### Output\n```python\n# _fib.py\n\ndef _(_):\n (__, ___) = (0, 1)\n for ____ in xrange(_):\n (__, ___) = (___, __ + ___)\n return ___\nprint _(10)\n```\n\n## Tests\n```\nnosetests\n```", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Doboy/Dunderscore", "keywords": null, "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "Dunderscore", "package_url": "https://pypi.org/project/Dunderscore/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/Dunderscore/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/Doboy/Dunderscore" }, "release_url": "https://pypi.org/project/Dunderscore/0.0.1/", "requires_dist": null, "requires_python": null, "summary": "Obfuscating code by changing the variable names to underscores", "version": "0.0.1" }, "last_serial": 468650, "releases": { "0.0.1": [] }, "urls": [] }