MythTV
master
|
Public Member Functions | |
def | __init__ (self, apikey, mythtv=True, interactive=False, select_first=False, debug=False, custom_ui=None, language=None, search_all_languages=False) |
def | detectUserLocationByIP (self) |
Start - Utility functions. More... | |
def | massageDescription (self, text) |
def | textUtf8 (self, text) |
def | ampReplace (self, text) |
def | setTreeViewIcon (self, dir_icon=None) |
def | processVideoUrl (self, url) |
End of Utility functions. More... | |
def | searchTitle (self, title, pagenumber, pagelen) |
def | searchForVideos (self, title, pagenumber) |
def | getCategories (self) |
def | displayTreeView (self) |
def | makeURL (self, URL) |
def | getVideos (self, dir_dict, dictionaries) |
def | getVideosForURL (self, url, dictionaries) |
Private Member Functions | |
def | _initLogger (self) |
Main interface to http://blip.tv/ This is done to support a common naming framework for all python Netvision plugins no matter their site target. Supports search and tree view methods The apikey is a not required to access http://blip.tv/
Definition at line 99 of file bliptv_api.py.
def nv_python_libs.bliptv.bliptv_api.Videos.__init__ | ( | self, | |
apikey, | |||
mythtv = True , |
|||
interactive = False , |
|||
select_first = False , |
|||
debug = False , |
|||
custom_ui = None , |
|||
language = None , |
|||
search_all_languages = False |
|||
) |
apikey (str/unicode): Specify the target site API key. Applications need their own key in some cases mythtv (True/False): When True, the returned meta data is being returned has the key and values massaged to match MythTV When False, the returned meta data is being returned matches what target site returned interactive (True/False): (This option is not supported by all target site apis) When True, uses built-in console UI is used to select the correct show. When False, the first search result is used. select_first (True/False): (This option is not supported currently implemented in any grabbers) Automatically selects the first series search result (rather than showing the user a list of more than one series). Is overridden by interactive = False, or specifying a custom_ui debug (True/False): shows verbose debugging information custom_ui (xx_ui.BaseUI subclass): (This option is not supported currently implemented in any grabbers) A callable subclass of interactive class (overrides interactive option) language (2 character language abbreviation): (This option is not supported by all target site apis) The language of the returned data. Is also the language search uses. Default is "en" (English). For full list, run.. search_all_languages (True/False): (This option is not supported by all target site apis) By default, a Netvision grabber will only search in the language specified using the language option. When this is True, it will search for the show in any language
Definition at line 107 of file bliptv_api.py.
def nv_python_libs.bliptv.bliptv_api.Videos.detectUserLocationByIP | ( | self | ) |
Start - Utility functions.
Get longitude and latitiude to find videos relative to your location. Up to three different servers will be tried before giving up. return a dictionary e.g. {'Latitude': '43.6667', 'Country': 'Canada', 'Longitude': '-79.4167', 'City': 'Toronto'} return an empty dictionary if there were any errors Code found at: http://blog.suinova.com/2009/04/from-ip-to-geolocation-country-city.html
Definition at line 257 of file bliptv_api.py.
def nv_python_libs.bliptv.bliptv_api.Videos.massageDescription | ( | self, | |
text | |||
) |
Removes HTML markup from a text string. @param text The HTML source. @return The plain text. If the HTML source contains non-ASCII entities or character references, this is a Unicode string.
Definition at line 316 of file bliptv_api.py.
Referenced by nv_python_libs.bliptv.bliptv_api.Videos.getCategories(), nv_python_libs.vimeo.vimeo_api.Videos.getTreeVideos(), nv_python_libs.mtv.mtv_api.Videos.getVideos(), nv_python_libs.bliptv.bliptv_api.Videos.getVideos(), nv_python_libs.dailymotion.dailymotion_api.Videos.getVideos(), nv_python_libs.vimeo.vimeo_api.Videos.getVideos(), nv_python_libs.dailymotion.dailymotion_api.Videos.getVideosForGroupURL(), nv_python_libs.youtube.youtube_api.Videos.getVideosForURL(), nv_python_libs.mtv.mtv_api.Videos.getVideosForURL(), nv_python_libs.bliptv.bliptv_api.Videos.getVideosForURL(), nv_python_libs.youtube.youtube_api.Videos.parseDetails(), nv_python_libs.mtv.mtv_api.Videos.searchTitle(), and nv_python_libs.vimeo.vimeo_api.Videos.searchTitle().
|
private |
Setups a logger using the logging module, returns a log object
Definition at line 350 of file bliptv_api.py.
def nv_python_libs.bliptv.bliptv_api.Videos.textUtf8 | ( | self, | |
text | |||
) |
Definition at line 369 of file bliptv_api.py.
Referenced by giantbomb.giantbomb_api.gamedbQueries.ampReplace(), nv_python_libs.common.common_api.Common.ampReplace(), nv_python_libs.mtv.mtv_api.Videos.ampReplace(), nv_python_libs.bliptv.bliptv_api.Videos.ampReplace(), nv_python_libs.dailymotion.dailymotion_api.Videos.ampReplace(), nv_python_libs.vimeo.vimeo_api.Videos.ampReplace(), nv_python_libs.mtv.mtv_api.Videos.massageDescription(), nv_python_libs.bliptv.bliptv_api.Videos.massageDescription(), nv_python_libs.dailymotion.dailymotion_api.Videos.massageDescription(), nv_python_libs.vimeo.vimeo_api.Videos.massageDescription(), giantbomb.giantbomb_api.gamedbQueries.massageText(), and nv_python_libs.common.common_api.Common.massageText().
def nv_python_libs.bliptv.bliptv_api.Videos.ampReplace | ( | self, | |
text | |||
) |
Replace all "&" characters with "&"
Definition at line 381 of file bliptv_api.py.
Referenced by nv_python_libs.vimeo.vimeo_api.Videos.getTreeVideos(), nv_python_libs.dailymotion.dailymotion_api.Videos.getVideosForGroupURL(), nv_python_libs.mtv.mtv_api.Videos.getVideosForURL(), nv_python_libs.bliptv.bliptv_api.Videos.getVideosForURL(), nv_python_libs.mtv.mtv_api.Videos.massageDescription(), nv_python_libs.bliptv.bliptv_api.Videos.massageDescription(), nv_python_libs.dailymotion.dailymotion_api.Videos.massageDescription(), nv_python_libs.vimeo.vimeo_api.Videos.massageDescription(), giantbomb.giantbomb_api.gamedbQueries.massageText(), nv_python_libs.common.common_api.Common.massageText(), nv_python_libs.bliptv.bliptv_api.Videos.processVideoUrl(), nv_python_libs.dailymotion.dailymotion_api.Videos.processVideoUrl(), nv_python_libs.vimeo.vimeo_api.Videos.processVideoUrl(), and nv_python_libs.vimeo.vimeo_api.Videos.searchTitle().
def nv_python_libs.bliptv.bliptv_api.Videos.setTreeViewIcon | ( | self, | |
dir_icon = None |
|||
) |
Check if there is a specific generic tree view icon. If not default to the channel icon. return self.tree_dir_icon
Definition at line 388 of file bliptv_api.py.
Referenced by nv_python_libs.mashups.mashups_api.Videos.displayTreeView(), nv_python_libs.vimeo.vimeo_api.Videos.getTreeVideos(), nv_python_libs.mtv.mtv_api.Videos.getVideos(), nv_python_libs.dailymotion.dailymotion_api.Videos.getVideos(), nv_python_libs.vimeo.vimeo_api.Videos.getVideos(), nv_python_libs.youtube.youtube_api.Videos.getVideosForURL(), nv_python_libs.mtv.mtv_api.Videos.getVideosForURL(), nv_python_libs.bliptv.bliptv_api.Videos.getVideosForURL(), and nv_python_libs.mashups.mashups_api.Videos.searchForVideos().
def nv_python_libs.bliptv.bliptv_api.Videos.processVideoUrl | ( | self, | |
url | |||
) |
End of Utility functions.
Definition at line 411 of file bliptv_api.py.
Referenced by nv_python_libs.vimeo.vimeo_api.Videos.getTreeVideos(), and nv_python_libs.vimeo.vimeo_api.Videos.searchTitle().
def nv_python_libs.bliptv.bliptv_api.Videos.searchTitle | ( | self, | |
title, | |||
pagenumber, | |||
pagelen | |||
) |
Key word video search of the blip.tv web site return an array of matching item dictionaries return
Definition at line 416 of file bliptv_api.py.
Referenced by nv_python_libs.hulu.hulu_api.Videos.displayTreeView(), nv_python_libs.thewb.thewb_api.Videos.displayTreeView(), nv_python_libs.mnvsearch.mnvsearch_api.Videos.searchForVideos(), nv_python_libs.tedtalks.tedtalks_api.Videos.searchForVideos(), nv_python_libs.hulu.hulu_api.Videos.searchForVideos(), nv_python_libs.thewb.thewb_api.Videos.searchForVideos(), nv_python_libs.bliptv.bliptv_api.Videos.searchForVideos(), and nv_python_libs.rev3.rev3_api.Videos.searchForVideos().
def nv_python_libs.bliptv.bliptv_api.Videos.searchForVideos | ( | self, | |
title, | |||
pagenumber | |||
) |
Common name for a video search. Used to interface with MythTV plugin NetVision
Definition at line 519 of file bliptv_api.py.
def nv_python_libs.bliptv.bliptv_api.Videos.getCategories | ( | self | ) |
Get the list of valid category ids and their name and update the proper dictionaries return nothing
Definition at line 571 of file bliptv_api.py.
def nv_python_libs.bliptv.bliptv_api.Videos.displayTreeView | ( | self | ) |
Gather the categories/feeds/...etc then retrieve a max page of videos meta data in each of them return array of directories and their video meta data
Definition at line 627 of file bliptv_api.py.
def nv_python_libs.bliptv.bliptv_api.Videos.makeURL | ( | self, | |
URL | |||
) |
Form a URL to search for videos return a URL
Definition at line 655 of file bliptv_api.py.
Referenced by nv_python_libs.mtv.mtv_api.Videos.getVideos(), nv_python_libs.bliptv.bliptv_api.Videos.getVideos(), and nv_python_libs.dailymotion.dailymotion_api.Videos.getVideos().
def nv_python_libs.bliptv.bliptv_api.Videos.getVideos | ( | self, | |
dir_dict, | |||
dictionaries | |||
) |
Parse a list made of categories and retrieve video meta data return a dictionary of directory names and categories video meta data
Definition at line 681 of file bliptv_api.py.
def nv_python_libs.bliptv.bliptv_api.Videos.getVideosForURL | ( | self, | |
url, | |||
dictionaries | |||
) |
Get the video meta data for url search return the video dictionary of directories and their video mata data
Definition at line 712 of file bliptv_api.py.
Referenced by nv_python_libs.youtube.youtube_api.Videos.getVideosForCategory().
nv_python_libs.bliptv.bliptv_api.Videos.config |
Definition at line 140 of file bliptv_api.py.
Referenced by nv_python_libs.mtv.mtv_api.Videos._initLogger(), nv_python_libs.youtube.youtube_api.Videos._initLogger(), nv_python_libs.bliptv.bliptv_api.Videos._initLogger(), nv_python_libs.dailymotion.dailymotion_api.Videos._initLogger(), nv_python_libs.vimeo.vimeo_api.Videos._initLogger(), nv_python_libs.mainProcess.siteQueries.displayHTML(), nv_python_libs.mainProcess.siteQueries.displayTreeView(), nv_python_libs.mashups.mashups_api.Videos.displayTreeView(), nv_python_libs.hulu.hulu_api.Videos.displayTreeView(), nv_python_libs.thewb.thewb_api.Videos.displayTreeView(), nv_python_libs.rev3.rev3_api.Videos.displayTreeView(), nv_python_libs.dailymotion.dailymotion_api.Videos.displayTreeView(), nv_python_libs.vimeo.vimeo_api.Videos.displayTreeView(), giantbomb.giantbomb_api.gamedbQueries.gameData(), giantbomb.giantbomb_api.gamedbQueries.gameSearch(), nv_python_libs.bliptv.bliptv_api.Videos.getCategories(), nv_python_libs.hulu.hulu_api.Videos.getHuluConfig(), nv_python_libs.mashups.mashups_api.Videos.getMashupsConfig(), nv_python_libs.pbs.pbs_api.Videos.getPBSConfig(), nv_python_libs.rev3.rev3_api.Videos.getRev3Config(), nv_python_libs.youtube.youtube_api.Videos.getSearchResults(), nv_python_libs.tedtalks.tedtalks_api.Videos.getTedTalksConfig(), nv_python_libs.thewb.thewb_api.Videos.getTheWBConfig(), nv_python_libs.mnvsearch.mnvsearch_api.Videos.getTreeviewData(), nv_python_libs.hulu.hulu_api.Videos.getUserPreferences(), nv_python_libs.youtube.youtube_api.Videos.getUserPreferences(), nv_python_libs.rev3.rev3_api.Videos.getUserPreferences(), nv_python_libs.tedtalks.tedtalks_api.Videos.getUserPreferences(), nv_python_libs.pbs.pbs_api.Videos.getUserPreferences(), nv_python_libs.mashups.mashups_api.Videos.getUserPreferences(), nv_python_libs.thewb.thewb_api.Videos.getUserPreferences(), nv_python_libs.youtube.youtube_api.Videos.getVideoCategories(), nv_python_libs.rev3.rev3_api.Videos.getVideoID(), nv_python_libs.mtv.mtv_api.Videos.getVideos(), nv_python_libs.bliptv.bliptv_api.Videos.getVideos(), nv_python_libs.dailymotion.dailymotion_api.Videos.getVideos(), nv_python_libs.vimeo.vimeo_api.Videos.getVideos(), nv_python_libs.dailymotion.dailymotion_api.Videos.getVideosForGroupURL(), nv_python_libs.youtube.youtube_api.Videos.getVideosForURL(), nv_python_libs.mtv.mtv_api.Videos.getVideosForURL(), nv_python_libs.bliptv.bliptv_api.Videos.getVideosForURL(), nv_python_libs.dailymotion.dailymotion_api.Videos.getVideosForURL(), nv_python_libs.mnvsearch.mnvsearch_api.Videos.searchForVideos(), nv_python_libs.mashups.mashups_api.Videos.searchForVideos(), nv_python_libs.tedtalks.tedtalks_api.Videos.searchForVideos(), nv_python_libs.hulu.hulu_api.Videos.searchForVideos(), nv_python_libs.thewb.thewb_api.Videos.searchForVideos(), nv_python_libs.rev3.rev3_api.Videos.searchForVideos(), nv_python_libs.mnvsearch.mnvsearch_api.Videos.searchTitle(), nv_python_libs.hulu.hulu_api.Videos.searchTitle(), nv_python_libs.tedtalks.tedtalks_api.Videos.searchTitle(), nv_python_libs.mtv.mtv_api.Videos.searchTitle(), nv_python_libs.thewb.thewb_api.Videos.searchTitle(), nv_python_libs.bliptv.bliptv_api.Videos.searchTitle(), nv_python_libs.rev3.rev3_api.Videos.searchTitle(), nv_python_libs.dailymotion.dailymotion_api.Videos.searchTitle(), nv_python_libs.pbs.pbs_api.Videos.updatePBS(), nv_python_libs.rev3.rev3_api.Videos.updateRev3(), nv_python_libs.tedtalks.tedtalks_api.Videos.updateTedTalks(), nv_python_libs.thewb.thewb_api.Videos.updateTheWB(), and nv_python_libs.mtv.mtv_api.Videos.videoDetails().
nv_python_libs.bliptv.bliptv_api.Videos.mythxml |
Definition at line 141 of file bliptv_api.py.
Referenced by nv_python_libs.youtube.youtube_api.Videos.parseDetails(), nv_python_libs.bliptv.bliptv_api.Videos.processVideoUrl(), nv_python_libs.dailymotion.dailymotion_api.Videos.processVideoUrl(), and nv_python_libs.vimeo.vimeo_api.Videos.processVideoUrl().
nv_python_libs.bliptv.bliptv_api.Videos.log_name |
Definition at line 150 of file bliptv_api.py.
Referenced by nv_python_libs.mtv.mtv_api.Videos._initLogger(), nv_python_libs.youtube.youtube_api.Videos._initLogger(), nv_python_libs.bliptv.bliptv_api.Videos._initLogger(), nv_python_libs.dailymotion.dailymotion_api.Videos._initLogger(), and nv_python_libs.vimeo.vimeo_api.Videos._initLogger().
nv_python_libs.bliptv.bliptv_api.Videos.log |
Definition at line 151 of file bliptv_api.py.
nv_python_libs.bliptv.bliptv_api.Videos.error_messages |
Definition at line 164 of file bliptv_api.py.
Referenced by nv_python_libs.mashups.mashups_api.Videos.displayTreeView(), nv_python_libs.hulu.hulu_api.Videos.displayTreeView(), nv_python_libs.thewb.thewb_api.Videos.displayTreeView(), nv_python_libs.rev3.rev3_api.Videos.displayTreeView(), nv_python_libs.vimeo.vimeo_api.Videos.displayTreeView(), nv_python_libs.bliptv.bliptv_api.Videos.getCategories(), nv_python_libs.hulu.hulu_api.Videos.getHuluConfig(), nv_python_libs.mashups.mashups_api.Videos.getMashupsConfig(), nv_python_libs.pbs.pbs_api.Videos.getPBSConfig(), nv_python_libs.rev3.rev3_api.Videos.getRev3Config(), nv_python_libs.youtube.youtube_api.Videos.getSearchResults(), nv_python_libs.tedtalks.tedtalks_api.Videos.getTedTalksConfig(), nv_python_libs.thewb.thewb_api.Videos.getTheWBConfig(), nv_python_libs.vimeo.vimeo_api.Videos.getTreeVideos(), nv_python_libs.youtube.youtube_api.Videos.getVideoCategories(), nv_python_libs.youtube.youtube_api.Videos.getVideoDetails(), nv_python_libs.dailymotion.dailymotion_api.Videos.getVideosForGroupURL(), nv_python_libs.youtube.youtube_api.Videos.getVideosForURL(), nv_python_libs.mtv.mtv_api.Videos.getVideosForURL(), nv_python_libs.bliptv.bliptv_api.Videos.getVideosForURL(), nv_python_libs.dailymotion.dailymotion_api.Videos.getVideosForURL(), nv_python_libs.mashups.mashups_api.Videos.searchForVideos(), nv_python_libs.tedtalks.tedtalks_api.Videos.searchForVideos(), nv_python_libs.hulu.hulu_api.Videos.searchForVideos(), nv_python_libs.thewb.thewb_api.Videos.searchForVideos(), nv_python_libs.bliptv.bliptv_api.Videos.searchForVideos(), nv_python_libs.rev3.rev3_api.Videos.searchForVideos(), nv_python_libs.mnvsearch.mnvsearch_api.Videos.searchTitle(), nv_python_libs.hulu.hulu_api.Videos.searchTitle(), nv_python_libs.tedtalks.tedtalks_api.Videos.searchTitle(), nv_python_libs.mtv.mtv_api.Videos.searchTitle(), nv_python_libs.thewb.thewb_api.Videos.searchTitle(), nv_python_libs.bliptv.bliptv_api.Videos.searchTitle(), nv_python_libs.rev3.rev3_api.Videos.searchTitle(), nv_python_libs.vimeo.vimeo_api.Videos.searchTitle(), nv_python_libs.pbs.pbs_api.Videos.updatePBS(), nv_python_libs.rev3.rev3_api.Videos.updateRev3(), nv_python_libs.tedtalks.tedtalks_api.Videos.updateTedTalks(), nv_python_libs.thewb.thewb_api.Videos.updateTheWB(), and nv_python_libs.mtv.mtv_api.Videos.videoDetails().
nv_python_libs.bliptv.bliptv_api.Videos.key_translation |
Definition at line 167 of file bliptv_api.py.
Referenced by nv_python_libs.vimeo.vimeo_api.Videos.getTreeVideos(), nv_python_libs.mtv.mtv_api.Videos.getVideosForURL(), nv_python_libs.bliptv.bliptv_api.Videos.getVideosForURL(), nv_python_libs.bliptv.bliptv_api.Videos.searchForVideos(), and nv_python_libs.youtube.youtube_api.Videos.translateItem().
nv_python_libs.bliptv.bliptv_api.Videos.tree_order |
Definition at line 198 of file bliptv_api.py.
Referenced by nv_python_libs.dailymotion.dailymotion_api.Videos.displayTreeView(), nv_python_libs.vimeo.vimeo_api.Videos.displayTreeView(), and nv_python_libs.bliptv.bliptv_api.Videos.getCategories().
nv_python_libs.bliptv.bliptv_api.Videos.tree_org |
Definition at line 200 of file bliptv_api.py.
Referenced by nv_python_libs.bliptv.bliptv_api.Videos.getCategories().
nv_python_libs.bliptv.bliptv_api.Videos.tree_customize |
Definition at line 210 of file bliptv_api.py.
Referenced by nv_python_libs.bliptv.bliptv_api.Videos.getVideos(), nv_python_libs.mtv.mtv_api.Videos.makeURL(), nv_python_libs.bliptv.bliptv_api.Videos.makeURL(), and nv_python_libs.dailymotion.dailymotion_api.Videos.makeURL().
nv_python_libs.bliptv.bliptv_api.Videos.feed_names |
nv_python_libs.bliptv.bliptv_api.Videos.feed_icons |
Definition at line 228 of file bliptv_api.py.
Referenced by nv_python_libs.mtv.mtv_api.Videos.getVideos(), nv_python_libs.dailymotion.dailymotion_api.Videos.getVideos(), and nv_python_libs.vimeo.vimeo_api.Videos.getVideos().
nv_python_libs.bliptv.bliptv_api.Videos.categories |
Definition at line 236 of file bliptv_api.py.
Referenced by nv_python_libs.bliptv.bliptv_api.Videos.getVideos().
nv_python_libs.bliptv.bliptv_api.Videos.treeview |
Definition at line 237 of file bliptv_api.py.
Referenced by nv_python_libs.dailymotion.dailymotion_api.Videos.displayTreeView(), nv_python_libs.vimeo.vimeo_api.Videos.displayTreeView(), and nv_python_libs.bliptv.bliptv_api.Videos.getVideosForURL().
nv_python_libs.bliptv.bliptv_api.Videos.channel_icon |
Definition at line 238 of file bliptv_api.py.
Referenced by nv_python_libs.pbs.pbs_api.Videos.displayTreeView(), nv_python_libs.tedtalks.tedtalks_api.Videos.displayTreeView(), nv_python_libs.mashups.mashups_api.Videos.displayTreeView(), nv_python_libs.hulu.hulu_api.Videos.displayTreeView(), nv_python_libs.thewb.thewb_api.Videos.displayTreeView(), nv_python_libs.rev3.rev3_api.Videos.displayTreeView(), nv_python_libs.mtv.mtv_api.Videos.getVideos(), nv_python_libs.bliptv.bliptv_api.Videos.getVideos(), nv_python_libs.dailymotion.dailymotion_api.Videos.getVideos(), nv_python_libs.vimeo.vimeo_api.Videos.getVideos(), nv_python_libs.mashups.mashups_api.Videos.searchForVideos(), and nv_python_libs.pbs.pbs_api.Videos.searchForVideos().
nv_python_libs.bliptv.bliptv_api.Videos.tree_dir_icon |
Definition at line 392 of file bliptv_api.py.
nv_python_libs.bliptv.bliptv_api.Videos.next_page |
Definition at line 440 of file bliptv_api.py.
Referenced by nv_python_libs.vimeo.vimeo_api.Videos.getTreeVideos(), and nv_python_libs.bliptv.bliptv_api.Videos.getVideosForURL().
nv_python_libs.bliptv.bliptv_api.Videos.channel |
Definition at line 632 of file bliptv_api.py.
Referenced by nv_python_libs.mashups.mashups_api.Videos.displayTreeView(), nv_python_libs.hulu.hulu_api.Videos.displayTreeView(), nv_python_libs.youtube.youtube_api.Videos.displayTreeView(), nv_python_libs.thewb.thewb_api.Videos.displayTreeView(), nv_python_libs.rev3.rev3_api.Videos.displayTreeView(), nv_python_libs.dailymotion.dailymotion_api.Videos.displayTreeView(), nv_python_libs.vimeo.vimeo_api.Videos.displayTreeView(), nv_python_libs.vimeo.vimeo_api.Videos.getTreeVideos(), nv_python_libs.youtube.youtube_api.Videos.getVideosForURL(), nv_python_libs.mtv.mtv_api.Videos.getVideosForURL(), nv_python_libs.mnvsearch.mnvsearch_api.Videos.searchForVideos(), nv_python_libs.mashups.mashups_api.Videos.searchForVideos(), nv_python_libs.tedtalks.tedtalks_api.Videos.searchForVideos(), nv_python_libs.hulu.hulu_api.Videos.searchForVideos(), nv_python_libs.thewb.thewb_api.Videos.searchForVideos(), nv_python_libs.rev3.rev3_api.Videos.searchForVideos(), nv_python_libs.mnvsearch.mnvsearch_api.Videos.searchTitle(), nv_python_libs.hulu.hulu_api.Videos.searchTitle(), nv_python_libs.thewb.thewb_api.Videos.searchTitle(), nv_python_libs.youtube.youtube_api.Videos.searchTitle(), nv_python_libs.rev3.rev3_api.Videos.searchTitle(), and nv_python_libs.vimeo.vimeo_api.Videos.searchTitle().
nv_python_libs.bliptv.bliptv_api.Videos.tree_key |
Definition at line 649 of file bliptv_api.py.
Referenced by nv_python_libs.mtv.mtv_api.Videos.getVideos(), nv_python_libs.bliptv.bliptv_api.Videos.getVideos(), nv_python_libs.dailymotion.dailymotion_api.Videos.getVideos(), nv_python_libs.vimeo.vimeo_api.Videos.getVideos(), nv_python_libs.dailymotion.dailymotion_api.Videos.getVideosForGroupURL(), nv_python_libs.youtube.youtube_api.Videos.getVideosForURL(), nv_python_libs.mtv.mtv_api.Videos.getVideosForURL(), nv_python_libs.bliptv.bliptv_api.Videos.getVideosForURL(), nv_python_libs.mtv.mtv_api.Videos.makeURL(), nv_python_libs.bliptv.bliptv_api.Videos.makeURL(), and nv_python_libs.dailymotion.dailymotion_api.Videos.makeURL().