Metadata-Version: 2.1
Name: fs.dlna
Version: 0.2.5
Summary: Youtube Filesystem for PyFilsystem2
Home-page: https://github.com/media-proxy/fs.dlna
Author: Merlin Kessler
Author-email: m3rlink@gmx.de
License: MIT
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.*
Requires-Dist: fs (~=2.4.4)
Requires-Dist: xmltodict (~=0.12.0)
Requires-Dist: uPnPClient (~=0.0.8)
Requires-Dist: Cython (==0.29.7)
Requires-Dist: netifaces (~=0.10.9)
Provides-Extra: dev
Requires-Dist: docutils (==0.14) ; extra == 'dev'
Requires-Dist: Pygments (==2.3.1) ; extra == 'dev'
Requires-Dist: codecov (==2.0.15) ; extra == 'dev'
Provides-Extra: test
Requires-Dist: green (==2.16.1) ; extra == 'test'
Requires-Dist: coverage (==4.5.3) ; extra == 'test'
Requires-Dist: mock (==2.0.0) ; (python_version < "3.3") and extra == 'test'

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


