vote up 0 vote down star

Hey guys, Currently having some problems-

now = datetime.datetime.now()
month = now.strftime("%B")


site = wikipedia.getSite('en', 'wikiquote')
page = wikipedia.Page(site, u"Wikiquote:Quote_of_the_day:abc")

I need to get abc to change into the name of the month before it then tries to get the page, yet everything I try it gives an error of some sort.

How could I do it?

Thanks!

flag

60% accept rate

3 Answers

vote up 1 vote down check

Would this work?

page = wikipedia.Page(site, u"Wikiquote:Quote_of_the_day:" + month)
link|flag
Oh how easy it was! Thank you! – Solihull May 25 at 0:00
vote up 0 vote down

Did you try this:

page = wikipedia.Page(site, u"Wikiquote:Quote_of_the_day:%s" % month )
link|flag
vote up 2 vote down

The page URL format is actually Wikiquote:Quote_of_the_day/Month. Try this:

page = wikipedia.Page(site, u"Wikiquote:Quote_of_the_day/%s" % month)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.