Skip to content

Commit

Permalink
v0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
morguldir committed Dec 25, 2019
1 parent 54db598 commit f9fa9b3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
History
-------

v0.6.3
------

* Fix quality options using enum names instead of values - morguldir_
* Handle situations where tidal doesn't set the version tag - morguldir_

v0.6.2
------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Thomas Amland, morguldir'

# The full version, including alpha/beta/rc tags
release = '0.6.2'
release = '0.6.3'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setup(
name='tidalapi',
version='0.6.2',
version='0.6.3',
description='Unofficial API for TIDAL music streaming service.',
long_description=long_description,
author='Thomas Amland',
Expand Down

5 comments on commit f9fa9b3

@morguldir
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hello there!!!my friend this project is like tidal?answer me please

I'm not sure if i understand what you mean, this is an api that allows developers to easily interact with TIDAL.

@yusufusta
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whats about get sream url?

@morguldir
Copy link
Collaborator Author

@morguldir morguldir commented on f9fa9b3 Dec 27, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whats about get sream url?

streamUrl is the api endpoint that get_media_url uses.

def get_media_url(self, track_id):
params = {'soundQuality': self._config.quality}
r = self.request('GET', 'tracks/%s/streamUrl' % track_id, params)
return r.json()['url']

MY FRIEND I DONT LIKE TIDAL!!!NOT ANYMORE!!!WHEN BEGINNING INCREASE UNLIMITED RESULTS...AND NOW JUST VERY FEW!!!I DONT KNOW THE REASON...BIG DISADVANTAGE!!!TELL ME PLEASE YOUR PROJECT IS A TIDAL CLONE?

This is an interface between python and the tidal music service available at tidal.com. The maximum amount of results you can get from a tidal search is 300, i added a commit allowing you to specify how many results you want.

@morguldir
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

my friendddddddddd unfortunatelyyyyyyyyyyy I am not programmer...but please tell me dude you can make it load unlimited results???

As i said, the maximum results tidal can give you is 300, and i have no way of changing that.

@morguldir
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OOOOOOOOOO I TELL YOU THAT BECAUSE I SEE THIS , i added a commit allowing you to specify how many results you want.

Right, you can change the amount of results up to 300, previously it always returned 50.

Please sign in to comment.