Using : Python 3.4
I am trying to make use of the wikipedia scripts/modules from here :
http://pastebin.com/FVDxLWNG (wikipedia.py)
http://pastebin.com/idw8vQQK (wiki2plain.py)
The issue I have is with following code :
def article(self, article):
url = self.url_article % (self.lang, urllib.parse.quote_plus(article))
content = self.__fetch(url).read()
if content.upper().startswith("#REDIRECT"):
match = re.match('(?i)#REDIRECT \[\[([^\[\]]+)\]\]', content)
if not match == None:
return self.article(match.group(1))
raise WikipediaError('Can\'t found redirect article.')
return content
If I run this I get the error : "startswith first arg must be bytes or a tuple of bytes, not str" , so I change it to
if content.upper().startswith(b"#REDIRECT"):
And it runs OK. Then , I get "TypeError: can't use a string pattern on a bytes-like object" somewhere along the line when I try to use it. I already changed a bit of the script to work in 3.4 but I just don't seem to get this working. How do I resolve this TypeError
issue on startswith?
File "C:\Anaconda3\lib\re.py", line 179, in sub return _compile(pattern, flags).sub(repl, string, count)
TypeError: can't use a string pattern on a bytes-like object