Metadata-Version: 2.1
Name: fs.dlna
Version: 0.1.7
Summary: Youtube Filesystem for PyFilsystem2
Home-page: https://github.com/media-proxy/fs.dlna
Author: Merlin Kessler
Author-email: m3rlink@gmx.de
License: MIT
Description: fs.dlna
        =======
        
        .. image:: https://badge.fury.io/py/fs.dlna.svg
            :target: https://badge.fury.io/py/fs.dlna
        
        .. image:: https://travis-ci.org/media-proxy/fs.dlna.svg?branch=master
            :target: https://travis-ci.org/media-proxy/fs.dlna
            
        .. image:: https://api.codacy.com/project/badge/Grade/bcd41855125941bdbe61413f53e502e9
            :target: https://www.codacy.com/app/media-proxy/fs.dlna?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=media-proxy/fs.dlna&amp;utm_campaign=Badge_Grade
            
        .. image:: https://codecov.io/gh/media-proxy/fs.dlna/branch/master/graph/badge.svg
            :target: https://codecov.io/gh/media-proxy/fs.dlna
            
        .. image:: https://pyup.io/repos/github/media-proxy/fs.dlna/shield.svg
            :target: https://pyup.io/repos/github/media-proxy/fs.dlna/
        
        A PyFilesystem2 implementation for accessing DLNA Servers
        
        Installation
        ------------
        
        Install directly from PyPI, using `pip <https://pip.pypa.io/>`__:
        
        ::
        
           pip install fs.dlna
        
        Usage
        -----
        
        Opener
        ~~~~~~
        
        Use ``fs.open_fs`` to open a filesystem with a DLNA `FS
        URL <https://pyfilesystem2.readthedocs.io/en/latest/openers.html>`__:
        
        .. code:: python
        
           import fs
           dlna_fs = fs.open_fs('dlna:///')
        
        Constructor
        ~~~~~~~~~~~
        
        .. code:: python
        
           import fs.dlna
           dlna_fs = fs.dlna.DLNAFS()
        
        with each argument explained below:
        
        Once created, the ``DLNAFS`` 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.dlna/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
        
Keywords: filesystem,Pyfilesystem2,dlna,upnp
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.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Filesystems
Requires-Python: >= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*
Provides-Extra: test
Provides-Extra: dev
