Metadata-Version: 1.2
Name: fs.youtube
Version: 0.1.8
Summary: Youtube Filesystem for PyFilsystem2
Home-page: https://github.com/media-proxy/fs.youtube
Author: Merlin Kessler
Author-email: m3rlink@gmx.de
License: MIT
Description-Content-Type: UNKNOWN
Description: fs.youtube
        ==========
        
        |PyPI version| |Build Status| |Codacy Badge| |codecov|
        
        A PyFilesystem2 implementation for accessing YouTube Videos and
        Playlists
        
        Installation
        ------------
        
        Install directly from PyPI, using `pip <https://pip.pypa.io/>`__:
        
        ::
        
            pip install fs.youtube
        
        Usage
        -----
        
        Opener
        ~~~~~~
        
        Use ``fs.open_fs`` to open a filesystem with an Youtube `FS
        URL <https://pyfilesystem2.readthedocs.io/en/latest/openers.html>`__:
        
        .. code:: python
        
            import fs
            yt_fs = fs.open_fs('youtube://youtubeplaylistid')
        
        The opener can use either use the YouTube Playlist ID or the whole
        Youtube URL.
        
        Also Single Youtube Videos are supported.
        
        Constructor
        ~~~~~~~~~~~
        
        .. code:: python
        
            import fs.youtube
            yt_fs = fs.youtube.YoutubeFS(
                    url, playlist=True, seekable=True
                    )
        
        with each argument explained below:
        
        ``url`` The Playlist/Video URL or simly use the YouTube ID
        
        ``playlist`` If the ID or URL is one Video only, set this to False
        
        ``seekable`` Use a seekable implementation to move inside the videofile.
        
        Once created, the ``YoutubeFS`` filesystem behaves like any other
        filesystem (see the `Pyfilesystem2
        documentation <https://pyfilesystem2.readthedocs.io>`__).
        
        Feedback
        --------
        
        Found a bug ? Have an enhancement request ? Head over to the `GitHub
        issue tracker <https://github.com/media-proxy/fs.youtube/issues>`__ of
        the project if you need to report or ask something. If you are filling
        in on a bug, please include as much information as you can about the
        issue, and try to recreate the same bug in a simple, easily
        reproductible situation.
        
        See also
        --------
        
        -  `fs <https://github.com/Pyfilesystem/pyfilesystem2>`__, the core
           Pyfilesystem2 library
        -  `Index of
           Filesystems <https://www.pyfilesystem.org/page/index-of-filesystems/>`__,
           a list of PyFilesystem 2 implementations
        
        .. |PyPI version| image:: https://badge.fury.io/py/fs.youtube.svg
           :target: https://pypi.python.org/pypi/fs.youtube
        .. |Build Status| image:: https://travis-ci.org/media-proxy/fs.youtube.svg?branch=master
           :target: https://travis-ci.org/media-proxy/fs.youtube
        .. |Codacy Badge| image:: https://api.codacy.com/project/badge/Grade/c8331c97a4054df88cc79878c615cdb2
           :target: https://www.codacy.com/app/media-proxy/fs.youtube?utm_source=github.com&utm_medium=referral&utm_content=media-proxy/fs.youtube&utm_campaign=Badge_Grade
        .. |codecov| image:: https://codecov.io/gh/media-proxy/fs.youtube/branch/master/graph/badge.svg
           :target: https://codecov.io/gh/media-proxy/fs.youtube
        
Keywords: filesystem,Pyfilesystem2,pafy,youtube
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Filesystems
Requires-Python: >= 2.7, != 3.0.*, != 3.1.*, != 3.2.*
