{ "info": { "author": "utahta", "author_email": "labs.ninxit@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2.4", "Programming Language :: Python :: 2.5", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.1", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Topic :: Software Development :: Build Tools" ], "description": "Deprecated\n==========\n\nThis project is no longer under active development.\n\nYou are encouraged to try out `pyenv `_ instead.\n\nOverview\n========\n\npythonbrew is a program to automate the building and installation of Python in the users $HOME.\n\npythonbrew is inspired by `perlbrew `_ and `rvm `_.\n\nInstallation\n============\n\nThe recommended way to download and install pythonbrew is to run these statements in your shell::\n\n curl -kL http://xrl.us/pythonbrewinstall | bash\n\nAfter that, pythonbrew installs itself to ~/.pythonbrew. \n\nPlease add the following line to the end of your ~/.bashrc::\n\n [[ -s $HOME/.pythonbrew/etc/bashrc ]] && source $HOME/.pythonbrew/etc/bashrc\n\nIf you need to install pythonbrew into somewhere else, you can do that by setting a PYTHONBREW_ROOT environment variable::\n\n export PYTHONBREW_ROOT=/path/to/pythonbrew\n curl -kLO http://xrl.us/pythonbrewinstall\n chmod +x pythonbrewinstall\n ./pythonbrewinstall\n\nReadline Support\n----------------\n\nPython uses a library called `readline` to allow line editing and command history. If you use Python interactively, it is recommended to install both the `readline` library and its headers. Otherwise, the arrow keys won't work in the Python interactive shell.\n\nOn Debian and Ubuntu systems, the required package is called `libreadline-dev`. On Fedora, Red Hat, and CentOS, the package is called `readline-devel`. No extra packages are required on Arch or Gentoo.\n\nThe `readline` support package must be installed before Python in order to work properly.\n\nFor Systemwide(Multi-User) installation\n---------------------------------------\n\nIf the install script is run as root, pythonbrew will automatically install into /usr/local/pythonbrew.\n\nThe pythonbrew will be automatically configured for every user on the system if you install as root.\n\nAfter installation, where you would normally use `sudo`, non-root users will need to use `sudopybrew`::\n\n sudopybrew install -v -j2 2.7.2\n\nUsage\n=====\n\npythonbrew command [options]\n \nInstall some pythons::\n\n pythonbrew install 2.7.2\n pythonbrew install --verbose 2.7.2\n pythonbrew install --test 2.7.2\n pythonbrew install --test --force 2.7.2\n pythonbrew install --configure=\"CC=gcc_4.1\" 2.7.2\n pythonbrew install --no-setuptools 2.7.2\n pythonbrew install http://www.python.org/ftp/python/2.7/Python-2.7.2.tgz\n pythonbrew install /path/to/Python-2.7.2.tgz\n pythonbrew install /path/to/Python-2.7.2\n pythonbrew install 2.7.2 3.2\n \nPermanently use the specified python::\n\n pythonbrew switch 2.7.2\n pythonbrew switch 3.2\n\nUse the specified python in current shell::\n\n pythonbrew use 2.7.2\n\nRuns a named python file against specified and/or all pythons::\n\n pythonbrew py test.py\n pythonbrew py -v test.py # Show verbose output\n pythonbrew py -p 2.7.2 -p 3.2 test.py # Use the specified pythons\n\nList the installed pythons::\n\n pythonbrew list\n\nList the available installation pythons::\n\n pythonbrew list -k\n\nUninstall the specified python::\n\n pythonbrew uninstall 2.7.2\n pythonbrew uninstall 2.7.2 3.2\n\nRemove stale source folders and archives::\n\n pythonbrew cleanup\n\nUpgrades pythonbrew to the latest version::\n\n pythonbrew update\n pythonbrew update --master\n pythonbrew update --develop\n\nDisable pythonbrew::\n\n pythonbrew off\n \nCreate/Remove a symbolic link to python (in a directory on your $PATH)::\n\n pythonbrew symlink # Create a symbolic link, like \"py2.7.2\", for each installed version\n pythonbrew symlink -p 2.7.2\n pythonbrew symlink pip # Create a symbolic link to the specified script in bin directory\n pythonbrew symlink -r # Remove a symbolic link\n pythonbrew symlink -v foo # Create a symbolic link to the specified virtual environment python in bin directory\n\nRuns the buildout with specified or current using python::\n \n pythonbrew buildout\n pythonbrew buildout -p 2.6.6\n\nCreate isolated python environments (uses virtualenv)::\n \n pythonbrew venv init\n pythonbrew venv create proj\n pythonbrew venv list\n pythonbrew venv use proj\n pythonbrew venv delete proj\n pythonbrew venv rename proj proj2\n\nShow version::\n\n pythonbrew version\n\nCOMMANDS\n========\n\ninstall \n Build and install the given version of python.\n Install setuptools and pip automatically.\n\nswitch \n Permanently use the specified python as default.\n\nuse \n Use the specified python in current shell.\n\npy \n Runs a named python file against specified and/or all pythons.\n\nlist\n List the installed all pythons.\n \nlist -k \n List the available install pythons.\n \nuninstall \n Uninstall the given version of python.\n\ncleanup\n Remove stale source folders and archives.\n\nupdate\n Upgrades pythonbrew to the latest version.\n\noff\n Disable pythonbrew.\n \nsymlink\n Create/Remove a symbolic link to python (in a directory on your $PATH)\n \nbuildout\n Runs the buildout with specified or current using python.\n \nvenv\n Create isolated python environments (uses virtualenv)\n \nversion\n Show version.\n \nSee more details below\n `pythonbrew help `\n\nChangelog\n=========\n\n1.3.6 (2015-06-20)\n------------------\n\n- Fixed issue #145 Fix setuptools url and updated for new pythons\n\n\n1.3.5 (2014-07-05)\n------------------\n\n- Fixed issue #140 Add Python 2.7.6 as latest 2.x release\n- Fixed issue #142 fix syntax error in pythonbrew/etc/bashrc\n\n1.3.4 (2013-07-14)\n------------------\n\n- Fixed issue #107 Fix curl version incompatibilities\n- Fixed issue #109 Remove bogus -n command line arg\n- Fixed issue #118 Fix compilation of Python 2.6.2 and earlier.\n- Fixed issue #120 remove venv create -n option; add a venv create -g option\n- Fixed issue #122 Support Python 2.7.4\n- Fixed issue #123 Updated for new pythons\n- Fixed issue #124 Add Python 2.7.4 and Fix `No module named _sqlite3` for 2.7.4\n- Fixed issue #126 fishshell equivalent of etc/bashrc\n- Fixed issue #133 Python-2.7.5 added to pythonbrew/etc/config.cfg\n\n1.3.3 (2013-01-02)\n------------------\n\n- Fixed bug: venv rename\n- develop option removed from `update` command\n\n\n1.3.2 (2012-12-30)\n------------------\n\n- Improved `venv` command.\n\n1.3.1 (2012-12-25)\n------------------\n\n- Fixed issue #80 Python 2.5: Undefine _POSIX_C_SOURCE on Lion to fix 8-byte strings from socket.inet_aton()\n- Fixed issue #86\tFix for #85: Python 2.6.5's SSL Module fails to build on Ubuntu 11.10+\n- Fixed issue #87 Documentation for getting libreadline to work\n- Fixed issue #88 Add Python 2.6.8 to config.cfg\n- Fixed issue #90 Create pythonbrew_systemwide script entrypoint\n- Fixed issue #94 Fix `No module named _sqlite3` on CentOS 5\n- Fixed issue #96 Added Python-3.3.0 to config.cfg.\n- Fixed issue #98 Enhancement: cloning a virtual environment\n\n1.3 (2012-04-21)\n----------------\n\n- Fixed issue #62,#70 Pythonbrew's bashrc $PATH error\n- Fixed issue #74,#76 pythonbrew does not update $PYTHONPATH when changing environments\n- Fixed issue #75 Replace the absolute path of the user's home with $HOME\n- Fixed issue #68 update to 1.2 fails on OS X 10.7.3\n\n1.2 (2012-04-15)\n----------------\n\n- Fixed issue #54 pythonbrew off` doesn't deactivate the virtualenv (unset the VIRTUAL_ENV env. variable)\n- Added 2.7.3, 3.2.2, 3.2.3\n- Added rename and print_activate command for venv (issue #50)\n- Fixed issue #52 Apply patch for 2.6.5 and earlier\n- Skip tests by default\n- Added --test option for install\n- Removed --no-test option for install\n\n1.1 (2011-08-29)\n----------------\n\n- Added --framework, --universal and --static options to install command.\n\nMore\n----\n\nsee the `pythonbrew/Changelog `_", "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/utahta/pythonbrew", "keywords": "pythonbrew pip easy_install distutils setuptools virtualenv", "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "pythonbrew", "package_url": "https://pypi.org/project/pythonbrew/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/pythonbrew/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/utahta/pythonbrew" }, "release_url": "https://pypi.org/project/pythonbrew/1.3.6/", "requires_dist": null, "requires_python": null, "summary": "Manage python installations in your $HOME", "version": "1.3.6" }, "last_serial": 1600064, "releases": { "0.6.7": [ { "comment_text": "", "digests": { "md5": "e54555edc50162df583dae92b2c665f8", "sha256": "19eef79bf919c8b714e9ab7fd3d738a51057ec7c47f180951b6aa21e7ed3b623" }, "downloads": -1, "filename": "pythonbrew-0.6.7.tar.gz", "has_sig": false, "md5_digest": "e54555edc50162df583dae92b2c665f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36003, "upload_time": "2010-12-09T17:29:22", "url": "https://files.pythonhosted.org/packages/0d/30/d91821867e8461be5cb7c88b5e072aa2eedca103076ff8137a4244a3a83d/pythonbrew-0.6.7.tar.gz" } ], "0.6.8": [ { "comment_text": "", "digests": { "md5": "2d57444f8052e8355e198a1f205c34b4", "sha256": "c81d502ae0390dee3ef34ccf3b4e2cdb63701ea50ecf59e73ec6eda6563de2ea" }, "downloads": -1, "filename": "pythonbrew-0.6.8.tar.gz", "has_sig": false, "md5_digest": "2d57444f8052e8355e198a1f205c34b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34035, "upload_time": "2011-03-17T12:24:53", "url": "https://files.pythonhosted.org/packages/f5/04/0ae7e7fb3e3cbf3a505fdebbf79b28ce5ab481f56253f833c83389e765aa/pythonbrew-0.6.8.tar.gz" } ], "0.6.9": [ { "comment_text": "", "digests": { "md5": "3a81fd7dbca5f5c8b7c0936c175b087d", "sha256": "b1a4e8e2d6daa9279398b8846cf40bf359a1e7764e9b16ab031d070ad1bdc849" }, "downloads": -1, "filename": "pythonbrew-0.6.9.tar.gz", "has_sig": false, "md5_digest": "3a81fd7dbca5f5c8b7c0936c175b087d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35530, "upload_time": "2011-03-19T20:09:53", "url": "https://files.pythonhosted.org/packages/c6/b8/1749e030d4b4564a5bd8077263e0ac06acc21a9503d7a081c9e91cc45857/pythonbrew-0.6.9.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "9aff54a073637aa76d9c2ad957f60c3d", "sha256": "7977cbb63be2953431225916ed028002a36c93b9bb067aa26c18aa985f91e8e6" }, "downloads": -1, "filename": "pythonbrew-0.7.tar.gz", "has_sig": false, "md5_digest": "9aff54a073637aa76d9c2ad957f60c3d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35945, "upload_time": "2011-03-22T17:27:19", "url": "https://files.pythonhosted.org/packages/2c/34/0839e4a89b37fbebd1a87b25b701d85e5bcb224be65f2de364ac49968ac3/pythonbrew-0.7.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "9a7770057ee4b16a889c381a9a1c0151", "sha256": "46a828bd94da07722b51cc89148d69334ad335b9b161e6fe30f4fc0dcdfa30e2" }, "downloads": -1, "filename": "pythonbrew-0.7.1.tar.gz", "has_sig": false, "md5_digest": "9a7770057ee4b16a889c381a9a1c0151", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36917, "upload_time": "2011-04-17T15:36:09", "url": "https://files.pythonhosted.org/packages/7b/c2/36ecd63a3d448c5eb2d9026f3e3e4a258900176b31280f9fc237b38509e3/pythonbrew-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "a4d4c4ed2e10153dd85006edddff180a", "sha256": "ef4208e9bc20755dae5005f269c631568332346ec19d389eee3c64c5529cb898" }, "downloads": -1, "filename": "pythonbrew-0.7.2.tar.gz", "has_sig": false, "md5_digest": "a4d4c4ed2e10153dd85006edddff180a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39274, "upload_time": "2011-05-02T11:09:06", "url": "https://files.pythonhosted.org/packages/90/b5/db3cb1f3234866bdae155ad8fdddbab6cea948e5f39a621717344e2bb812/pythonbrew-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "5b8fb90033329cf729f2d439090a6291", "sha256": "cbb5a7a3c591440ddc55998249eb91212520fe10d9158cdef98e7fb988d26cfc" }, "downloads": -1, "filename": "pythonbrew-0.7.3.tar.gz", "has_sig": false, "md5_digest": "5b8fb90033329cf729f2d439090a6291", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39714, "upload_time": "2011-05-25T13:17:09", "url": "https://files.pythonhosted.org/packages/ee/06/757839129af3a202e16372479dfc55b205e48823adf24f35029788cfc96d/pythonbrew-0.7.3.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "21f4c0c14c81a8bb1cab179906abb8f9", "sha256": "86e51c341fbc002d05e1d23f28d645888a852f51af7f6d9cec0b136520a40032" }, "downloads": -1, "filename": "pythonbrew-0.8.tar.gz", "has_sig": false, "md5_digest": "21f4c0c14c81a8bb1cab179906abb8f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41187, "upload_time": "2011-07-10T17:23:30", "url": "https://files.pythonhosted.org/packages/ad/98/13dbffdf601ac2b6549bdc7f2dc4e8a2ab20fff8edb58f27fd83e830d72d/pythonbrew-0.8.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "cd46578193cca61e6b7cb5ac217e6202", "sha256": "117014f44053c5b5d4c0e05f33e59f0f6c4ab47e4dcf87a8ed6740340e838e75" }, "downloads": -1, "filename": "pythonbrew-0.9.tar.gz", "has_sig": false, "md5_digest": "cd46578193cca61e6b7cb5ac217e6202", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43495, "upload_time": "2011-07-22T12:11:09", "url": "https://files.pythonhosted.org/packages/68/3d/8d7d267dc2e3f7c0844d7ddf720c08416cc67e7156dd5c5bf622f21a0d8d/pythonbrew-0.9.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "202951bccccaf722a1e75fc3f5f3f387", "sha256": "39bf51aa216c43a148aa35f548929e4557507636cadf210af7a719f59e386a21" }, "downloads": -1, "filename": "pythonbrew-1.0.tar.gz", "has_sig": false, "md5_digest": "202951bccccaf722a1e75fc3f5f3f387", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44352, "upload_time": "2011-08-07T20:10:12", "url": "https://files.pythonhosted.org/packages/51/21/04c2886901eff02c17cac875f77ba2887e04ad8d265b28abfbb1aba56350/pythonbrew-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "d961048975a4028d5b363978bbc2f752", "sha256": "e583931f2a2837b8f9f0d7d3f4cd742727d682422a288e8a2e9269917c7c563c" }, "downloads": -1, "filename": "pythonbrew-1.1.tar.gz", "has_sig": false, "md5_digest": "d961048975a4028d5b363978bbc2f752", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45743, "upload_time": "2011-08-29T11:01:51", "url": "https://files.pythonhosted.org/packages/60/08/f29278f50f9c423c929c16a21f3dbc66f47db18f99d62099d981305cf848/pythonbrew-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "8e3d1fd9fcb08bb3df8c2d4ace826499", "sha256": "033d5a2443d1719ea634046b0fc1ee6e9ebffa2ea9efe29bc3a87731b364c193" }, "downloads": -1, "filename": "pythonbrew-1.2.tar.gz", "has_sig": false, "md5_digest": "8e3d1fd9fcb08bb3df8c2d4ace826499", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45887, "upload_time": "2012-04-15T08:56:16", "url": "https://files.pythonhosted.org/packages/a8/a5/7377e26b633ccaf10835499051476ba4b6a3e18f19697f264a1d48893d1e/pythonbrew-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "75714c94286ebd14fe13c1ac8ea2484f", "sha256": "e8aa5a0e2f3962acb9ca27944455eb32d2575802c91f7bf846982e4f21e23aff" }, "downloads": -1, "filename": "pythonbrew-1.3.tar.gz", "has_sig": false, "md5_digest": "75714c94286ebd14fe13c1ac8ea2484f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45467, "upload_time": "2012-04-21T13:14:12", "url": "https://files.pythonhosted.org/packages/bc/09/8777be48f08e283e0b657127d9d3c725242544cd6e5fb3b7049f6e48987d/pythonbrew-1.3.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "06503603a4f318d99f869d63f5a87d9f", "sha256": "7e36b753f45786c20f562b627fdd065a176b2aa6ef28377c9917f3ed06e049d4" }, "downloads": -1, "filename": "pythonbrew-1.3.1.tar.gz", "has_sig": false, "md5_digest": "06503603a4f318d99f869d63f5a87d9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51422, "upload_time": "2012-12-25T06:26:11", "url": "https://files.pythonhosted.org/packages/0f/31/a5807023ce61831fd5c767cb23128acb8e636cadbfc7cd912ff4bd4562db/pythonbrew-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "20ae509fbdebcb6fc1d60e65637a2738", "sha256": "c63fce74a62912e6a671b6d9c729b7c7a823f4a166e7d495ea8fb4c0fecbf6ee" }, "downloads": -1, "filename": "pythonbrew-1.3.2.tar.gz", "has_sig": false, "md5_digest": "20ae509fbdebcb6fc1d60e65637a2738", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51510, "upload_time": "2012-12-30T11:09:47", "url": "https://files.pythonhosted.org/packages/c0/6c/fc65933465792310549590b0d8278f4caae548985980367d51601608fb83/pythonbrew-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "8a5b30701602f3d8a450a90da1ad03e2", "sha256": "e9b6cf374694825d7e0efc814df00143192463a0f3db1d6f494504667f615bd0" }, "downloads": -1, "filename": "pythonbrew-1.3.3.tar.gz", "has_sig": false, "md5_digest": "8a5b30701602f3d8a450a90da1ad03e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51254, "upload_time": "2013-01-02T15:14:57", "url": "https://files.pythonhosted.org/packages/a5/1d/bf051e4da345a4ac2ce9f1d4e55a0e8e99f027a95bd53410734e0b9d493d/pythonbrew-1.3.3.tar.gz" } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "7f77a0b4ab450f982a9df334cbfc2f91", "sha256": "dfe3d0c7e713666dd7d8cdbc5c7f6576497800488040f77c4a3f47f86d9ecc66" }, "downloads": -1, "filename": "pythonbrew-1.3.4.tar.gz", "has_sig": false, "md5_digest": "7f77a0b4ab450f982a9df334cbfc2f91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51246, "upload_time": "2013-07-14T08:10:42", "url": "https://files.pythonhosted.org/packages/33/fa/13e337e32e2ccc3d1d02c94dc55cc3140b192574a31d7fd478285f8e3efa/pythonbrew-1.3.4.tar.gz" } ], "1.3.5": [ { "comment_text": "", "digests": { "md5": "ccf194a69a7909a08743efb40bf8ca31", "sha256": "2a17f4e229d5e4844596fb844358d81a9d8fbe7d1721e75625e4b6ba98d7ebc3" }, "downloads": -1, "filename": "pythonbrew-1.3.5.tar.gz", "has_sig": false, "md5_digest": "ccf194a69a7909a08743efb40bf8ca31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51229, "upload_time": "2014-07-05T14:55:03", "url": "https://files.pythonhosted.org/packages/75/9a/48a521b204a409fb448b0e82b6d2776a20479a003bc004672e5d6a52a544/pythonbrew-1.3.5.tar.gz" } ], "1.3.6": [ { "comment_text": "", "digests": { "md5": "aa968680a8b61fdc034ce01b31311614", "sha256": "8abae704064b23f02eb0da5ceb591791a2c310a60fc30e149532464ddda6317c" }, "downloads": -1, "filename": "pythonbrew-1.3.6.tar.gz", "has_sig": false, "md5_digest": "aa968680a8b61fdc034ce01b31311614", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51641, "upload_time": "2015-06-20T12:31:34", "url": "https://files.pythonhosted.org/packages/89/b5/6998118661bdcbb9353e00dbe890e966dd3047d4d6d69c8bbd78c3f70e4e/pythonbrew-1.3.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "aa968680a8b61fdc034ce01b31311614", "sha256": "8abae704064b23f02eb0da5ceb591791a2c310a60fc30e149532464ddda6317c" }, "downloads": -1, "filename": "pythonbrew-1.3.6.tar.gz", "has_sig": false, "md5_digest": "aa968680a8b61fdc034ce01b31311614", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51641, "upload_time": "2015-06-20T12:31:34", "url": "https://files.pythonhosted.org/packages/89/b5/6998118661bdcbb9353e00dbe890e966dd3047d4d6d69c8bbd78c3f70e4e/pythonbrew-1.3.6.tar.gz" } ] }