Search Results

1
vote
2answers
49 views

pywikipedia name wikiquote is not defined?

Hi guys, I'm writing a bot for Wikipedia but have a problem. When I want to get stuff from another Wikimedia site I get the error - error-name 'wikiquote' is not defined. This is when I st …
0
votes
1answer
96 views

Replace in Python-* equivalent?

If I am finding & replacing some text how can I get it to replace some text that will change each day so ie anything between (( & )) whatever it is? Cheers! …
0
votes
3answers
204 views

Remove everything after … in python?

Hi guys, Pretty new to Python so be nice please! I have a string of text-how do I remove all the text after some certain characters? The text after will change so I want to remove after so …
0
votes
2answers
82 views

Problem with datetime module-Python

How come this works: import datetime now = datetime.datetime.now() month = '%d' % now.month print month But this doesn't? import datetime now = da …
0
votes
3answers
35 views

How to do this with datetime & getpage in Python?

Hey guys, Currently having some problems- now = datetime.datetime.now() month = now.strftime("%B") site = wikipedia.getSite('en', 'wikiquote') page = wikipedia.Page(site, u"Wikiqu …
4
votes
5answers
439 views

Python strftime - date decimal-remove 0?

When using Python strftime, is there a way to remove the first 0 of the date if it's before the 10th ie. so 01 is 1? Can't find a %thingy for that? Thanks! …
0
votes
6answers
183 views

Somewhere to store Python scripts & run them online?

Does anyone know of anywhere where you can put a script online & then run it from there so you can run it wherever you are in the world? Thanks! …
0
votes
2answers
94 views

Storing Python scripts on a webserver

Following on my previous question, if I have some hosting how can I put a python script on their that I can then run from there? Do I need to do something special to run it/install something? EDIT …
1
vote
5answers
272 views

Making a Python script executable chmod755?

My hosting provider says my python script must be made to be executable(chmod755). What does this mean & how do I do it? Cheers! …
6
votes
3answers
152 views

Gather all Python modules used into one folder?

I don't think this has been asked before-I have a folder that has lots of different .py files. The script I've made only uses some-but some call others & I don't know all the ones being used. …