Metadata-Version: 1.1
Name: transmission-fluid
Version: 0.4
Summary: A Python wrapper for Transmission's RPC interface
Home-page: https://github.com/edavis/transmission-fluid
Author: Eric Davis
Author-email: ed@npri.org
License: UNKNOWN
Download-URL: http://pypi.python.org/pypi/transmission-fluid
Description: 
        transmission-fluid is a Python wrapper for Transmission's RPC interface.
        
        .. image:: https://secure.travis-ci.org/edavis/transmission-fluid.png
           :target: http://travis-ci.org/#!/edavis/transmission-fluid
        
        ::
        
            >>> from transmission import Transmission
            >>> client = Transmission()
            >>> client('torrent-get', ids=range(1,11), fields=['name'])
            {u'torrents': [
              {u'name': u'Elvis spotted in Florida.mov'},
              {u'name': u'Bigfoot sings the hits'},
              # ...
              {u'name': u'a-song-of-ice-and-fire_final-chapter.txt'}
            ]}
        
        See the `README <https://github.com/edavis/transmission-fluid#readme>`_ for more information.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries
