8000 GitHub - Hugo7650/vgmdb: Python-based API for fetching music and soundtrack data from VGMdb.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Hugo7650/vgmdb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vgmdb

Python-based API for fetching music and soundtrack data from VGMDB.

Installation

clone the repository and run

pip install vgmdb

Usage

from vgmdb import VGMdb

# Search
results = VGMdb.search('Final Fantasy')

# Search albums
albums = VGMdb.search_albums('Final Fantasy')

# Get album details from search results
album = albums[0]
album.get_details()

# Get album by ID
album = VGMdb.get_album(1)

# Set cookies (with login, there is more covers available)
VGMdb.set_cookies({'key': 'value'})

# Set proxies
VGMdb.set_proxies('https://host:port')
VGMdb.set_proxies('socks5://user:pass@host:port')  # requires PySocks or requests[socks]

About

Python-based API for fetching music and soundtrack data from VGMdb.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages

0