A Python library to interact with Hulu's "hidden" 2.0 API.
Project description
hulu attempts to make it easy for developers to interact with the Hulu “hidden” 2.0 API
The Story
A friend of mine, (@adammagana) created a PHP library (found here) to interact with the Hulu “hidden” 1.0 API. The 1.0 API only returns XML, but someone opened up an issue revealing some 2.0 endpoints that return JSON.
Since JSON is easier to work with in Python than XML is, I took it upon myself to try an open up their API to other developers.
Features
List companies that have shows/videos on Hulu
List videos from a specific show
List trailers available on Hulu
Find the position of a given video within the shows video list
(Kind of) Much more!
Installation
$ pip install hulu
Example Usage
from hulu import Hulu h = HuluAPI() try: h.get_companies() except HuluError as e: print e try: h.get_video_info(441295) except HuluError as e: print e
Contribute
If anyone has additional information (such as; paramters taken to given API methods, extra API methods not yet found, etc.) please feel free to open a Pull Request! :)
TODO
Figure out authentication!
Some API methods require authentication, yet I haven’t been able to figure out how to authenticate to make those API calls, these API calls include:
api/2.0/plus_upsell.json api/2.0/favorited_show_ids api/2.0/queued_video_ids
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file hulu-0.1.0.tar.gz
.
File metadata
- Download URL: hulu-0.1.0.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7ef32d36c1ea17a564e69d705fbb54883f57af8f9c70b03dc318d10e201292ae |
|
MD5 | 918a2e4c9ac4eecc17ba1abacfd21ab2 |
|
BLAKE2b-256 | 026d237a04bc64931e0354f6a7a4d9c5575d91f5646e4f6cf5fe5e1a24e18854 |