User Solihull - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T23:06:46Zhttp://stackoverflow.com/feeds/user/111339http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/907579/making-a-python-script-executable-chmod7551Making a Python script executable chmod755?Solihull2009-05-25T18:05:23Z2009-12-04T15:14:42Z
<p>My hosting provider says my python script must be made to be executable(chmod755). What does this mean & how do I do it?</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/904977/somewhere-to-store-python-scripts-run-them-online0Somewhere to store Python scripts & run them online?Solihull2009-05-25T00:40:29Z2009-10-12T03:52:40Z
<p>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?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/904928/python-strftime-date-decimal-remove-04Python strftime - date decimal-remove 0?Solihull2009-05-25T00:11:49Z2009-09-15T16:31:23Z
<p>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?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/907660/gather-all-python-modules-used-into-one-folder6Gather all Python modules used into one folder?Solihull2009-05-25T18:31:23Z2009-05-25T21:38:57Z
<p>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. Is there a program that will get everything needed to make that script run into one folder?</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/906412/can-someone-explain-the-toolserver0Can someone explain the toolserver? [closed]Solihull2009-05-25T11:38:12Z2009-05-25T11:41:44Z
<p>Can someone explain what the Wikimedia toolserver actually is & what you can do with it? <a href="http://meta.wikimedia.org/wiki/Toolserver" rel="nofollow">http://meta.wikimedia.org/wiki/Toolserver</a>
Thanks!</p>
http://stackoverflow.com/questions/905902/storing-python-scripts-on-a-webserver0Storing Python scripts on a webserverSolihull2009-05-25T08:42:53Z2009-05-25T11:21:18Z
<p>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-Clarification-I would like to be able to upload the script which does stuff on the internet-no data is stored on my computer. I then need to schedule it to run once a day.</p>
http://stackoverflow.com/questions/904894/how-to-do-this-with-datetime-getpage-in-python0How to do this with datetime & getpage in Python?Solihull2009-05-24T23:50:55Z2009-05-24T23:59:31Z
<p>Hey guys,
Currently having some problems-</p>
<pre><code>now = datetime.datetime.now()
month = now.strftime("%B")
site = wikipedia.getSite('en', 'wikiquote')
page = wikipedia.Page(site, u"Wikiquote:Quote_of_the_day:abc")
</code></pre>
<p>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.</p>
<p>How could I do it?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/904852/problem-with-datetime-module-python0Problem with datetime module-PythonSolihull2009-05-24T23:20:22Z2009-05-24T23:29:03Z
<p>How come this works:</p>
<pre><code>import datetime
now = datetime.datetime.now()
month = '%d' % now.month
print month
</code></pre>
<p>But this doesn't?</p>
<pre><code>import datetime
now = datetime.datetime.now()
month = '%m' % now.month
print month
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/904746/remove-everything-after-in-python0Remove everything after ... in python?Solihull2009-05-24T21:56:49Z2009-05-24T22:25:42Z
<p>Hi guys,
Pretty new to Python so be nice please!</p>
<p>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 some text which doesn't change.</p>
<p>Hope that makes sense!</p>
<p>Thanks</p>
http://stackoverflow.com/questions/901074/replace-in-python-equivalent0Replace in Python-* equivalent?Solihull2009-05-23T07:30:50Z2009-05-23T08:10:38Z
<p>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?</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/900306/pywikipedia-name-wikiquote-is-not-defined1pywikipedia name wikiquote is not defined?Solihull2009-05-22T22:39:57Z2009-05-22T23:12:48Z
<p>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.</p>
<p>This is when I start the code off like this-</p>
<pre><code>import wikipedia
site = wikiquote.getSite()
</code></pre>
<p>Yet if I was to start it with wikipedia written instead of wikiquote, it works. From what I can understand it should work on other Mediawiki sites?</p>
<p>Help gratefully appreciated!</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/907579/making-a-python-script-executable-chmod755/907595#907595Comment by Solihull on Making a Python script executable chmod755?Solihull2009-05-25T18:13:05Z2009-05-25T18:13:05ZThanks for all the answers, very useful!!!!!!!http://stackoverflow.com/questions/905902/storing-python-scripts-on-a-webserver/906016#906016Comment by Solihull on Storing Python scripts on a webserverSolihull2009-05-25T11:21:38Z2009-05-25T11:21:38ZThat sounds very possible!http://stackoverflow.com/questions/904928/python-strftime-date-decimal-remove-0/904941#904941Comment by Solihull on Python strftime - date decimal-remove 0?Solihull2009-05-25T00:22:13Z2009-05-25T00:22:13ZThank you! You are a genius!http://stackoverflow.com/questions/904894/how-to-do-this-with-datetime-getpage-in-python/904900#904900Comment by Solihull on How to do this with datetime & getpage in Python?Solihull2009-05-25T00:00:01Z2009-05-25T00:00:01ZOh how easy it was! Thank you!http://stackoverflow.com/questions/904852/problem-with-datetime-module-python/904856#904856Comment by Solihull on Problem with datetime module-PythonSolihull2009-05-24T23:29:52Z2009-05-24T23:29:52ZThanks, suddenly realised that rereading it! Dur!http://stackoverflow.com/questions/904852/problem-with-datetime-module-python/904856#904856Comment by Solihull on Problem with datetime module-PythonSolihull2009-05-24T23:28:19Z2009-05-24T23:28:19ZAccording to this-<a href="http://docs.python.org/library/time.html" rel="nofollow">docs.python.org/library/time.html</a> it is?http://stackoverflow.com/questions/904746/remove-everything-after-in-python/904756#904756Comment by Solihull on Remove everything after ... in python?Solihull2009-05-24T22:51:43Z2009-05-24T22:51:43ZWorked perfectly thanks, as I'm sure Ayman & Alex's did as well, so thank you all.http://stackoverflow.com/questions/901074/replace-in-python-equivalentComment by Solihull on Replace in Python-* equivalent?Solihull2009-05-23T07:52:23Z2009-05-23T07:52:23ZAt the moment I'm trying to use . but it doesn't seem to be workinghttp://stackoverflow.com/questions/901074/replace-in-python-equivalentComment by Solihull on Replace in Python-* equivalent?Solihull2009-05-23T07:42:19Z2009-05-23T07:42:19ZEDIT-So I have a string & I am replacing some characters with replace.(). Yet sometimes the text I want to replace changes-how can I specify to replace it whatever is, say, within the brackets?http://stackoverflow.com/questions/900306/pywikipedia-name-wikiquote-is-not-defined/900320#900320Comment by Solihull on pywikipedia name wikiquote is not defined?Solihull2009-05-22T22:55:20Z2009-05-22T22:55:20ZSorry, me being very stupid! Thanks.