User Solihull - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T23:06:46Z http://stackoverflow.com/feeds/user/111339 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/907579/making-a-python-script-executable-chmod755 1 Making a Python script executable chmod755? Solihull 2009-05-25T18:05:23Z 2009-12-04T15:14:42Z <p>My hosting provider says my python script must be made to be executable(chmod755). What does this mean &amp; how do I do it?</p> <p>Cheers!</p> http://stackoverflow.com/questions/904977/somewhere-to-store-python-scripts-run-them-online 0 Somewhere to store Python scripts & run them online? Solihull 2009-05-25T00:40:29Z 2009-10-12T03:52:40Z <p>Does anyone know of anywhere where you can put a script online &amp; 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-0 4 Python strftime - date decimal-remove 0? Solihull 2009-05-25T00:11:49Z 2009-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-folder 6 Gather all Python modules used into one folder? Solihull 2009-05-25T18:31:23Z 2009-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 &amp; 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-toolserver 0 Can someone explain the toolserver? [closed] Solihull 2009-05-25T11:38:12Z 2009-05-25T11:41:44Z <p>Can someone explain what the Wikimedia toolserver actually is &amp; 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-webserver 0 Storing Python scripts on a webserver Solihull 2009-05-25T08:42:53Z 2009-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-python 0 How to do this with datetime & getpage in Python? Solihull 2009-05-24T23:50:55Z 2009-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-python 0 Problem with datetime module-Python Solihull 2009-05-24T23:20:22Z 2009-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-python 0 Remove everything after ... in python? Solihull 2009-05-24T21:56:49Z 2009-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-equivalent 0 Replace in Python-* equivalent? Solihull 2009-05-23T07:30:50Z 2009-05-23T08:10:38Z <p>If I am finding &amp; replacing some text how can I get it to replace some text that will change each day so ie anything between (( &amp; )) whatever it is?</p> <p>Cheers!</p> http://stackoverflow.com/questions/900306/pywikipedia-name-wikiquote-is-not-defined 1 pywikipedia name wikiquote is not defined? Solihull 2009-05-22T22:39:57Z 2009-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#907595 Comment by Solihull on Making a Python script executable chmod755? Solihull 2009-05-25T18:13:05Z 2009-05-25T18:13:05Z Thanks for all the answers, very useful!!!!!!! http://stackoverflow.com/questions/905902/storing-python-scripts-on-a-webserver/906016#906016 Comment by Solihull on Storing Python scripts on a webserver Solihull 2009-05-25T11:21:38Z 2009-05-25T11:21:38Z That sounds very possible! http://stackoverflow.com/questions/904928/python-strftime-date-decimal-remove-0/904941#904941 Comment by Solihull on Python strftime - date decimal-remove 0? Solihull 2009-05-25T00:22:13Z 2009-05-25T00:22:13Z Thank you! You are a genius! http://stackoverflow.com/questions/904894/how-to-do-this-with-datetime-getpage-in-python/904900#904900 Comment by Solihull on How to do this with datetime & getpage in Python? Solihull 2009-05-25T00:00:01Z 2009-05-25T00:00:01Z Oh how easy it was! Thank you! http://stackoverflow.com/questions/904852/problem-with-datetime-module-python/904856#904856 Comment by Solihull on Problem with datetime module-Python Solihull 2009-05-24T23:29:52Z 2009-05-24T23:29:52Z Thanks, suddenly realised that rereading it! Dur! http://stackoverflow.com/questions/904852/problem-with-datetime-module-python/904856#904856 Comment by Solihull on Problem with datetime module-Python Solihull 2009-05-24T23:28:19Z 2009-05-24T23:28:19Z According 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#904756 Comment by Solihull on Remove everything after ... in python? Solihull 2009-05-24T22:51:43Z 2009-05-24T22:51:43Z Worked perfectly thanks, as I'm sure Ayman &amp; Alex's did as well, so thank you all. http://stackoverflow.com/questions/901074/replace-in-python-equivalent Comment by Solihull on Replace in Python-* equivalent? Solihull 2009-05-23T07:52:23Z 2009-05-23T07:52:23Z At the moment I'm trying to use . but it doesn't seem to be working http://stackoverflow.com/questions/901074/replace-in-python-equivalent Comment by Solihull on Replace in Python-* equivalent? Solihull 2009-05-23T07:42:19Z 2009-05-23T07:42:19Z EDIT-So I have a string &amp; 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#900320 Comment by Solihull on pywikipedia name wikiquote is not defined? Solihull 2009-05-22T22:55:20Z 2009-05-22T22:55:20Z Sorry, me being very stupid! Thanks.