{ "info": { "author": "chankongching", "author_email": "chankongching@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2.7", "Topic :: Software Development :: Build Tools" ], "description": "# BootDev\n\nCommand line tool to deploy auto-scaling architecture with chef DevOps management.\n\n## Install\nThere are a few different ways you can install pyechonest:\n\n* Use setuptools: `easy_install -U pyechonest`\n* Download the zipfile from the [releases](https://github.com/echonest/pyechonest/releases) page and install it. \n* Checkout the source: `git clone git://github.com/echonest/pyechonest.git` and install it yourself.\n \n## Getting Started\n* Install Pyechonest\n* **Get an API key** - to use the Echo Nest API you need an Echo Nest API key. You can get one for free at [developer.echonest.com](http://developer.echonest.com).\n* **Set the API** key - you can do this one of two ways:\n* set an environment variable named `ECHO_NEST_API_KEY` to your API key\n* Include this snippet of code at the beginning of your python scripts:\n\n```python\n from pyechonest import config\n config.ECHO_NEST_API_KEY=\"YOUR API KEY\"\n```\n\n* Check out the [docs](http://echonest.github.com/pyechonest/) and examples below.\n\n## Examples\n*All examples assume you have already setup your api key!*\n\nFind artists that are similar to 'Bikini Kill':\n\n```python\nfrom pyechonest import artist\nbk = artist.Artist('bikini kill')\nprint \"Artists similar to: %s:\" % (bk.name,)\nfor similar_artist in bk.similar: print \"\\t%s\" % (similar_artist.name,)\n```\n\nSearch for artist:\n```python\nfrom pyechonest import artist\nweezer_results = artist.search(name='weezer')\nweezer = weezer_results[0]\nweezer_blogs = weezer.blogs\nprint 'Blogs about weezer:', [blog.get('url') for blog in weezer_blogs]\n```\n\nGet an artist by name:\n```python\nfrom pyechonest import artist\na = artist.Artist('lady gaga')\nprint a.id\n```\n\nGet an artist by Musicbrainz ID:\n```python\nfrom pyechonest import artist\na = artist.Artist('musicbrainz:artist:a74b1b7f-71a5-4011-9441-d0b5e4122711')\nprint a.name\n```\n\nGet the top hottt artists:\n```python\nfrom pyechonest import artist\nfor hottt_artist in artist.top_hottt():\nprint hottt_artist.name, hottt_artist.hotttnesss\n```\n\nSearch for songs:\n```python\nfrom pyechonest import song\nrkp_results = song.search(artist='radiohead', title='karma police')\nkarma_police = rkp_results[0]\nprint karma_police.artist_location\nprint 'tempo:',karma_police.audio_summary['tempo'],'duration:',karma_police.audio_summary['duration']\n```\n\nGet a song's audio_url and analysis_url:\n```python\nfrom pyechonest import song\nss_results = song.search(artist='the national', title='slow show', buckets=['id:7digital-US', 'tracks'], limit=True)\nslow_show = ss_results[0]\nss_tracks = slow_show.get_tracks('7digital-US')\nprint ss_tracks[0].get('preview_url')\n```\n\n-![alt text](http://i.imgur.com/WWLYo.gif \"Frustrated cat can't believe this is the 12th time he's clicked on an auto-linked README.md URL\")\n", "description_content_type": null, "docs_url": null, "download_url": "https://github.com/chankongching/bootdev/tarball/0.1", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/chankongching/bootdev", "keywords": "testing,logging,example", "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "bootdev", "package_url": "https://pypi.org/project/bootdev/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/bootdev/", "project_urls": { "Download": "https://github.com/chankongching/bootdev/tarball/0.1", "Homepage": "https://github.com/chankongching/bootdev" }, "release_url": "https://pypi.org/project/bootdev/0.2.10/", "requires_dist": null, "requires_python": null, "summary": "Bootdev command for AWS deployments", "version": "0.2.10" }, "last_serial": 2044753, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "31401578247c653aaec4cf1e2d4748ca", "sha256": "e13aaf73fa2e1c63f34c0f35ebdbc1ac952a4cf1e185852f6da5e71fcbe3202e" }, "downloads": -1, "filename": "bootdev-0.1.tar.gz", "has_sig": false, "md5_digest": "31401578247c653aaec4cf1e2d4748ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2235, "upload_time": "2016-03-08T05:17:21", "url": "https://files.pythonhosted.org/packages/90/09/0d92eb138436f7cdc1614cadf5e2bd0f30d2431922c2e4e6f01c4d90d627/bootdev-0.1.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "5b2dae408d114e4d8f2398afa73884a4", "sha256": "c0d9966c57d1d135695e2fb02b85a95515838967724f735ba401637589e98f11" }, "downloads": -1, "filename": "bootdev-0.1.1.tar.gz", "has_sig": false, "md5_digest": "5b2dae408d114e4d8f2398afa73884a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2257, "upload_time": "2016-03-08T05:28:53", "url": "https://files.pythonhosted.org/packages/a6/d7/a6f977d230167c723402e5d10bf291d55d5f00b30ffae4f22e8423037941/bootdev-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "920ea8d821c49dbae6ed7ec893a28c1e", "sha256": "b9a4d6a3d1522e5c0adeffa8fdb2ee7d8de980d8c91a9ab72897a914ef667281" }, "downloads": -1, "filename": "bootdev-0.1.2.tar.gz", "has_sig": false, "md5_digest": "920ea8d821c49dbae6ed7ec893a28c1e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2255, "upload_time": "2016-03-08T07:42:38", "url": "https://files.pythonhosted.org/packages/9a/5f/6567f1b0a9eddacf06ab62d4458c62f8853e2938c60ee630598810aeb986/bootdev-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "d9cc3d8465ee19dcb93a539aa536077e", "sha256": "55eb1694e29b1702c0843023fbb2625b551bb53b31fe4e95324419e789438417" }, "downloads": -1, "filename": "bootdev-0.1.3.tar.gz", "has_sig": false, "md5_digest": "d9cc3d8465ee19dcb93a539aa536077e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2252, "upload_time": "2016-03-08T08:13:31", "url": "https://files.pythonhosted.org/packages/d1/1f/e368b55ed4cd4cd31a005ece1138283431d8ac4ce735bd32c8b6f5a86288/bootdev-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "0a2dac2712a1e31e54b78400bca70104", "sha256": "c3dcd339e442e3328b41990e428956c1d7c1ef2f731c38748eafe92089bab778" }, "downloads": -1, "filename": "bootdev-0.1.4.tar.gz", "has_sig": false, "md5_digest": "0a2dac2712a1e31e54b78400bca70104", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2274, "upload_time": "2016-03-08T08:24:41", "url": "https://files.pythonhosted.org/packages/f5/f3/839644afa159c8fb031bdfde0346d396ded691f62802a75d2f3cc080c65b/bootdev-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "786a4984691d58b04241339df6fe5e82", "sha256": "2f80ba18e03a14b9947f47d9d3ca9f2108c5c3cdd247380166139608859f87cb" }, "downloads": -1, "filename": "bootdev-0.1.5.tar.gz", "has_sig": false, "md5_digest": "786a4984691d58b04241339df6fe5e82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2773, "upload_time": "2016-03-08T08:26:56", "url": "https://files.pythonhosted.org/packages/e3/42/c7d77864e785d5522301c4d44fcc0a3a4078106b966d011a0ca60515f63f/bootdev-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "d7549934bd3c5e1144aaaae4b33d4b16", "sha256": "4f8c715d301154dc457bb38793c77cd7a47d1303960e20ca5f938d0f4b914ad3" }, "downloads": -1, "filename": "bootdev-0.1.6.tar.gz", "has_sig": false, "md5_digest": "d7549934bd3c5e1144aaaae4b33d4b16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2839, "upload_time": "2016-03-08T08:41:31", "url": "https://files.pythonhosted.org/packages/c3/f6/bfdde59713c2b23f139726bc7096d0dd793f4c6f8ac2a8d77bb22bc74289/bootdev-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "bf22de027ac860e29929e6cc2c011a82", "sha256": "8f1e05975e038468bab095ee024bbc9398ace189beb81eca20f9e1b10113256a" }, "downloads": -1, "filename": "bootdev-0.1.7.tar.gz", "has_sig": false, "md5_digest": "bf22de027ac860e29929e6cc2c011a82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5843, "upload_time": "2016-03-18T07:20:36", "url": "https://files.pythonhosted.org/packages/30/92/2449bf4408dd7e98f56cf7d1aa517d56098f3e973706ef711c6b3ceb5282/bootdev-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "cecda399d9135bc66ba6dde8f0948ccb", "sha256": "057b20d7d4d8bf536292e8b7fbda93c4c198669dedc4b94c249679479c4543ff" }, "downloads": -1, "filename": "bootdev-0.1.8.tar.gz", "has_sig": false, "md5_digest": "cecda399d9135bc66ba6dde8f0948ccb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7008, "upload_time": "2016-04-01T12:58:44", "url": "https://files.pythonhosted.org/packages/a3/96/f7424e747faead12fabafabe58f539d9fbb889271a0ed4a93aac1910b19c/bootdev-0.1.8.tar.gz" } ], "0.1.8.1": [ { "comment_text": "", "digests": { "md5": "cac2aa6d52cebe90ef36f47d6bce83ba", "sha256": "a96ed381a671b11a2dc5d37f4bde3a66cbf77a14b4e00adee12f31f9fb91e49a" }, "downloads": -1, "filename": "bootdev-0.1.8.1.tar.gz", "has_sig": false, "md5_digest": "cac2aa6d52cebe90ef36f47d6bce83ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7016, "upload_time": "2016-04-01T13:08:57", "url": "https://files.pythonhosted.org/packages/0a/39/7f5d29cbfd61996b183cd0f1d8d2d9dde79ca3840470401f2756718a9ec1/bootdev-0.1.8.1.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "b1cba345e6cf5f795b01eebd6ebd892c", "sha256": "f5e3f2e382ce88056c968b8b1b2e8d180755e71526c966a0e742f86eb837d622" }, "downloads": -1, "filename": "bootdev-0.1.9.tar.gz", "has_sig": false, "md5_digest": "b1cba345e6cf5f795b01eebd6ebd892c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7012, "upload_time": "2016-04-01T13:10:08", "url": "https://files.pythonhosted.org/packages/5c/d4/2a439656034dcda72e2d8a95d79b393ed792c539fa66851369bbfad4cbe6/bootdev-0.1.9.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "3e9d655c7a708f80a2c6a2bbeb7fa2d6", "sha256": "aa1be74a75cf72360793e5efe89dbefecfa771891d2226bbc1e70b44ae4bca24" }, "downloads": -1, "filename": "bootdev-0.2.tar.gz", "has_sig": false, "md5_digest": "3e9d655c7a708f80a2c6a2bbeb7fa2d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24051, "upload_time": "2016-04-01T13:19:29", "url": "https://files.pythonhosted.org/packages/55/c7/8033a19a9644b4ef18af1c598cc8bdaa17a09bedd79e19be60eaeb37ac2e/bootdev-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "f375572517e80be6db1fadbb491cee73", "sha256": "fa01e40d3fecc5d592d730ad599f7cf3468617b6a68b25029b5b4fc10f5cbe17" }, "downloads": -1, "filename": "bootdev-0.2.1.tar.gz", "has_sig": false, "md5_digest": "f375572517e80be6db1fadbb491cee73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24142, "upload_time": "2016-04-01T13:44:49", "url": "https://files.pythonhosted.org/packages/f7/13/938e5ef7b061d2cf40b612e5a8dc4c60dc547d6eccbae84ee77c8ac195a3/bootdev-0.2.1.tar.gz" } ], "0.2.10": [ { "comment_text": "", "digests": { "md5": "0b36bafaa84a787c2f042d578e88ba4c", "sha256": "6767c0f452e6040fcfa75662fddaa17f33e964911121860e272461fdf0a4abad" }, "downloads": -1, "filename": "bootdev-0.2.10.tar.gz", "has_sig": false, "md5_digest": "0b36bafaa84a787c2f042d578e88ba4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24068, "upload_time": "2016-04-04T14:19:37", "url": "https://files.pythonhosted.org/packages/d1/7a/7b5b28c467402370612bf2aef7cd5fee95b85ed0da6f1674cef7f4a3a0eb/bootdev-0.2.10.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "9b7329767b2caeb2230dd9e9849630ec", "sha256": "d937ef28201c230ae0d03da941ce6421d13eeda76683037020da79b787f685f8" }, "downloads": -1, "filename": "bootdev-0.2.2.tar.gz", "has_sig": false, "md5_digest": "9b7329767b2caeb2230dd9e9849630ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24239, "upload_time": "2016-04-04T06:19:46", "url": "https://files.pythonhosted.org/packages/64/d0/75d4bf912d6b126e1f90144fae410ca238b8cbd4d5212fd98697424c7e0a/bootdev-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "ebc57b0508dc466fbd7ed4991a4f38a5", "sha256": "4428715f8ee63fba838e7e996f2bebeb247b0c7e645bb0193e6212779d03f8b2" }, "downloads": -1, "filename": "bootdev-0.2.3.tar.gz", "has_sig": false, "md5_digest": "ebc57b0508dc466fbd7ed4991a4f38a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24225, "upload_time": "2016-04-04T10:09:43", "url": "https://files.pythonhosted.org/packages/0d/03/26fa9ff51b71b6c71c1b96179b73a020f06bee9e530f94de3cc873c8f54d/bootdev-0.2.3.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "e0db906b92c39112625328d865419b65", "sha256": "3ca9284799eac4f97e0bfe848182809f0d179452cc8ebf8035be0d4a2b41e07f" }, "downloads": -1, "filename": "bootdev-0.2.6.tar.gz", "has_sig": false, "md5_digest": "e0db906b92c39112625328d865419b65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24757, "upload_time": "2016-04-04T11:19:10", "url": "https://files.pythonhosted.org/packages/ad/eb/2296116ab02a96f9f87b1d66e8bdef825f07fdebb8ffcdbcae6e992fd55c/bootdev-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "788018bf676ab072a798f280d82d0b1e", "sha256": "928ca30f5ed3536733dbd21103e006ed9932d3321aeba0fa7b2369844d0e0eec" }, "downloads": -1, "filename": "bootdev-0.2.7.tar.gz", "has_sig": false, "md5_digest": "788018bf676ab072a798f280d82d0b1e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24754, "upload_time": "2016-04-04T11:20:19", "url": "https://files.pythonhosted.org/packages/1f/9f/eb217a9d2ae82e71c149cd03f970c8e0ab34cc0e05a95b85d012aed3cd82/bootdev-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "8314a275831957aca45a6b97363d1f4f", "sha256": "0c956d179fa5cce08ec0eccb95c91cdbeb0ff26eb04e24d8a9ab65d300e8ec63" }, "downloads": -1, "filename": "bootdev-0.2.8.tar.gz", "has_sig": false, "md5_digest": "8314a275831957aca45a6b97363d1f4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24754, "upload_time": "2016-04-04T11:22:18", "url": "https://files.pythonhosted.org/packages/f7/97/f56a9cb631354ac133b7f42cb2a025240e8334f02f14e3538e22efd93f06/bootdev-0.2.8.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "eb13484f5820d3ed8e50169d5290c44b", "sha256": "aef5d996c86a798b1c2577e4f0eccd731b71ae5e8a1a75276926ce077fd81644" }, "downloads": -1, "filename": "bootdev-0.2.9.tar.gz", "has_sig": false, "md5_digest": "eb13484f5820d3ed8e50169d5290c44b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24761, "upload_time": "2016-04-04T13:34:46", "url": "https://files.pythonhosted.org/packages/d8/9d/e93758e8f07e5063c773382d96212ae0d48e3e04f180fb628586525390cb/bootdev-0.2.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "0b36bafaa84a787c2f042d578e88ba4c", "sha256": "6767c0f452e6040fcfa75662fddaa17f33e964911121860e272461fdf0a4abad" }, "downloads": -1, "filename": "bootdev-0.2.10.tar.gz", "has_sig": false, "md5_digest": "0b36bafaa84a787c2f042d578e88ba4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24068, "upload_time": "2016-04-04T14:19:37", "url": "https://files.pythonhosted.org/packages/d1/7a/7b5b28c467402370612bf2aef7cd5fee95b85ed0da6f1674cef7f4a3a0eb/bootdev-0.2.10.tar.gz" } ] }