コード例 #1
0
def test_normal_play_song():
    file_path = get_file_path("play_list/normal_play_song")
    sid = "1699763"  # 没收
    type = "e"
    channel = "4221247"  # 缘系MHZ
    play_list = get_play_list(sid, type, channel)
    write_to_file(file_path, play_list)


# if __name__ == "__main__":
#     nose.runmodule()
コード例 #2
0
def test_programmes_collect():
    file_path = get_file_path("programmes_collect")
    programmes_collect = client.fm.programmes_collect()
    write_to_file(file_path, programmes_collect)
コード例 #3
0
def test_channels_collect():
    file_path = get_file_path("channels_collect")
    channels_collect = client.fm.channels_collect()
    write_to_file(file_path, channels_collect)
コード例 #4
0
def test_channels():
    file_path = get_file_path("channels")
    channels = client.fm.channels()
    write_to_file(file_path, channels)
コード例 #5
0
ファイル: test_fm.py プロジェクト: Unymicle/douban-fm-client
def test_channels():
    file_path = get_file_path("channels")
    channels = client.fm.channels()
    write_to_file(file_path, channels)
コード例 #6
0
def test_search_channel():
    file_path = get_file_path("search_channel")
    query = "华语"
    search_channel = client.fm.search_channel(query=query)
    write_to_file(file_path, search_channel)
コード例 #7
0
def test_song_detail():
    file_path = get_file_path("song_detail")
    s = {"1954748": "漂洋过海来看你"}
    sid = "1954748"
    song_detail = client.fm.song_detail(sid=sid)
    write_to_file(file_path, song_detail)
コード例 #8
0
def test_user_play_record():
    file_path = get_file_path("user_play_record")
    user_play_record = client.fm.user_play_record()
    write_to_file(file_path, user_play_record)
コード例 #9
0
ファイル: test_fm.py プロジェクト: Unymicle/douban-fm-client
def test_song_lyric():
    file_path = get_file_path("song_lyric")
    sid = "1954748"
    ssid = "1c3c"
    song_lyric = client.fm.song_lyric(sid=sid, ssid=ssid)
    write_to_file(file_path, song_lyric)
コード例 #10
0
ファイル: test_fm.py プロジェクト: Unymicle/douban-fm-client
def test_user_play_record():
    file_path = get_file_path("user_play_record")
    user_play_record = client.fm.user_play_record()
    write_to_file(file_path, user_play_record)
コード例 #11
0
ファイル: test_fm.py プロジェクト: Unymicle/douban-fm-client
def test_programme_detail():
    file_path = get_file_path("programme_detail")
    pid = "1364115"  # 日本BGN
    programme_detail = client.fm.programmes_detail(pid=pid)
    write_to_file(file_path, programme_detail)
コード例 #12
0
ファイル: test_fm.py プロジェクト: Unymicle/douban-fm-client
def test_hot_and_guess_programmes():
    file_path = get_file_path("hot_and_guess_programmes")
    hot_and_guess_programmes = client.fm.hot_and_guess_programmes()
    write_to_file(file_path, hot_and_guess_programmes)
コード例 #13
0
ファイル: test_fm.py プロジェクト: Unymicle/douban-fm-client
def test_programmes_collect():
    file_path = get_file_path("programmes_collect")
    programmes_collect = client.fm.programmes_collect()
    write_to_file(file_path, programmes_collect)
コード例 #14
0
ファイル: test_fm.py プロジェクト: Unymicle/douban-fm-client
def test_channels_collect():
    file_path = get_file_path("channels_collect")
    channels_collect = client.fm.channels_collect()
    write_to_file(file_path, channels_collect)
コード例 #15
0
def test_hot_and_guess_programmes():
    file_path = get_file_path("hot_and_guess_programmes")
    hot_and_guess_programmes = client.fm.hot_and_guess_programmes()
    write_to_file(file_path, hot_and_guess_programmes)
コード例 #16
0
def test_programme_detail():
    file_path = get_file_path("programme_detail")
    pid = "1364115"  # 日本BGN
    programme_detail = client.fm.programmes_detail(pid=pid)
    write_to_file(file_path, programme_detail)
コード例 #17
0
ファイル: test_fm.py プロジェクト: Unymicle/douban-fm-client
def test_user_info():
    file_path = get_file_path("user_info")
    user_info = client.fm.user_info()
    write_to_file(file_path, user_info)
コード例 #18
0
def test_song_lyric():
    file_path = get_file_path("song_lyric")
    sid = "1954748"
    ssid = "1c3c"
    song_lyric = client.fm.song_lyric(sid=sid, ssid=ssid)
    write_to_file(file_path, song_lyric)
コード例 #19
0
ファイル: test_fm.py プロジェクト: Unymicle/douban-fm-client
def test_song_detail():
    file_path = get_file_path("song_detail")
    s = {"1954748": "漂洋过海来看你"}
    sid = "1954748"
    song_detail = client.fm.song_detail(sid=sid)
    write_to_file(file_path, song_detail)
コード例 #20
0
def test_user_info():
    file_path = get_file_path("user_info")
    user_info = client.fm.user_info()
    write_to_file(file_path, user_info)
コード例 #21
0
ファイル: test_fm.py プロジェクト: Unymicle/douban-fm-client
def test_search_channel():
    file_path = get_file_path("search_channel")
    query = "华语"
    search_channel = client.fm.search_channel(query=query)
    write_to_file(file_path, search_channel)
コード例 #22
0
def test_search_programme():
    file_path = get_file_path("search_programme")
    query = "华语"
    search_programme = client.fm.search_programme(query=query)
    write_to_file(file_path, search_programme)
コード例 #23
0
ファイル: test_fm.py プロジェクト: Unymicle/douban-fm-client
def test_search_programme():
    file_path = get_file_path("search_programme")
    query = "华语"
    search_programme = client.fm.search_programme(query=query)
    write_to_file(file_path, search_programme)