Skip to content

Commit 83eb16b

Browse files
committed
Another large overhaul
Remove camelCasing, arrange API methods in alphabetical order so finding the one you want is easier. Signed-off-by: Eric B Munson <eric@munsonfam.org>
1 parent 288b03b commit 83eb16b

File tree

5 files changed

+1782
-1731
lines changed

5 files changed

+1782
-1731
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
##7.0.0
2+
3+
Move to a more pythonic interface. This update drops all camelCasing and moves to more modern python
4+
where we can (f-strings instead of format() etc.). It's another sizeable udpate but should be better
5+
for some value of better.
6+
17
##6.0.2
28

39
Remove @deprecated decorator for now, this makes python 3.13 a requirement and I want to support 3.12

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import libopensonic
4242
conn = libopensonic.Connection('https://music.example.com' , 'myuser' ,
4343
'secretpass' , port=443)
4444
# Let's get 2 completely random songs
45-
songs = conn.getRandomSongs(size=2)
45+
songs = conn.get_random_songs(size=2)
4646
# We'll just pretty print the results we got to the terminal
4747
print(songs[0])
4848
print(songs[1])

src/libopensonic/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717

1818

1919
#Semantic versioning string for the library
20-
__version__ = '6.0.2'
20+
__version__ = '7.0.0'

0 commit comments

Comments
 (0)