Metadata-Version: 1.0
Name: CuevanaLinks
Version: 0.3.1
Summary: A program to retrieve movies and series (or its links)                    from cuevana.tv
Home-page: https://bitbucket.org/tin_nqn/cuevanalinks
Author: Martín Gaitán
Author-email: gaitan@gmail.com
License: GNU GENERAL PUBLIC LICENCE v3.0 (see LICENCE.txt)
Description: ************
        Cuevanalinks
        ************
        
        Cuevanalinks is a tool to retrieve contents (or its links)
        in file sharing hosting services through cuevana.tv_
        
        Up to date documentation: http://packages.python.org/CuevanaLinks
        
        Source code and Issue Tracker: https://bitbucket.org/tin_nqn/cuevanalinks/
        
        Dependecies
        -----------
        
        CuevanaLinks scraps the web using PyQuery_ which is based upon lxml_ .
        Also uses plac_ as command line arguments parser. progressbar_ is used
        to give feedback while downloading.
        
        Everything is available via `easy_install` or `pip`
        
        .. _cuevana.tv: http://www.cuevana.tv
        .. _PyQuery: http://pyquery.org/
        .. _lxml: http://lxml.de/
        .. _plac: http://pypi.python.org/pypi/plac
        .. _progressbar: http://pypi.python.org/pypi/progressbar
        
        Example usage
        -------------
        
        
        - Get help::
        
        $ cuevanalinks -h
        usage: cuevanalinks [-h] [-s] [-d] [-l {es, en, pt}] [-f {long, short}]
        title [episode]
        
        CuevanaLinks 0.2dev - 2011 Martin Gaitán
        A program to retrieve movies and series (or links) from cuevana.tv
        
        positional arguments:
        title                 Look for a movie or show with this title or URL. If
        it's not an URL and `episode` is empty a movie is
        assummed
        episode               Specifies a season/episode of a show. Examples: S01 (a
        whole season), s02e04, 1x4
        
        optional arguments:
        -h, --help            show this help message and exit
        -s, --subs            Download subtitles (if available)
        -d, --download        Download the contents instead show links
        -l {es, en, pt}, --language {es, en, pt}
        Define the language of subtitles. Default: 'ES'
        -f {long, short}, --format {long, short}
        The format of filenames when retrieving files. Default:
        'long'
        
        
        - Download 'Black Swan'::
        
        $ cuevanalinks -d 'black swan'
        
        - Retrieve URLs of one specific episode of a show::
        
        $ cuevanalinks house 4x10
        
        - Download the complete 4th season of *Mad Men* and its subtitles (in spanish)::
        
        $ cuevanalinks -d -s 'mad men' s04
        
        Note that you can also handle downloads through Tucan ::
        
        $ cuevanalinks -s 'mad men' s04 > links.txt && tucan -d -i links.txt
        
        - Retrieve URLs of *El secreto de sus ojos* (*The Secret in Their Eyes*) and
        download subtitles in english::
        
        $ cuevanalinks 'secreto de sus ojos' -s -l en
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
