-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
executable file
·177 lines (136 loc) · 4.72 KB
/
main.py
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
#!/usr/bin/env python
#
# Copyright 2007 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import urllib2
import HTMLParser
from google.appengine.ext import webapp
from google.appengine.ext.webapp import util
class MainHandler(webapp.RequestHandler):
def get(self):
song = self.request.get('song')
song = song.encode('utf-8')
song = urllib2.quote(song)
singer = self.request.get('singer')
singer = singer.encode('utf-8')
singer = urllib2.quote(singer)
url = "http://lyrics.oiktv.com/search.php?sn=" + singer + "&an=&ln=" + song + "&lrc=&sx=all"
url = url.encode('utf-8')
lyricWeb = urllib2.urlopen(url)
lyricContent = lyricWeb.read()
lyricWeb.close()
lyricContent = lyricContent.replace("\" + \"", '')
lyricContent = lyricContent.replace("\"+\"", '')
Parser = LyricHTMLURLParser()
#self.response.out.write(lyricContent)
try:
Parser.feed(lyricContent)
#Parser.close()
minimum = 99
lyricURLIndex = 0
i = 0
while i < len(Parser.songName):
if len(Parser.songName[i]) < minimum:
minimum = len(Parser.songName[i])
lyricURLIndex = i
i = i + 1
lyricURL = Parser.lyricURL[lyricURLIndex]
except:
self.response.out.write('')
if len(Parser.lyricURL) == 0:
url = "http://lyrics.oiktv.com/search.php?sn=&an=&ln=" + song + "&lrc=&sx=all"
url = url.encode('utf-8')
lyricWeb = urllib2.urlopen(url)
lyricContent = lyricWeb.read()
lyricWeb.close()
lyricContent = lyricContent.replace("\" + \"", '')
lyricContent = lyricContent.replace("\"+\"", '')
Parser = LyricHTMLURLParser()
#self.response.out.write(lyricContent)
try:
Parser.feed(lyricContent)
#Parser.close()
minimum = 99
lyricURLIndex = 0
i = 0
while i < len(Parser.songName):
if len(Parser.songName[i]) < minimum:
minimum = len(Parser.songName[i])
lyricURLIndex = i
i = i + 1
lyricURL = Parser.lyricURL[lyricURLIndex]
except:
self.response.out.write('')
if len(Parser.lyricURL) > 0:
# self.response.out.write(lyricURL)
url = "http://lyrics.oiktv.com/" + lyricURL
lyricWeb = urllib2.urlopen(url)
lyricContent = lyricWeb.read()
lyricWeb.close()
lyricContent = lyricContent[lyricContent.index("<h2 class=\"lrc_g6\">"):-1]
# self.response.out.write(lyricContent)
Parser = LyricHTMLParser()
lyricContent = lyricContent.replace("\" + \"", '')
lyricContent = lyricContent.replace("\"+\"", '')
try:
Parser.feed(lyricContent)
except:
self.response.out.write('')
resultLyric = ''
for line in Parser.lyrics:
resultLyric += line
self.response.out.write(resultLyric)
class LyricHTMLURLParser(HTMLParser.HTMLParser):
lyricURL = []
songName = []
find = False
def __init__(self):
HTMLParser.HTMLParser.__init__(self)
self.lyricURL = []
self.songName = []
self.find = False
def handle_starttag(self, tag, attrs):
if tag == 'a' and attrs[0][1].count('&lid=') != 0 and not self.find:
self.lyricURL.append(attrs[0][1])
self.find = True
def handle_data(self, data):
if self.find:
self.songName.append(data)
self.find = False
class LyricHTMLParser(HTMLParser.HTMLParser):
lyrics = []
def __init__(self):
HTMLParser.HTMLParser.__init__(self)
self.lyrics = []
def handle_data(self, data):
data = data.strip()
if data and not hasattr(self, 'stop'):
self.lyrics.append(data)
def handle_starttag(self, tag, attrs):
if tag == 'br':
self.lyrics.append('\n')
def handle_endtag(self, tag):
if tag == 'br':
self.lyrics.append('\n')
if tag == 'div':
self.stop = True
if tag == 'h2':
self.lyrics.append('\n\n')
def main():
application = webapp.WSGIApplication([('/', MainHandler)],
debug=True)
util.run_wsgi_app(application)
if __name__ == '__main__':
main()