{ "info": { "author": "Chris Drackett", "author_email": "chris@shelfworthy.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "About\n-----\n\nThis code is desgined to make working with netflix's streaming API easy. We take the pure json output of the netflix API and wrap it in a format that is easy to consume in python.\n\nThis code started out as a branch of [pyflix] (http://code.google.com/p/pyflix/)\n\n*This is a work in progress.*\n\ninstall\n-------\n\n`pip install flixpy`\n\nsetup\n-----\n\nFirst you'll need to get a `key` and `secret` from netflix. you can do that by registering here: http://developer.netflix.com/member/register\n\nOnce you have those (and have registered an app with them) you can get started. At the most basic level you can access general netflix resources using just the data provided above:\n\n``` python\n from netflix import NetflixClient\n\n APP_NAME = ''\n API_KEY = ''\n API_SECRET = ''\n\n netflix = NetflixClient(APP_NAME, API_KEY, API_SECRET)\n```\n\nYou can then do anything that dosn't require a netflix user. An example is `autocomplete`:\n\n``` python\n\nresults = netflix.catalog.autocomplete('batman')\n\nprint results\n\n[u'Batman: The Animated Series',\n u'Batman Beyond',\n u'Batman: The Brave and The Bold',\n ...\n\n```\n\n*Note that autocomplete only returns title strings. You can then use these in search to get exact matches with more data.*", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/shelfworthy/flixpy", "keywords": "api,netflix,streaming", "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "flixpy", "package_url": "https://pypi.org/project/flixpy/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/flixpy/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://github.com/shelfworthy/flixpy" }, "release_url": "https://pypi.org/project/flixpy/0.1/", "requires_dist": null, "requires_python": null, "summary": "A python API wrapper specificly designed to work with netflix's streaming API", "version": "0.1" }, "last_serial": 792071, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "e77976b831f37a63325fc6bdfaa5d1dd", "sha256": "dab750c46b2c1e3b64f2466d96e25285d268a365c0e339bd7713f2a2170d1bff" }, "downloads": -1, "filename": "flixpy-0.1.tar.gz", "has_sig": false, "md5_digest": "e77976b831f37a63325fc6bdfaa5d1dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8229, "upload_time": "2012-10-12T22:14:44", "url": "https://files.pythonhosted.org/packages/a2/69/ee64304741060bbbfb9d6724f3eb1e34f778df6dc625551dbd993345adbe/flixpy-0.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e77976b831f37a63325fc6bdfaa5d1dd", "sha256": "dab750c46b2c1e3b64f2466d96e25285d268a365c0e339bd7713f2a2170d1bff" }, "downloads": -1, "filename": "flixpy-0.1.tar.gz", "has_sig": false, "md5_digest": "e77976b831f37a63325fc6bdfaa5d1dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8229, "upload_time": "2012-10-12T22:14:44", "url": "https://files.pythonhosted.org/packages/a2/69/ee64304741060bbbfb9d6724f3eb1e34f778df6dc625551dbd993345adbe/flixpy-0.1.tar.gz" } ] }