User Andrew Wilkinson - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T03:49:34Z http://stackoverflow.com/feeds/user/2990 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1546041/xml-post-rest-request-using-python/1546053#1546053 0 Answer by Andrew Wilkinson for XML POST REST Request using Python Andrew Wilkinson 2009-10-09T21:08:55Z 2009-10-09T21:08:55Z <p>It's common to return a 200 response even when a 201 response would strictly be more appropriate. Are you sure that the request isn't correctly processed even if you are getting a 'correct' response?</p> http://stackoverflow.com/questions/759729/performance-considerations-using-multiple-layers-of-generators-in-python/760007#760007 2 Answer by Andrew Wilkinson for Performance Considerations Using Multiple Layers of Generators in Python? Andrew Wilkinson 2009-04-17T11:04:33Z 2009-04-17T11:04:33Z <p>There is nothing wrong with chaining generators, but in this example there is no reason for A to call self.AB, it can just loop over items to get the same result.</p> <p>You should write your code as clearly as you can and if it's slow then use a profiler to determine where the bottleneck is. Contrived examples such as this one are too far from reality to be useful indicators of performance.</p> http://stackoverflow.com/questions/713173/prevent-anyone-from-executing-your-web-service/713202#713202 0 Answer by Andrew Wilkinson for Prevent anyone from executing your web service? Andrew Wilkinson 2009-04-03T09:27:21Z 2009-04-03T09:27:21Z <p>What's to stop someone requesting a webpage, parsing the results to pull out the key and then calling the webservice with that?</p> <p>You could check the referrer header to check the call is coming from one of your pages, but that is also easy to spoof.</p> <p>The only way I can see to solve this is to require authentication. If your webpages that call the webservice require the user to be logged in then you can check the that they're logged in when they call the webservice. This doesn't stop other pages from using your webservice, but it does let you track usage more and with some rate limiting you should be able to prevent abuse of your service.</p> <p>If you really don't want to risk your webservice being abused then don't make it public. That's the only failsafe solution.</p> http://stackoverflow.com/questions/674304/pythons-use-of-new-and-init/674377#674377 2 Answer by Andrew Wilkinson for Python's use of __new__ and __init__ ? Andrew Wilkinson 2009-03-23T17:23:42Z 2009-03-23T17:26:35Z <p>__new__ should return a new, blank instance of a class. __init__ is then called to initialise that instance. You're not calling __init__ in the "NEW" case of __new__, so it's being called for you. The code that is calling <code>__new__</code> doesn't keep track of whether __init__ has been called on a particular instance or not nor should it, because you're doing something very unusual here.</p> <p>You could add an attribute to the object in the __init__ function to indicate that it's been initialised. Check for the existence of that attribute as the first thing in __init__ and don't proceed any further if it has been.</p> http://stackoverflow.com/questions/657607/setting-the-selected-value-on-a-django-forms-choicefield/657979#657979 0 Answer by Andrew Wilkinson for Setting the selected value on a Django forms.ChoiceField Andrew Wilkinson 2009-03-18T12:06:46Z 2009-03-18T12:06:46Z <p>To be sure I need to see how you're rendering the form. The initial value is only used in a unbound form, if it's bound and a value for that field is not included nothing will be selected.</p> http://stackoverflow.com/questions/654567/how-do-i-process-a-complex-graphical-ui-element-in-a-django-form/654613#654613 1 Answer by Andrew Wilkinson for How do I process a complex graphical UI element in a django form? Andrew Wilkinson 2009-03-17T15:00:32Z 2009-03-17T15:00:32Z <p>Your question is very vague so I suggest you read the Django documentation on <a href="http://docs.djangoproject.com/en/dev/howto/custom-model-fields/" rel="nofollow">writing a custom field</a> and hopefully that will help you get started. You might also want to investigate writing a custom widget. Unfortunately the documentation is bit lacking on that, but a Google search brings up several useful blog posts, including <a href="http://jannisleidel.com/2008/11/wysiwym-editor-widget-django-admin-interface/" rel="nofollow">this one</a>.</p> http://stackoverflow.com/questions/650997/partially-null-dates-in-mysql-django/651143#651143 0 Answer by Andrew Wilkinson for Partially null dates in MySQL/Django Andrew Wilkinson 2009-03-16T16:27:25Z 2009-03-16T16:27:25Z <p>When MySQL is running in <a href="http://dev.mysql.com/doc/refman/5.1/en/server-sql-mode.html#sqlmode%5Fallow%5Finvalid%5Fdates" rel="nofollow">ALLOW_INVALID_DATES</a> mode it doesn't perform any validation checking on the input so you can store invalid dates. This is an extension to standard SQL and because Django is cross-database compatible it doesn't support this. Also, Django converts dates into Python date objects which also don't support partial dates.</p> <p>Your best bet is to either split the column in to three or to store the date as text and process it yourself.</p> http://stackoverflow.com/questions/629696/deploying-google-analytics-with-django/629888#629888 1 Answer by Andrew Wilkinson for Deploying Google Analytics With Django Andrew Wilkinson 2009-03-10T12:19:36Z 2009-03-10T12:19:36Z <p>I mostly agree with Ned, although I have a single setting called IS_LIVE_SITE which toggles analytics code, adverts and a few other things. This way I can keep all the keys in subversion (as it is a pain to look them up) and still toggle them on or off easily.</p> http://stackoverflow.com/questions/625314/dump-memcache-keys-from-gae-sdk-console/626458#626458 0 Answer by Andrew Wilkinson for Dump memcache keys from GAE SDK Console? Andrew Wilkinson 2009-03-09T14:29:07Z 2009-03-09T15:07:15Z <p>Memcache is designed to be quick and there's no convincing use case for this functionality which would justify the overhead required for a command that is so at odds with the rest of memcached.</p> <p>The GAE SDK is simulating memcached, so it doesn't offer this functionality either.</p> http://stackoverflow.com/questions/560333/visualising-memcached-ram-consumption-over-time/626472#626472 2 Answer by Andrew Wilkinson for Visualising Memcached RAM consumption over time Andrew Wilkinson 2009-03-09T14:32:09Z 2009-03-09T14:32:09Z <p>Memcache reports a number of statistics such as memory used, objects stored, hits and misses. Connect to the server (probably localhost:11211) with a standard TCP socket and write "stats\n" to get back a list of statistics. See below for an example.</p> <p>Look at <a href="http://www.cacti.net/" rel="nofollow">Cacti</a> for actually graphing the data. I've had great success with it.</p> <pre> > $ telnet localhost 11211 Trying ::1... Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. stats STAT pid 75723 STAT uptime 4166691 STAT time 1236609062 STAT version 1.2.4 STAT pointer_size 32 STAT rusage_user 115.028511 STAT rusage_system 326.163351 STAT curr_items 83335 STAT total_items 1822140 STAT bytes 239997834 STAT curr_connections 48 STAT total_connections 7840 STAT connection_structures 83 STAT cmd_get 4273541 STAT cmd_set 1822140 STAT get_hits 2442609 STAT get_misses 1830932 STAT evictions 1696494 STAT bytes_read 5162992092 STAT bytes_written 7000049654 STAT limit_maxbytes 268435456 STAT threads 1 END </pre> http://stackoverflow.com/questions/601442/should-i-use-geodjango-for-mapping-a-floor-plan/614489#614489 1 Answer by Andrew Wilkinson for Should I use GeoDjango for mapping a floor plan? Andrew Wilkinson 2009-03-05T12:02:39Z 2009-03-05T12:02:39Z <p>How often will the floor plan change? From your description a simple image with a imagemap would suffice.</p> http://stackoverflow.com/questions/612204/django-1-0-1-1-rewrite-of-self-join/614464#614464 1 Answer by Andrew Wilkinson for Django 1.0/1.1 rewrite of self join Andrew Wilkinson 2009-03-05T11:52:34Z 2009-03-05T11:52:34Z <p>I'm pretty sure that query cannot be created with the Django ORM. The new Django aggregation code is pretty flexible, but I don't think it can do exactly what you want.</p> <p>Are you sure that query works? You seem to be missing a check that b.object_id is 1.</p> <p>This code should work, but it's more than one line and not that efficient.</p> <pre><code>from django.db.models import Sum v_list = votes.objects.filter(object__id=1) for v in v_list: v.previous_score = votes.objects.filter(object__id=1, created_on__lte=v.created_on).aggregate(Sum('vote'))["vote__sum"] </code></pre> <p>Aggregation is only available in trunk, so you might need to update your django install before you can do this.</p> http://stackoverflow.com/questions/589458/django-how-to-redirect-to-an-external-url/594249#594249 0 Answer by Andrew Wilkinson for Django: How to redirect to an external URL? Andrew Wilkinson 2009-02-27T10:36:19Z 2009-02-27T10:36:19Z <p>How are you running the mod_wsgi server? I expect that because you're running the local server directly through Django no url rewriting happens. On the remote server the url gets rewritten to remove the double slash before it gets passed to your django app.</p> http://stackoverflow.com/questions/510955/finding-the-caller-of-a-constructor-in-c/511000#511000 1 Answer by Andrew Wilkinson for finding the caller of a constructor in C++ Andrew Wilkinson 2009-02-04T11:44:54Z 2009-02-04T11:44:54Z <p>If you're using Linux then <a href="http://www.valgrind.org" rel="nofollow">Valgrind</a> does everything you want and more. I find it indispensable when developing in C++.</p> http://stackoverflow.com/questions/510339/how-do-i-use-django-mptt/510834#510834 1 Answer by Andrew Wilkinson for How do I use django mptt? Andrew Wilkinson 2009-02-04T10:45:07Z 2009-02-04T10:45:07Z <p>I don't quite follow your question. A tree stores one type of object, in your case Company. To link Financials to Company just add a foreign key from Financials to Company.</p> <p>If this doesn't help please expand your question to give us some more detail about what you are trying to achieve.</p> http://stackoverflow.com/questions/491085/how-can-i-pass-a-filename-as-a-parameter-into-my-module/491189#491189 7 Answer by Andrew Wilkinson for How can I pass a filename as a parameter into my module? Andrew Wilkinson 2009-01-29T10:50:05Z 2009-01-29T10:50:05Z <p>You need to read the file in a the search the contents using the regular expression. The sys module contains a list, argv, which contains all the command line parameters. We pull out the second one (the first is the file name used to run the script), open the file, and then read in the contents.</p> <pre> import re import sys file_name = sys.argv[1] fp = open(file_name) contents = fp.read() regex = re.compile( r"""ULLAT:\ (?P-?[\d.]+).*? ULLON:\ (?P-?[\d.]+).*? LRLAT:\ (?P-?[\d.]+)""", re.DOTALL|re.VERBOSE) match = regex.search(contents) </pre> <p>See the <a href="http://docs.python.org/library/re.html#id1" rel="nofollow">Python regular expression documentation</a> for details on what you can do with the match object. See <a href="http://docs.python.org/library/re.html#search-vs-match" rel="nofollow">this part of the documentation</a> for why we need search rather than match when scanning the file.</p> <p>This code will allow you to use the syntax you specified in your question.</p> http://stackoverflow.com/questions/473099/python-how-to-check-if-a-given-index-in-a-dict-exists-yet/473344#473344 11 Answer by Andrew Wilkinson for python: how to check if a given index in a dict exists yet Andrew Wilkinson 2009-01-23T15:39:05Z 2009-01-23T15:39:05Z <p>I prefer to do this in one line of code.</p> <pre> my_dict = {} my_dict[some_value] = my_dict.get(some_value, 0) + 1 </pre> <p>Dictionaries have a function, get, which takes two parameters - the key you want, and a default value if it doesn't exist. I prefer this method to defaultdict as you only want to handle the case where the key doesn't exist in this one line of code, not everywhere.</p> http://stackoverflow.com/questions/468639/is-there-a-standalone-python-type-conversion-library/468683#468683 4 Answer by Andrew Wilkinson for Is there a standalone Python type conversion library? Andrew Wilkinson 2009-01-22T10:59:44Z 2009-01-22T10:59:44Z <p>You've got two options, either use the <a href="http://docs.python.org/library/struct.html#module-struct" rel="nofollow">struct</a> or <a href="http://docs.python.org/library/pickle.html#module-pickle" rel="nofollow">pickle</a> modules.</p> <p>With struct you specify a format and it compacts your data to byte array. This is useful for working with C structures or writing to networked apps that require are binary protocol.</p> <p>pickle can automatically serialise and deserialise complex Python structures to a string. There are some caveats so it's best read the <a href="http://docs.python.org/library/pickle.html#module-pickle" rel="nofollow">documentation</a>. I think this is the most likely the library you want.</p> <pre> >>> import pickle >>> v = pickle.dumps(123) >>> v 'I123\n.' >>> pickle.loads(v) 123 >>> v = pickle.dumps({"abc": 123}) >>> v "(dp0\nS'abc'\np1\nI123\ns." >>> pickle.loads(v) {'abc': 123} </pre> http://stackoverflow.com/questions/465795/what-is-a-simple-way-to-generate-keywords-from-a-text/465840#465840 1 Answer by Andrew Wilkinson for What is a simple way to generate keywords from a text? Andrew Wilkinson 2009-01-21T15:54:43Z 2009-01-22T09:16:24Z <p>The simplest way to do what you want is this...</p> <pre> >>> text = "this is some of the sample text" >>> words = [word for word in set(text.split(" ")) if len(word) > 3] >>> words ['this', 'some', 'sample', 'text'] </pre> <p>I don't know of any standard module that does this, but it wouldn't be hard to replace the limit on three letter words with a lookup into a set of common English words.</p> http://stackoverflow.com/questions/39365/developing-and-testing-a-facebook-application 10 Developing and Testing a Facebook application Andrew Wilkinson 2008-09-02T12:18:59Z 2009-01-15T00:22:05Z <p>Typically I develop my websites on trunk, then merge changes to a testing branch where they are put on a 'beta' website, and then finally they are merged onto a live branch and put onto the live website.</p> <p>With a Facebook application things are a bit tricky. As you can't view a Facebook application through a normal web browser (it has to go through the Facebook servers) you can't easily give each developer their own version of the website to work with and test.</p> <p>I have not come across anything about the best way to develop and test a Facebook application while continuing to have a stable live website that users can use. My question is this, what is the best practice for organising the development and testing of a Facebook application?</p> http://stackoverflow.com/questions/186916/configuration-file-with-list-of-key-value-pairs-in-python/186937#186937 2 Answer by Andrew Wilkinson for Configuration file with list of key-value pairs in python Andrew Wilkinson 2008-10-09T12:00:52Z 2008-10-09T12:00:52Z <p>I think you want the <a href="http://docs.python.org/library/configparser.html#module-ConfigParser" rel="nofollow">ConfigParser</a> module in the standard library. It reads and writes INI style files. The examples and documentation in the standard documentation I've linked to are very comprehensive.</p> http://stackoverflow.com/questions/165072/apache-error-log-beautifier/184999#184999 1 Answer by Andrew Wilkinson for (Apache) Error log beautifier Andrew Wilkinson 2008-10-08T21:23:32Z 2008-10-08T21:23:32Z <p>I use <a href="http://www.webalizer.org/" rel="nofollow">Webalizer</a> to process my website's logs. Its web-interface might be a bit dated but it's very powerful, reliable and can handle very large logs. It's also quite easy to set up which a big plus in my book as you don't want to be worrying about the software, you just want to visualise the data.</p> http://stackoverflow.com/questions/172040/how-do-you-develop-against-openid-locally/172244#172244 1 Answer by Andrew Wilkinson for How do you develop against OpenID locally Andrew Wilkinson 2008-10-05T16:40:16Z 2008-10-05T21:43:43Z <p>You shouldn't be having trouble developing against your own machine. What error are you getting?</p> <p>An OpenID provider will ask you to give your site (in this case <a href="http://localhost:8000" rel="nofollow">http://localhost:8000</a> or similar) access to your identity. If you click ok then it will redirect you that url. I've never had problems with <a href="http://www.livejournal.com" rel="nofollow">livejournal</a> and I expect that <a href="http://myopenid.com" rel="nofollow">myopenid.com</a> will work too.</p> <p>If you're having problems developing locally I suggest that the problem you're having is unrelated to the url being localhost, but something else. Without an error message or problem description it's impossible to say more.</p> <p><strong>Edit</strong>: It turns out that Yahoo do things differently to other OpenID providers that I've come across and disallow redirections to ip address, sites without a correct tld in their domain name and those that run on ports other than 80 or 443. See <a href="http://openid.net/pipermail/general/2008-January/004024.html" rel="nofollow">here</a> for a post from a Yahoo developer on this subject. <a href="http://openid.net/pipermail/general/2008-January/004023.html" rel="nofollow">This post</a> offers a work around, but I would suggest that for development myopenid.com would be far simpler than working around Yahoo, or running your own provider.</p> http://stackoverflow.com/questions/152248/can-i-use-http-basic-authentication-with-django/155057#155057 0 Answer by Andrew Wilkinson for Can I use HTTP Basic Authentication with Django? Andrew Wilkinson 2008-09-30T20:55:26Z 2008-09-30T20:55:26Z <p>Because django can be run in several ways, and only modpython gives you close integration with Apache, I don't believe there is a way for django to log you in basic on Apache's basic auth. Authentication should really be done at the application level as it'll give you much more control and will be simpler. You really don't want the hassle of sharing a userdata between Python and Apache.</p> <p>If you don't mind using a patched version of Django then there is a patch at http://www.djangosnippets.org/snippets/56/ which will give you some middleware to support basic auth.</p> <p>Basic auth is really quite simple - if the user isn't logged in you return a 401 authentication required status code. This prompts the browser to display a login box. The browser will then supply the username and password as bas64 encoded strings. The wikipedia entry http://en.wikipedia.org/wiki/Basic_access_authentication is pretty good.</p> <p>If the patch doesn't do what you want then you could implement basic auth yourself quite quickly.</p> http://stackoverflow.com/questions/71590/how-to-display-the-progress-of-a-server-script-in-jquery/71667#71667 0 Answer by Andrew Wilkinson for How to display the progress of a server script in jQuery? Andrew Wilkinson 2008-09-16T12:22:33Z 2008-09-16T12:22:33Z <p>Without knowing how your server side code works it's hard to say. However, there are three stages to the process. Firstly you need to call a job creation script. This returns an id number and sets the server working. Next, every second or so, you need to call a status script which returns an status message that you want to display. That status script also needs to return a value indicating whether the job has finished or not. When the status script says the job has finished you stop polling.</p> <p>How you get this status script is to know the status of the job depends greatly on how server is set up, but probably involves writing the message to a database table at various points during the job. The status script then reads this message from the database.</p> http://stackoverflow.com/questions/50568/django-sessions/50668#50668 7 Answer by Andrew Wilkinson for Django Sessions Andrew Wilkinson 2008-09-08T20:58:29Z 2008-09-08T20:58:29Z <p>The filesystem backend is only worth looking at if you're not going to use a database for any other part of your system. If you are using a database then the filesystem backend has nothing to recommend it.</p> <p>The memcache backend is much quicker than the database backend, but you run the risk of a session being purged and some of your session data being lost.</p> <p>If you're a really, really high traffic website and code carefully so you can cope with losing a session then use memcache. If you're not using a database use the file system cache, but the default database backend is the best, safest and simplest option in almost all cases.</p> http://stackoverflow.com/questions/44509/single-sign-on-across-multiple-domains/44610#44610 1 Answer by Andrew Wilkinson for Single Sign On across multiple domains Andrew Wilkinson 2008-09-04T19:42:50Z 2008-09-04T19:42:50Z <p>The best solution is to implement SSO using <a href="http://lasso.entrouvert.org/" rel="nofollow">Lasso</a>, and I strongly suggest you look at that. If you decide it's overkill for what you need then I concur with Neall and suggest you use OpenID.</p> http://stackoverflow.com/questions/34243/python-descriptor-protocol-analog-in-other-languages/34266#34266 2 Answer by Andrew Wilkinson for Python descriptor protocol analog in other languages? Andrew Wilkinson 2008-08-29T09:39:47Z 2008-08-29T09:39:47Z <p>I've not heard of a direct equivalent either. You could probably achieve the same effect with macros, especially in a language like Lisp which has extremely powerful macros.</p> <p>I wouldn't be at all surprised if other languages start to incorporate something similar because it is so powerful.</p> http://stackoverflow.com/questions/27857/c-c-source-code-visualization/29989#29989 13 Answer by Andrew Wilkinson for c/c++ source code visualization? Andrew Wilkinson 2008-08-27T12:40:43Z 2008-08-27T12:40:43Z <p><a href="http://www.stack.nl/~dimitri/doxygen/" rel="nofollow">Doxygen</a> is really excellent for this, although you will need to install <a href="http://www.graphviz.org/" rel="nofollow">GraphViz</a> to get the the graphs to draw.</p> <p>Once you've got everything installed, it's really rather simple to draw the graphs. Make sure you set <a href="http://www.stack.nl/~dimitri/doxygen/config.html#cfg_extract_all" rel="nofollow">EXTRACT_ALL</a> and <a href="http://www.stack.nl/~dimitri/doxygen/config.html#cfg_call_graph" rel="nofollow">CALL_GRAPH</a> to true and you should be good to go.</p> <p>The full documentation on this function for Doxygen is <a href="http://www.stack.nl/~dimitri/doxygen/diagrams.html" rel="nofollow">here</a>, and it also has a useful <a href="http://www.stack.nl/~dimitri/doxygen/examples/diagrams/html/index.html" rel="nofollow">example</a>.</p> http://stackoverflow.com/questions/29562/python-distutils-does-anyone-know-how-to-use-it/29839#29839 1 Answer by Andrew Wilkinson for Python distutils - does anyone know how to use it? Andrew Wilkinson 2008-08-27T10:04:25Z 2008-08-27T10:04:25Z <p>Most Python programs will use distutils. <a href="http://www.djangoproject.com" rel="nofollow">Django</a> is a one - see <a href="http://code.djangoproject.com/svn/django/trunk/setup.py" rel="nofollow">http://code.djangoproject.com/svn/django/trunk/setup.py</a></p> <p>You should also read <a href="http://docs.python.org/dist/dist.html" rel="nofollow">the documentation</a>, as it's very comprehensive and has some good examples.</p> http://stackoverflow.com/questions/625314/dump-memcache-keys-from-gae-sdk-console/626458#626458 Comment by Andrew Wilkinson on Dump memcache keys from GAE SDK Console? Andrew Wilkinson 2009-03-09T15:08:30Z 2009-03-09T15:08:30Z You're quite right, the keys are hashed to determine which server to use but the original key is passed to the server rather than the hash as I originally though. http://stackoverflow.com/questions/601442/should-i-use-geodjango-for-mapping-a-floor-plan Comment by Andrew Wilkinson on Should I use GeoDjango for mapping a floor plan? Andrew Wilkinson 2009-03-03T14:19:07Z 2009-03-03T14:19:07Z How often will the floor plan change? From your description a simple image with a imagemap would suffice. http://stackoverflow.com/questions/502726/converting-date-between-dd-mm-yyyy-and-yyyy-mm-dd/502833#502833 Comment by Andrew Wilkinson on Converting date between DD/MM/YYYY and YYYY-MM-DD? Andrew Wilkinson 2009-02-02T10:55:38Z 2009-02-02T10:55:38Z If you're worried about the speed of converting to date the you clearly have nothing else left to worry about it. The code posted by unwind is so much clearer and maintainable than yours. That should be your primary concern here, not speed. http://stackoverflow.com/questions/472503/typeerror-tuple-object-is-not-callable Comment by Andrew Wilkinson on TypeError: 'tuple' object is not callable Andrew Wilkinson 2009-01-23T10:52:11Z 2009-01-23T10:52:11Z Please post your urls.py file as the error is in there. http://stackoverflow.com/questions/465795/what-is-a-simple-way-to-generate-keywords-from-a-text/465840#465840 Comment by Andrew Wilkinson on What is a simple way to generate keywords from a text? Andrew Wilkinson 2009-01-22T09:16:49Z 2009-01-22T09:16:49Z Good point. I've edited the test to reflect that. Thanks :-) http://stackoverflow.com/questions/172040/how-do-you-develop-against-openid-locally/172244#172244 Comment by Andrew Wilkinson on How do you develop against OpenID locally Andrew Wilkinson 2008-10-05T21:38:12Z 2008-10-05T21:38:12Z No, your site contacts the OpenID provider which then authenticates the user and redirects back to your site. I am not aware of any request from the provider to the client site. You really need to be clearer on what you mean by 'doesn't like it'. Have you tried another provider such as myopenid.com?