File: data.py

package info (click to toggle)
wxpython4.0 4.2.3%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 221,752 kB
  • sloc: cpp: 962,555; python: 230,573; ansic: 170,731; makefile: 51,756; sh: 9,342; perl: 1,564; javascript: 584; php: 326; xml: 200
file content (57 lines) | stat: -rw-r--r-- 2,926 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57

musicdata = [
    [1, "Bad English", "The Price Of Love", "Rock"],
    [2, "DNA featuring Suzanne Vega", "Tom's Diner", "Rock"],
    [3, "George Michael", "Praying For Time", "Rock"],
    [4, "Gloria Estefan", "Here We Are", "Rock"],
    [5, "Linda Ronstadt", "Don't Know Much", "Rock"],
    [6, "Michael Bolton", "How Am I Supposed To Live Without You", "Blues"],
    [7, "Paul Young", "Oh Girl", "Rock"],
    [8, "Paula Abdul", "Opposites Attract", "Rock"],
    [9, "Richard Marx", "Should've Known Better", "Rock"],
    [10, "Rod Stewart", "Forever Young", "Rock"],
    [11, "Roxette", "Dangerous", "Rock"],
    [12, "Sheena Easton", "The Lover In Me", "Rock"],
    [13, "Sinead O'Connor", "Nothing Compares 2 U", "Rock"],
    [14, "Stevie B.", "Because I Love You", "Rock"],
    [15, "Taylor Dayne", "Love Will Lead You Back", "Rock"],
    [16, "The Bangles", "Eternal Flame", "Rock"],
    [17, "Wilson Phillips", "Release Me", "Rock"],
    [18, "Billy Joel", "Blonde Over Blue", "Rock"],
    [19, "Billy Joel", "Famous Last Words", "Rock"],
    [20, "Janet Jackson", "State Of The World", "Rock"],
    [21, "Janet Jackson", "The Knowledge", "Rock"],
    [22, "Spyro Gyra", "End of Romanticism", "Jazz"],
    [23, "Spyro Gyra", "Heliopolis", "Jazz"],
    [24, "Spyro Gyra", "Jubilee", "Jazz"],
    [25, "Spyro Gyra", "Little Linda", "Jazz"],
    [26, "Spyro Gyra", "Morning Dance", "Jazz"],
    [27, "Spyro Gyra", "Song for Lorraine", "Jazz"],
    [28, "Yes", "Owner Of A Lonely Heart", "Rock"],
    [29, "Yes", "Rhythm Of Love", "Rock"],
    [30, "Billy Joel", "Lullabye (Goodnight, My Angel)", "Rock"],
    [31, "Billy Joel", "The River Of Dreams", "Rock"],
    [32, "Billy Joel", "Two Thousand Years", "Rock"],
    [33, "Janet Jackson", "Alright", "Rock"],
    [34, "Janet Jackson", "Black Cat", "Rock"],
    [35, "Janet Jackson", "Come Back To Me", "Rock"],
    [36, "Janet Jackson", "Escapade", "Rock"],
    [37, "Janet Jackson", "Love Will Never Do (Without You)", "Rock"],
    [38, "Janet Jackson", "Miss You Much", "Rock"],
    [39, "Janet Jackson", "Rhythm Nation", "Rock"],
    [40, "Cusco", "Dream Catcher", "New Age"],
    [41, "Cusco", "Geronimos Laughter", "New Age"],
    [42, "Cusco", "Ghost Dance", "New Age"],
    [43, "Blue Man Group", "Drumbone", "New Age"],
    [44, "Blue Man Group", "Endless Column", "New Age"],
    [45, "Blue Man Group", "Klein Mandelbrot", "New Age"],
    [46, "Kenny G", "Silhouette", "Jazz"],
    [47, "Sad", "Smooth Operator", "Jazz"],
    [48, "David Arkenstone", "Papillon (On The Wings Of The Butterfly)", "New Age"],
    [49, "David Arkenstone", "Stepping Stars", "New Age"],
    [50, "David Arkenstone", "Carnation Lily Lily Rose", "New Age"],
    [51, "David Lanz", "Behind The Waterfall", "New Age"],
    [52, "David Lanz", "Cristofori's Dream", "New Age"],
    [53, "David Lanz", "Heartsounds", "New Age"],
    [54, "David Lanz", "Leaves on the Seine", "New Age"],
]