Python module to access RedTube API
Project description
Here we go! I’d like to present simple module to access RedTube API. That API has a few methods to access their video library with external clients (such as this small piece of code). Only read access is provided at this moment.
So, I’ll show you one small example, how to use this cool library:
from redtube import RedClient red = RedClient() # Getting top of the top... I think so :) collection = red.search() # Search method provides list like object of type RedCollection with video entries of type RedVideo. print type(collection) # You can show you total videos for current search and current page print collection.total, collection.page # Let's search banana, it's good choice for this search engine collection = red.search(query='banana', page=2) # As you can see, we can access next page by page parameter # Also you can access next page by calling next method from RedCollection instance collection = red.next() # You can access video entries by their internal ID first = red.by_id('1') # Or by some syntax sugar: first = red[1] print first # <RedVideo[1] "Heather taking it deep again"> # RedVideo entries has many useful information about video, ie: print first.title, first.duration, first.url, first.player_url, first.embed # As you can see, we can access video streaming url for this client or generate video embed code # Also you can retrieve tag, category or star lists provided by RedTube categories, tags, stars = red.categories, red.tags, red.stars # This methods has internal cache, so you will do only one HTTP request for multi calls.
That’s all, guys! Have a nice day!
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
redtube-0.5.0.tar.gz
(3.8 kB
view details)
File details
Details for the file redtube-0.5.0.tar.gz
.
File metadata
- Download URL: redtube-0.5.0.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d97519966951d256caa02f3e7f8728b717c0ed82cba42669a59622f59b408d68 |
|
MD5 | e96895cf681bdcfae7368478d1809154 |
|
BLAKE2b-256 | b1e332058913bcbac53893e92fb6132355ed2d842c42af5c4efe9f59ff332e81 |