Skip to main content

A Netsase music api

Project description

NeteaseMusicApi

一个网易云音乐的Api

食用使用教程

  1. 使用pip安装 pip install nemusicapi
  2. 导入包,创建api
    import nemusicapi
    api = Api()
    
  3. 然后就可以愉快的使用了

举个栗子例子

import os
from NEmusicApi import Api, QualityLevel

download_dir = './download'
cookie = '这里输入cookie'

api = Api(cookie=cookie, download_dir=download_dir)


def main(raw_song_name: str):
    res = api.refresh_song_data(raw_song_name)
    if res is None:
        return
    song_id, song_name = res
    
    level = QualityLevel.hires
    res = api.get_song_download_data(song_id, level=level)
    if res is None:
        return
    song_url, song_type = res
    
    file_name = f'{song_name}_{level.value}.{song_type}'
    if not os.path.exists(os.path.join(download_dir, file_name)):
        api.download_song(song_url, file_name)


if __name__ == '__main__':
    main('这里输入歌曲名')

注意事项

  • 创建api的时候,不输入cookie或者cookie对应的账号没有vip,都有可能导致获取信息不完整,需要自己测试
  • 创建api的时候,不输入download_dir,在使用download_song方法的时候会raise异常

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nemusicapi-0.0.5.tar.gz (8.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nemusicapi-0.0.5-py3-none-any.whl (8.9 kB view details)

Uploaded Python 3

File details

Details for the file nemusicapi-0.0.5.tar.gz.

File metadata

  • Download URL: nemusicapi-0.0.5.tar.gz
  • Upload date:
  • Size: 8.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.11.4 Windows/10

File hashes

Hashes for nemusicapi-0.0.5.tar.gz
Algorithm Hash digest
SHA256 bacc8ced40cdacfa8df7d82b0dba46eeccd20ca1d8f4d9c1eea03f3e021c759c
MD5 3a90dedaa0c5ea9bfb037a366301ec46
BLAKE2b-256 1407db8ce0b015239f657ba709ecd18dbe9d37499d526990629dd7006a7bce82

See more details on using hashes here.

File details

Details for the file nemusicapi-0.0.5-py3-none-any.whl.

File metadata

  • Download URL: nemusicapi-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 8.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.11.4 Windows/10

File hashes

Hashes for nemusicapi-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 6da9ac70119e3daff6ec8a023fc216c7708fc85837073c682b13dd381d981e2b
MD5 bc30abf023265e1dfbbf6fbb174e74b4
BLAKE2b-256 3729d70770ca72a121b12baca6fbcbfad14158048dc1315ba4d66642af60afc4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page