-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscraper.py
executable file
·44 lines (33 loc) · 931 Bytes
/
scraper.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
#!/usr/bin/python
import pykcd, io, re, os, string
from sets import Set
OUTFILE = 'xkcd_transcripts'
TMPFILE = 'tmp'
NEWEST = 1604
blacklist = Set([404])
try:
os.unlink(OUTFILE)
except OSError:
pass
for i in range(1, NEWEST):
if i in blacklist:
continue
print 'Getting Transcript for ' + str(i)
strip = pykcd.XKCDStrip(i)
# Remove scene descriptions [[*]] and alt text {{*}}
trans = re.sub('[\[{(]+.+?[\]})]+', '', strip.transcript, flags=re.DOTALL)
trans = trans.encode('ascii', 'ignore')
# print trans,
with open(TMPFILE,'w') as file:
file.write(trans)
with open(TMPFILE,'r') as file:
with open(OUTFILE,'a') as file2:
for line in file:
# Find lines with speaker:
if re.match('.*?: ', line):
# print line,
# Remove speaker: statements
line = re.sub('.*?: ', '', line, count=1)
if line and line!='\n':
file2.write(line)
os.unlink(TMPFILE)