Skip to main content

A library for reading video episodes from any blip.tv show

Project description

The goal of this project is to give developers an easy way to access data stored on blip.tv, things like episodes, their enclosures and so on. It is a wrapper around the blip.tv API and encapsulates the formatting and parsing job.

bliptv.reader Package Changes

bliptv.reader version 1.0 (2008/07/27)

  • initial release

Detailed Documentation

Installation

To install it, the best way is to use easy_install:

$ easy_install bliptv.reader

This will download the package and it’s dependencies from PyPI. If you don’t have easy_install installed, you can download it here:

http://peak.telecommunity.com/DevCenter/EasyInstall

Usage

First you need to import it:

>>> from bliptv.reader import Show

Now you can select a show and initialize it. We take COM.lounge TV as an example which can be found at http://comlounge.blip.tv. The showname thus is “comlounge”:

>>> show = Show('comlounge')

We can now select the first page of episodes from it:

>>> page1 = show.episodes.pages[1]

We can also retrieve the next page like that:

>>> page2 = page1.next

And go back to page1 with prev:

>>> page1 = page2.prev

Unfortunately blip.tv does not return the overall amount of episodes so that we can only check next and prev if the return None like this:

>>> page1.prev is None
True

Also note, that the list of episodes is backwards, starting with the most recent episode.

Now we can check the episodes in that page (we can only test existance here because we don’t know the exact names of the episodes as these change all the time):

>>> episode = page1[0]
>>> len(episode.title)>0
True

>>> episode.url.startswith("http://blip.tv/file")
True

Moreover you can access:

rating

The rating of the show, e.g. TV-UN

pureDescription

A plain text version of the description

description

The HTML version of the description

keywords

The tags used as a list

Enclosures

One important part of course are the media files of an episode. These are stored as a dictionary inside the enclosures attribute of an episode:

>>> enclosures = episode.enclosures

The dict is a filetype => Enclosure structure:

>>> enclosure = enclosures['video/x-flv']
>>> enclosure.filetype
'video/x-flv'

>>> enclosure.url.startswith('http://blip.tv/file/get/')
True

>>> enclosure.filesize>0
True

>>> enclosure.height>0
True

>>> enclosure.width>0
True

Download

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bliptv.reader-1.0.tar.gz (4.4 kB view details)

Uploaded Source

Built Distribution

bliptv.reader-1.0-py2.5.egg (9.4 kB view details)

Uploaded Source

File details

Details for the file bliptv.reader-1.0.tar.gz.

File metadata

  • Download URL: bliptv.reader-1.0.tar.gz
  • Upload date:
  • Size: 4.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for bliptv.reader-1.0.tar.gz
Algorithm Hash digest
SHA256 2dd3f9b3aa60981f11ee95e3f1ae94d4dec02cb3773eeacd9521ebbbe6973782
MD5 2e362b83c19105395abce32344fbc498
BLAKE2b-256 eb03bdbc6b68baf5b5f500da6f6323157627fd8c71f75795b75a448eac4a33ef

See more details on using hashes here.

File details

Details for the file bliptv.reader-1.0-py2.5.egg.

File metadata

File hashes

Hashes for bliptv.reader-1.0-py2.5.egg
Algorithm Hash digest
SHA256 34f257b79ee3f1011ae7844f03f805dd18db4c2cf5f737adb503d4e402f541a4
MD5 87c944c241ecc2f6e160b0f70227b16b
BLAKE2b-256 f9217a004956109870844017e5c2a7862c9b0f5ade3968709f908f66e6000a11

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page