/usr/lib/python3/dist-packages/tunigo-1.0.0.egg-info/PKG-INFO is in python3-tunigo 1.0.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | Metadata-Version: 1.1
Name: tunigo
Version: 1.0.0
Summary: Python API for the browse feature of Spotify
Home-page: https://github.com/trygveaa/python-tunigo
Author: Trygve Aaberge
Author-email: trygveaa@gmail.com
License: Apache License, Version 2.0
Description: *************
Python-Tunigo
*************
.. image:: https://img.shields.io/pypi/v/tunigo.svg?style=flat
:target: https://pypi.python.org/pypi/tunigo/
:alt: Latest PyPI version
.. image:: https://img.shields.io/pypi/dm/tunigo.svg?style=flat
:target: https://pypi.python.org/pypi/tunigo/
:alt: Number of PyPI downloads
.. image:: https://img.shields.io/travis/trygveaa/python-tunigo/master.png?style=flat
:target: https://travis-ci.org/trygveaa/python-tunigo
:alt: Travis CI build status
.. image:: https://img.shields.io/coveralls/trygveaa/python-tunigo/master.svg?style=flat
:target: https://coveralls.io/r/trygveaa/python-tunigo?branch=master
:alt: Test coverage
Python-Tunigo is a python package that allows for simple access to `Tunigo
<http://tunigo.com/>`_'s API. This is an API for fetching featured playlists and
new releases for `Spotify <https://www.spotify.com/>`_. It supports featured
playlists, top playlists, new album releases and playlists for a range of
different genres.
Tunigo's API is what the Spotify client uses to provide its Browse-feature.
Note that the API is not documented or officially released, so it may change at
any time.
Installation
============
Debian/Ubuntu/Raspbian: Install the ``python-tunigo`` or the ``python3-tunigo``
package from `apt.mopidy.com <http://apt.mopidy.com/>`_::
sudo apt-get install python-tunigo
sudo apt-get install python3-tunigo
Arch Linux: Install the ``python2-tunigo`` or the ``python-tunigo`` package
from `AUR <https://aur.archlinux.org/packages/mopidy-spotify/>`_, e.g.::
yaourt -S python2-tunigo
yaourt -S python-tunigo
Else: Install the ``tunigo`` package from PyPI::
pip install tunigo
Examples
========
.. code-block:: python
import tunigo
tunigo = tunigo.Tunigo()
for playlist in tunigo.get_featured_playlists():
print(playlist.title)
See the ``examples/`` directory for further examples.
License
=======
Python-Tunigo is licensed under the `Apache License, Version 2.0
<http://www.apache.org/licenses/LICENSE-2.0>`_.
Project resources
=================
- `Source code <https://github.com/trygveaa/python-tunigo>`_
- `Issue tracker <https://github.com/trygveaa/python-tunigo/issues>`_
- `Download development snapshot <https://github.com/trygveaa/python-tunigo/archive/master.tar.gz#egg=python-tunigo-dev>`_
Changelog
=========
v1.0.0 (2016-02-07)
-------------------
- Add support for specifying a proxy to use.
- Don't specify region in API call if not given. (Fixes: #2)
- Add the new field Release.artist_uri.
- Fix type of Release.created to be int all places.
- Add tests for all classes.
v0.1.3 (2014-11-29)
-------------------
- Fix check for content-type so it doesn't fail after a change in the API.
v0.1.2 (2014-08-03)
-------------------
- Fix that some genres were not listed by using the same query options as
play.spotify.com.
v0.1.1 (2014-07-21)
-------------------
- Allow Genre- and SubGenre-objects as arguments to get_genre_playlists.
- Allow a SubGenre to be created with main_genre as a string.
- Add __repr__ and __str__ methods to classes.
v0.1.0 (2014-06-24)
-------------------
- Initial release.
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries
|