User bouvard - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T17:50:59Z http://stackoverflow.com/feeds/user/24608 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1094431/should-git-repos-be-at-the-solution-level-or-project-level-in-visual-studio/1094680#1094680 1 Answer by bouvard for Should Git Repo's be at the Solution Level or Project Level in Visual Studio bouvard 2009-07-07T20:29:21Z 2009-07-07T20:29:21Z <p>I use several (sometimes over-lapping) solutions to contain a collection of related independent applications and shared libraries. As others have mentioned, you really don't want to have a single Git repository containing the source for multiple, independent projects as it makes it much too difficult to track isolated changes.</p> <p>So, if your solution is structured as mine is then you will definitely want individual Git repositories for each project. This has worked well for me for ten to twelve applications and doesn't create as much maintenance overhead as you might think.</p> <p>If your solution is truly monolithic (and your sure you want it that way forever and ever), then it probably makes sense to only have a single repository.</p> http://stackoverflow.com/questions/772050/django-caching-for-subdomains/1069854#1069854 0 Answer by bouvard for Django caching for subdomains bouvard 2009-07-01T15:35:05Z 2009-07-01T15:35:05Z <p>Unfortunately, I can't address your primary issue (caching the subdomains) except to say that everything I have read implies that Django can't handle this in any elegant manner. Its possible this has changed for version 1.1, but if so I haven't come across anything about it. In my particular application I can't cache the subdomains anyway, so I have not looked into what internal modifications might be required to make this work better.</p> <p>However, regarding the manner of accessing subdomain views, another option you might consider is something like this:</p> <pre><code>class SubdomainMiddleware: """ Make the company specified by the subdomain available to views for appropriate processing. """ def process_request(self, request): """ Populate a company attribute on the request object with the company indicated by the requested subdomain. """ domain_parts = request.get_host().split('.') if (len(domain_parts) &gt; 2): subdomain = domain_parts[0] if (subdomain.lower() == 'www'): subdomain = '' else: subdomain = '' if subdomain != '': try: request.company = Company.objects.get(subdomain=subdomain) except Company.DoesNotExist: return HttpResponseRedirect(''.join(['http://test.com', reverse('findcompany')])) else: request.company = None </code></pre> <p>I think this is fairly self-explanatory--it is a heavily modified version of something I found on <a href="http://www.djangosnippets.org/" rel="nofollow">djangosnippets</a>. It simply parses the subdomain, looks it up in the company table, and if that is a valid company it gets appended to the request object for handling by the view. This way, if test.com/test and sub.test.com/test are both valid then the view can contain that logic, rather than pushing it down into the middleware. Also, garbage subdomains are easily passed off to a search url.</p> <p>I had intended to compare this to your middleware (more for my own education than anything else), but the URL you provided for your code returns a 404.</p> http://stackoverflow.com/questions/943000/flash-based-file-upload-swfupload-fails-with-apache-mod-wsgi 0 Flash-based file upload (swfupload) fails with Apache/mod-wsgi. bouvard 2009-06-03T04:05:37Z 2009-06-04T03:17:36Z <p><strong>This question has been retitled/retagged so that others may more easily find the solution to this problem.</strong></p> <p><hr /></p> <p>I am in the process of trying to migrate a project from the Django development server to a Apache/mod-wsgi environment. If you had asked me yesterday I would have said the transition was going very smoothly. My site is up, accessible, fast, etc. However, a portion of the site relies on file uploads and with this I am experiencing the strangest and most maddening issue. The particular page in question uses <a href="http://swfupload.org/" rel="nofollow">swfupload</a> to POST a file and associated metadata to a url which catches the file and initiates some server-side processing. This works perfectly on the development server, but whenever I POST to this url on Apache the Django request object comes up empty--<strong>no GET, POST, or FILES data</strong>.</p> <p>I have eliminated client-side issues by snooping with Wireshark. As far as I can discern the root cause stems from some sort of Apache configuration issue, possibly related to the temporary file directory I am trying to access. I am a relative newcomer to Apache configuration and have been banging my head against this for hours.</p> <p>My Apache config:</p> <pre><code>&lt;VirtualHost *:80&gt; ServerAdmin user@sitename.com ServerName sitename.com ServerAlias www.sitename.com LogLevel warn WSGIDaemonProcess sitename processes=2 maximum-requests=500 threads=1 WSGIProcessGroup sitename WSGIScriptAlias / /home/user/src/sitename/apache/django.wsgi Alias /static /home/user/src/sitename/static Alias /media /usr/share/python-support/python-django/django/contrib/admin/media &lt;/VirtualHost&gt; </code></pre> <p>My intuition is that this may have something to do with the permissions of the file upload directory I have specified in my Django settings.py (<code>'/home/sk/src/sitename/uploads/'</code>), however my Apache error log doesn't suggest anything of the sort, even with the log level bumped up to debug.</p> <p>Suggestions on how I should go about debugging this?</p> http://stackoverflow.com/questions/279129/can-anyone-recommend-a-decent-foss-pdf-generator-for-python/279165#279165 4 Answer by bouvard for Can anyone recommend a decent FOSS PDF generator for Python? bouvard 2008-11-10T21:04:17Z 2009-05-20T23:37:38Z <p>For one of my projects, I have tested and/or implemented probably six or seven different methods of going from an image to a PDF in the last six months. Ultimately I ended up coming back to <a href="http://www.reportlab.org/downloads.html" rel="nofollow">ReportLab</a> (which I had initially avoided for reasons similar to those you described) because all of the others had glaring limitations or outright omissions (such as the inability to set document metadata).</p> <p>ReportLab isn't as difficult to handle as it appears at first glance and it may save you a lot of headache-laden refactoring later on. I would strongly suggest you go ahead and use it and therefore know that if you ever want to be able to do more you will have the ability too rather than do what I did and bounce back and forth between a number of different utilities, libraries, and formats.</p> <p><strong>EDIT:</strong></p> <p>It is also worth mentioning that you can bypass the Platypus layout system that comes with ReportLab if all you want to do is put bit a of text and imagery on a page.</p> http://stackoverflow.com/questions/853421/how-should-i-store-state-for-a-long-running-process-invoked-from-django 2 How should I store state for a long-running process invoked from Django? bouvard 2009-05-12T15:39:05Z 2009-05-13T20:19:50Z <p>I am working on a Django application which allows a user to upload files. I need to perform some server-side processing on these files before sending them on to <a href="http://aws.amazon.com/s3/" rel="nofollow">Amazon S3</a>. After reading the responses to <a href="http://stackoverflow.com/questions/219329/django-fastcgi-how-to-manage-a-long-running-process">this question</a> and <a href="http://iraniweb.com/blog/?p=56" rel="nofollow">this blog post</a> I decided that the best manner in which to handle this is to have my view handler invoke a method on <a href="http://pyro.sourceforge.net/" rel="nofollow">Pyro</a> remote object to perform the processing asynchronously and then immediately return an Http 200 to the client. I have this prototyped and it seems to work well, however, I would also like to store the state of the processing so that the client can poll the application to see if the file has been processed and uploaded to S3.</p> <p>I can handle the polling easily enough, but I am not sure where the appropriate location is to store the process state. It needs to be writable by the Pyro process and readable by my polling view.</p> <ul> <li>I am hesitant to add columns to the database for data which should really only persist for 30 to 60 seconds. </li> <li>I have considered using Django's <a href="http://docs.djangoproject.com/en/dev/topics/cache/#the-low-level-cache-api" rel="nofollow">low-level cache API</a> and using a file id as the key, however, I don't believe this is really what the cache framework is designed for and I'm not sure what unforeseen problems there might be with going this route.</li> <li>Lastly, I have considered storing state in the Pyro object doing the processing, but then it still seems like I would need to add a boolean "processing_complete" database column so that the view knows whether or not to query state from the Pyro object.</li> </ul> <p>Of course, there are also some data integrity concerns with decoupling state from the database (what happens if the server goes down and all this data is in-memory?). I am to hear how more seasoned web application developers would handle this sort of stateful processing.</p> http://stackoverflow.com/questions/796005/how-to-get-started-with-mono-in-linux-for-a-beginner/800173#800173 1 Answer by bouvard for How to get started with Mono in Linux for a beginner? bouvard 2009-04-28T22:52:51Z 2009-04-28T22:52:51Z <p>With the just released <a href="http://www.ubuntu.com/" rel="nofollow">Ubuntu 9.04</a> a very current Mono development environment is as close as:</p> <pre><code>apt-get install monodevelop </code></pre> <p>I used to agree with you that it was somewhat difficult to get going with Mono, but the latest version of Ubuntu has melted that barrier away. And the latest version of <a href="http://monodevelop.com/" rel="nofollow">Monodevelop</a> is an absolute joy to use.</p> <p>Don't use Ubuntu? Then I would go with Peter's advice of using a <a href="http://mono-project.com/VMWare%5FImage" rel="nofollow">VMWare image</a>.</p> http://stackoverflow.com/questions/663171/is-there-a-way-to-substring-a-string-in-python/663185#663185 1 Answer by bouvard for Is there a way to substring a string in Python? bouvard 2009-03-19T17:31:34Z 2009-03-19T17:31:34Z <p>You've got it right there except for "end". Its called slice notation. Your example should read.</p> <pre><code>new_sub_string = myString[2:] </code></pre> <p>If you leave out the second param it is implicitly the end of the string.</p> http://stackoverflow.com/questions/628162/single-implementation-to-cover-both-single-and-multiple-values-in-python/628173#628173 9 Answer by bouvard for Single implementation to cover both single and multiple values in Python? bouvard 2009-03-09T21:53:08Z 2009-03-09T22:01:07Z <p><a href="http://docs.python.org/tutorial/datastructures.html#list-comprehensions" rel="nofollow">List comprehension</a>:</p> <pre><code>[fac(n) for n in nums] </code></pre> <p><strong>EDIT:</strong></p> <p>Sorry, I misunderstood, you want a method that handles both sequences and single values? I can't imagine why you wouldn't do this with two methods.</p> <pre><code>def factorial(n): # implement factorial here return answer def factorial_list(nums): return [factorial(n) for n in nums] </code></pre> <p>The alternative would be to do some sort of type-checking, which is better avoided unless you have some terribly compelling reason to do so.</p> <p><strong>EDIT 2:</strong></p> <p>MizardX's answer is better, vote for that one. Cheers.</p> http://stackoverflow.com/questions/165905/how-and-when-do-you-teach-a-kid-to-code 15 How and when do you teach a kid to code? bouvard 2008-10-03T06:32:06Z 2009-03-07T04:49:03Z <p>I've got a ten year old brother who desperately needs a constructive hobby and I am convinced he has the proper sort of wiring to become an adept coder. However, what he has in raw intelligence he lacks in patience and willingness to try new things. His overpowering interests are Legos and video games so my inclination is to find a way for him to build games, but he quickly loses interest when he realizes that he can not create something that looks good and acts well in a relatively short time-frame. I can hardly blame him as that routinely frustrates me as well. I've heard good things said in the abstract about frameworks like <a href="http://www.alice.org/" rel="nofollow">Alice</a> and <a href="http://scratch.mit.edu/" rel="nofollow">Scratch</a>, but not much in the way of real-world testimonials. Is there a simplified framework out there that will:</p> <ol> <li>Teach him the basics of programming and further develop his interests.</li> <li>Provide him immediate feedback that he is accomplishing something.</li> <li>Look good enough that he doesn't feel like he is doing something childish.</li> </ol> <p>Has anyone had any success with teaching someone is his age-bracket to program and if so which tools were most useful to you? Is he simply not mature enough? I don't want to settle for him idling toying with something and deciding its frivolous. I want him to be able to feel the same sort of freedom that I felt when I finally moved from the <a href="http://en.wikipedia.org/wiki/Pinball_Construction_Set" rel="nofollow">Pinball Construction Set</a> to writing loops in BASIC.</p> <p><strong>-----EDIT-----</strong></p> <p>There are several similar topics already regarding this, which might give you a few more answers:</p> <ul> <li><a href="http://stackoverflow.com/questions/41988/how-to-get-kids-into-programming">How to get kids into programming</a></li> <li><a href="http://stackoverflow.com/questions/20059/suggestions-on-starting-a-child-programming#37774">Suggestions on starting a child programming</a></li> </ul> http://stackoverflow.com/questions/612866/web-automation/612991#612991 2 Answer by bouvard for Web automation bouvard 2009-03-04T23:37:30Z 2009-03-04T23:43:26Z <p>Despite the tag on your question, the answer is going to be <em>highly</em> language specific. There are also going to be wide range of solutions depending on how complex of a solution you are willing to implement and how flexible a result you are looking for.</p> <p>On the one hand you can accomplish a lot in a very short period of time with something like Python's <a href="http://wwwsearch.sourceforge.net/mechanize/" rel="nofollow">mechanize</a>, but on the other hand, you can really get into the guts and have a lot of control by automating a browser using a COM object such as <a href="http://www.google.com/search?q=SHDocVw" rel="nofollow">SHDocVw</a> (Windows-only, of course).</p> <p>Or, as LoveMeSomeCode suggested, you can really hit your head against the concrete and start forging POST requests, but good-luck figuring out what the server expects if is doing any front-end processing of the form data.</p> <p>EDIT:</p> <p>One more option, if you are looking for something that you can come up to speed on quickly, is to use a <a href="http://www.autoitscript.com/autoit3/index.shtml" rel="nofollow">AutoIt</a>'s IE module, which basically provides a programmatic interface over an instance of Internet Explorer (its all COM in underneath, of course). Keep in mind that this will likely be the least supportable option you could choose. I have personally used this to produce proof-of-concept automation suites that were then migrated to a more robust C# implementation where I handled the COM calls myself.</p> http://stackoverflow.com/questions/598299/when-is-it-not-appropriate-to-bundle-dependencies-with-an-application 9 When is it (not) appropriate to bundle dependencies with an application? bouvard 2009-02-28T16:59:37Z 2009-03-04T16:09:34Z <p><strong>Summary</strong></p> <p>I recently had a conversation with the creator of a framework that one of my applications depends on. During that conversation he mentioned as a sort of aside that it would make my life simpler if I just bundled his framework with my application and delivered to the end user a version that I knew was consistent with my code. Intuitively I have always tried to avoid doing this and, in fact, I have taken pains to segment my own code so that portions of it could be redistributed without taking the entire project (even when there was precious little chance anyone would ever reuse any of it). However, after mulling it over for some time I have not been able to come up with a particularly good reason <em>why</em> I do this. In fact, now that I have thought about it, I'm seeing a pretty compelling case to bundle <em>all</em> my smaller dependencies. I have come up with a list of pros and cons and I'm hoping someone can point out anything that I'm missing.</p> <p><strong>Pros</strong></p> <ul> <li>Consistency of versions means easier testing and troubleshooting.</li> <li>Application may reach a wider audience since there appear to be fewer components to install.</li> <li>Small tweaks to the dependency can more easily be made downstream and delivered with the application, rather than waiting for them to percolate into the upstream code base.</li> </ul> <p><strong>Cons</strong></p> <ul> <li>More complex packaging process to include dependencies.</li> <li>User may end up with multiple copies of a dependency on their machine.</li> <li>Per bortzmeyer's response, there are potential security concerns with not being able to upgrade individual components.</li> </ul> <p><strong>Notes</strong></p> <p>For reference, my application is written in Python and the dependencies I'm referencing are "light", by which I mean small and not in very common use. (So they do not exist on all machines or even in all repositories.) And when I say "package with" my application, I mean distribute under my own source tree, not install with a script that resides inside my package, so there would be no chance of conflicting versions. I am also developing solely on Linux so there are no Windows installation issues to worry about.</p> <p>All that being said, I am interested in hearing any thoughts on the broader (language-independent) issue of packaging dependencies as well. Is there something I am missing or is this an easy decision that I am just over-thinking?</p> <p><strong>Addendum 1</strong></p> <p>It is worth mentioning that I am also quite sensitive to the needs of downstream packagers. I would like it to be as straightforward as possible to wrap the application up in a distribution-specific Deb or RPM.</p> http://stackoverflow.com/questions/547450/send-info-from-script-to-module-python/547462#547462 1 Answer by bouvard for Send Info from Script to Module Python bouvard 2009-02-13T20:05:05Z 2009-02-13T20:11:06Z <p>It is not clear what you mean by "send info", but if you but the typical way of passing a value would be with a function parameter.</p> <p>main.py:</p> <pre><code>helloworld("Hello world!") </code></pre> <p>module.py</p> <pre><code>def helloworld(message): print message </code></pre> <p>Is that what your looking for? Also the two uses of <code>print</code> in your example are redundant.</p> <p>Addendum: It might be useful for you to read the <a href="http://docs.python.org/tutorial/controlflow.html#defining-functions" rel="nofollow">Python documentation regarding function declarations</a>, or, alternatively, most Python introductory tutorials would cover the same ground in fewer words. Anything you read there is going to apply equally regardless of whether the function is in the same module or another module.</p> http://stackoverflow.com/questions/523254/designing-better-guis/523286#523286 1 Answer by bouvard for Designing better GUIs? bouvard 2009-02-07T06:19:57Z 2009-02-07T06:19:57Z <p>Building on Vinay's answer, integrating with your target platform is always going to be of paramount importance when designing an interface. If you were developing on Windows, make sure you stay true to the look, feel, and usability expectations of that platform. The interface guidelines are always going to be a jumping off point, though some are better than others. For my money's worth, the <a href="http://library.gnome.org/devel/hig-book/stable/" rel="nofollow">GNOME Human Interface Guidelines</a> are a great set of guidelines to designing user-friendly interfaces, even if you aren't using GTK.</p> <p>On a more general note, learning good design is really learning to <em>recognize</em> good design. Find some applications that are really intuitive and then mimic their layout, style, etc. Then, when you are struggling with how to implement a particular feature, find a suitable analogue in a one of those other applications. You will want to pay particular attention to issues like grouping, tabbing, shortcuts, dialog modality, etc. I think you will find that very few good design principles are dependent on the language you are programming in, except in so far as it may influence the toolkit and platform that you target.</p> http://stackoverflow.com/questions/443885/python-callbacks-delegates-what-is-common/444154#444154 1 Answer by bouvard for Python: Callbacks, Delegates, ... ? What is common? bouvard 2009-01-14T18:33:55Z 2009-01-14T18:33:55Z <p>Most of the Python libraries I have used implement a callback model for their event notifications, which I think suits the language fairly well. <a href="http://www.pygtk.org/" rel="nofollow">Pygtk</a> does this by deriving all objects from <a href="http://www.pygtk.org/docs/pygobject/class-gobject.html" rel="nofollow">GObject</a>, which implements callback-based signal handling. (Although this is a feature of the underlying C GTK implementation, not something inspired by the language.) However, <a href="http://sourceforge.net/projects/pygtkmvc/" rel="nofollow">Pygtkmvc</a> does an interesting job of implementing an observer pattern (and MVC) over the top of Pygtk. It uses a very ornate metaclass based implementation, but I have found that it works fairly well for most cases. The code is reasonably straightforward to follow, as well, if you are interested in seeing one way in which this has been done.</p> http://stackoverflow.com/questions/415673/what-first-game-did-you-program-and-did-it-make-you-a-better-developer/418443#418443 4 Answer by bouvard for What first game did you program, and did it make you a better developer? bouvard 2009-01-06T22:27:46Z 2009-01-06T22:33:14Z <p>My first real programming project was a Gameboy Advance game entitled "Falling Star". It was a Scorched Earth clone with some fancy transparency effects, multi-player, AI, etc, which I developed on emulators and hacked hardware. Originally it was Phase I in my master plan to become the next Warren Spector. Phase II was when I got contracted for by a tabletop RPG company to produce a GBA version of their game, spent six months on it, was never paid, and collapsed into a slovenly pile of anti-industry human matter.</p> <p>The project taught me more than I would have ever though possible about programming. Particularly with regards to resource management, team formation, and code-as-math. I'm sure that if I looked at the code today (I do have a copy somewhere) I would marvel that it worked at all, but it <em>did</em> work, was suitably bug-free, and accomplished something that I truly lusted after: seeing my own code run on native hardware. (Thank god for the #gbadev hackers.)</p> <p>If not for that project I don't know that I would still be interested in coding today. It was a way to get at the interesting design problems by writing the code myself (because finding a coder was impossible), but I ended up enjoying the coding so much that the design began to seem insignificant.</p> <p>I can't find any reference to the project online anymore, but every once in a while I find mention of it on GBA roms site, which trade it like a full title. I guess that is another accomplishment of sorts.</p> http://stackoverflow.com/questions/383010/using-pythons-ctypes-to-pass-read-a-parameter-declared-as-structname-param 1 Using Python's ctypes to pass/read a parameter declared as "struct_name *** param_name"? bouvard 2008-12-20T06:26:39Z 2008-12-20T16:02:04Z <p>I am trying to use Python's ctypes library to access some methods in the scanning library <a href="http://www.sane-project.org/" rel="nofollow">SANE</a>. This is my first experience with ctypes and the first time I have had to deal with C datatypes in over a year so there is a fair learning curve here, but I think even without that this particular declaration would be troublesome:</p> <pre><code>extern SANE_Status sane_get_devices (const SANE_Device *** device_list, SANE_Bool local_only); </code></pre> <p>First of all, I've successfully dealt with <code>SANE_Status</code> (an enum) and <code>SANE_Bool</code> (a typedef to <code>c_int</code>). Those were both simple. That first parameter, on the other hand, is causing me all sorts of grief. I'm unfamiliar with the "<code>***</code>" notation to begin with and my tracer bullets so far have yielded nothing more than garbage data. How do I format the input to this function such that I can read back a list of my Python structure-objects? For reference, the C structure being referenced is:</p> <pre><code>typedef struct { SANE_String_Const name; /* unique device name */ SANE_String_Const vendor; /* device vendor string */ SANE_String_Const model; /* device model name */ SANE_String_Const type; /* device type (e.g., "flatbed scanner") */ } SANE_Device; </code></pre> <p>Where <code>SANE_String_Const</code> is defined as a <code>c_char_p</code>.</p> <p>My Python/ctypes version of this object is:</p> <pre><code>class SANE_Device(Structure): _fields_ = [ ("name", c_char_p), ("vendor", c_char_p), ("model", c_char_p), ("type", c_char_p)] </code></pre> <p>Suggestions on what I should pass in such that I can get the expected behavior (a list of structure-objects) out of this? All responses appreciated.</p> <p><strong>Update 1:</strong></p> <p>Using the following, I was able to retrieve a correct SANE_Device Python structure:</p> <pre><code>devices = pointer(pointer(pointer(SANE_Device()))) status = libsane.sane_get_devices(devices, c_int(0)) print status, devices, devices.contents.contents.contents.name </code></pre> <p>However, 1) yuck and 2) that seems like it would only work if there is a single result. I can't len() on <code>devices.contents.contents</code> or <code>devices.contents.contents.contents</code>. How am I to determine the number of results? The SANE docs specify that "If the function executes successfully, it stores a pointer to a NULL terminated array of pointers to SANE_Device structures in *device_list". Suggestions?</p> <p><strong>Update 2:</strong></p> <p>I was able to pass an ten-item array and then access the first element using:</p> <pre><code>devices = pointer(pointer(pointer((SANE_Device * 10)()))) status = libsane.sane_get_devices(devices, c_int(0)) print status, devices, devices.contents.contents.contents[0].name </code></pre> <p>However, ten is obviously an arbitrary number and I have no way of determining the actual number of results. Trying to access <code>devices.contents.contents.contents[1].name</code> when only one device is connected causes a segmentation fault. There must be a proper way of dealing with variable-length constructs like these in ctypes.</p> http://stackoverflow.com/questions/287845/in-python-how-can-i-efficiently-manage-references-between-script-files/287884#287884 3 Answer by bouvard for In Python, how can I efficiently manage references between script files? bouvard 2008-11-13T19:02:27Z 2008-11-13T19:02:27Z <p>If your reusable files are packaged (that is, they include an <code>__init__.py</code> file) and the path to that package is part of your PYTHONPATH or sys.path then you should be able to do just</p> <pre><code>import Foo </code></pre> <p><a href="http://stackoverflow.com/questions/279237/python-import-a-module-from-a-folder#279287">This question</a> provides a few more details.</p> <p>(Note: As Jim said, you could also drop your reusable code into your <code>site-packages</code> directory.)</p> http://stackoverflow.com/questions/285132/with-what-kind-of-ide-if-any-you-build-python-gui-projects/285174#285174 4 Answer by bouvard for With what kind of IDE (if any) you build python GUI projects? bouvard 2008-11-12T20:09:06Z 2008-11-12T20:17:36Z <p>The short answer is "no". There is not a swiss-army-knife like IDE that is both a full-featured Python code-editor and a full-featured WYSIWYG GUI editor. However, there are several stand-alone tools that make creating a GUI easier and there are a myriad of code editors, so if you can handle having two windows open, then you can accomplish what you are trying to.</p> <p>As for stand-alone GUI editors, which you choose is going to depend on what library you choose to develop your GUI with. I would recommend using <a href="http://www.gtk.org/" rel="nofollow">GTK+</a>, which binds to Python via <a href="http://www.pygtk.org/" rel="nofollow">PyGtk</a> and has the <a href="http://glade.gnome.org/" rel="nofollow">Glade</a> GUI designer. I believe that there are other GUI libraries for Python that have WYSIWYG designers (Qt, Tkinter, wxWindows, etc.), but GTK+ is the one I have the most experience with so I will leave the others for other commentators.</p> <p>Note, however, that the designer in this case is not at all language dependent. It just spits out a .glade file that could be loaded into any language that has GTK+ bindings. If you are looking for a designer that produces raw Python code (like the Code-Behind model that VS.Net uses), then I am not aware of any.</p> <p>As for general code-editing IDE's (that do not include a GUI designer), there are <a href="http://wiki.python.org/moin/IntegratedDevelopmentEnvironments" rel="nofollow">many</a>, of which <a href="http://pydev.sourceforge.net/" rel="nofollow">PyDev</a>/<a href="http://www.eclipse.org/" rel="nofollow">Eclipse</a> is probably the most Visual Studio-like.</p> <p>(Revised for clarity.)</p> http://stackoverflow.com/questions/279912/pyopengl-or-pyglet/279970#279970 5 Answer by bouvard for PyOpenGl or pyglet? bouvard 2008-11-11T04:03:04Z 2008-11-11T04:03:04Z <p>As Tony said, this is really going to depend on your goals. If you're "tinkering" to try to learn about OpenGL or 3D rendering in general that I would dispense with all pleasantries and start working with PyOpenGL, which is as close are your going to get to "raw" 3D programming using Python.</p> <p>On the other hand, if your "tinkering" by way of mocking up a game or multimedia application, or trying to learn about programming practices in general than Pyglet will save you lots of up-front development time by providing hooks for input events, sounds, text/billboarding, etc. Often, this up-front investment is what prevents people from completing their projects, so having it done for you is not something to be ignored. (It is also very Pythonic to avoid reinventing the wheel.)</p> <p>If you are looking to do any sort of heavy-duty lifting (which normally falls outside my definition of "tinkering", but maybe not if your tinkering with 3D engine design) then you might want to take a look at <a href="http://www.python-ogre.org/" rel="nofollow">Python-Ogre</a>, which wraps the <em>very</em> full-featured and robust <a href="http://www.ogre3d.org/" rel="nofollow">OGRE 3D</a> graphics engine.</p> http://stackoverflow.com/questions/279237/python-import-a-module-from-a-folder/279287#279287 8 Answer by bouvard for python: import a module from a folder bouvard 2008-11-10T21:46:04Z 2008-11-10T22:15:59Z <p>(This is from memory so someone edit if I make a typo, please.)</p> <p>If you structure your project this way:</p> <pre><code>src\ __init__.py main.py dirFoo\ __init__.py Foo.py dirBar\ __init__.py Bar.py </code></pre> <p>Then from Foo.py you should be able to do:</p> <pre><code>import dirFoo.Foo </code></pre> <p>Or:</p> <pre><code>from dirFoo.Foo import FooObject </code></pre> <p><strong>EDIT 1:</strong></p> <p>Per Tom's comment, this does require that the <code>src</code> folder is accessible either via <code>site_packages</code> or your search path. Also, as he mentions, <code>__init__.py</code> is implicitly imported when you first import a module in that package/directory. Typically <code>__init__.py</code> is simply an empty file.</p> http://stackoverflow.com/questions/277170/is-there-a-good-python-gui-shell/277191#277191 6 Answer by bouvard for Is there a good Python GUI shell? bouvard 2008-11-10T06:21:04Z 2008-11-10T06:21:04Z <p>As far as I know there is nothing out there that offers the sort of whiz-bang features that the Mono guys have implemented in their new shell, but that is not to say that the "basic" python interactive shell isn't a feature-complete and powerful application. I could see something like the C# shell being developed at some point, but I think as of today those features you're pointing to are reasonably unique. One might argue that this is because nobody thought of them or, alternatively, because nobody has really had a need for them. I tend to subscribe to the latter, although I suppose both are plausible.</p> http://stackoverflow.com/questions/259157/what-is-your-recommendation-for-a-good-sql-ide/259738#259738 0 Answer by bouvard for What is your recommendation for a good SQL IDE? bouvard 2008-11-03T20:00:08Z 2008-11-03T20:00:08Z <p>Somewhat tangential, but <a href="http://www.albahari.com/queryexpress.aspx" rel="nofollow">Query Express</a> is great for quick-and-dirty selects when you don't want to fire up a more full-fledged application. I use it when I already have a dozen other windows open and don't want to give any memory to the Management Studio. It is lightning fast.</p> http://stackoverflow.com/questions/254872/how-to-do-software-development-in-a-company-whose-core-business-isnt-software/254936#254936 3 Answer by bouvard for How to do software development in a company whose core business isn't software? bouvard 2008-10-31T20:56:21Z 2008-10-31T21:02:37Z <p>While I haven't spent anytime as a developer in the private sector, I do have a couple years experience working as a developer in a university payroll office, where a similar mentality prevails. This wasn't even the job I was hired to do, but by actively making more own job more efficient through custom development I was able to present a compelling case for extending that model ("let the computer do the work for you") to other areas of the office. As of just a couple days ago, development now is my full-time job. I still don't get all the tools I would like to have or drive process in the way I would like to (and we certainly aren't selling software), but my point is that sometimes the best way to persuade management of a project's efficacy is to simply start small and let them see the benefits first-hand. I essentially automated a full-time job into a 0.25 FTE job. If you already have projects on your plate then it may require more creativity on your part, but I think the same sort of results-oriented mindset can be useful. Today when my office begins new project, its common-place for management to turn to me and say, "How can development help solve this problem?" <em>That</em> sort of attitude gives me a lot of room to say, "Sure, but let's approach this in the correct way."</p> http://stackoverflow.com/questions/216093/how-do-i-coherently-organize-modules-for-a-pygtk-desktop-application 4 How do I coherently organize modules for a PyGTK desktop application? bouvard 2008-10-19T06:07:28Z 2008-10-31T01:31:40Z <p>I am working on a desktop application in PyGTK and seem to be bumping up against some limitations of my file organization. Thus far I've structured my project this way:</p> <ul> <li>application.py - holds the primary application class (most functional routines)</li> <li>gui.py - holds a loosely coupled GTK gui implementation. Handles signal callbacks, etc.</li> <li>command.py - holds command line automation functions not dependent on data in the application class</li> <li>state.py - holds the state data persistence class</li> </ul> <p>This has served fairly well so far, but at this point application.py is starting to get rather long. I have looked at numerous other PyGTK applications and they seem to have similar structural issues. At a certain point the primary module starts to get very long and there is not obvious way of breaking the code out into narrower modules without sacrificing clarity and object orientation.</p> <p>I have considered making the GUI the primary module and having seperate modules for the toolbar routines, the menus routines, etc, but at that point I believe I will lose most of the benefits of OOP and end up with an everything-references-everything scenario.</p> <p>Should I just deal with having a very long central module or is there a better way of structuring the project so that I don't have to rely on the class browser so much?</p> <p><strong>EDIT I</strong></p> <p>Ok, so point taken regarding all the MVC stuff. I do have a rough approximation of MVC in my code, but admittedly I could probably gain some mileage by further segregating the model and controller. However, I am reading over python-gtkmvc's documentation (which is a great find by the way, thank you for referencing it) and my impression is that its not going to solve my problem so much as just formalize it. My application is a single glade file, generally a single window. So no matter how tightly I define the MVC roles of the modules I'm still going to have one controller module doing most everything, which is pretty much what I have now. Admittedly I'm a little fuzzy on proper MVC implementation and I'm going to keep researching, but it doesn't look to me like this architecture is going to get any more stuff out of my main file, its just going to rename that file to controller.py.</p> <p>Should I be thinking about separate Controller/View pairs for seperate sections of the window (the toolbar, the menus, etc)? Perhaps that is what I'm missing here. It seems that this is what S. Lott is referring to in his second bullet point.</p> <p>Thanks for the responses so far.</p> http://stackoverflow.com/questions/227919/using-mvc-how-should-one-handle-communcation-between-views-between-models 1 Using MVC, how should one handle communcation between Views? Between Models? bouvard 2008-10-22T23:34:38Z 2008-10-23T02:31:44Z <p>Question number three in my quest to properly understand MVC <em>before</em> I implement it:</p> <p>I have two cases in mind:</p> <ol> <li>The primary application window needs to launch the preferences window. (One View invoking another View.)</li> <li>The primary Model for an application needs to access a property in the preferences Model. (One Model accessing another Model.)</li> </ol> <p>These questions are related in that they both involve communication across Model-View-Controller triplets, a topic that I haven't found much discussion of in my Googling. </p> <p>The obvious way to fix this is to wrap everything in a top-level "application" object that handles transactions between Models and allows Controllers to invoke one another's methods. I have seen this implemented, but I'm not convinced its a good idea. I can also see possibilities involving Controllers observing more than one Model and responding to more than one View, but this seems like its going to become very cluttered and difficult to follow.</p> <p>Suggestions on how best to implement this sort of cross-talk? I feel like its a very obvious question, but I've been unable to find a well-documented solution.</p> <p>On a broader note, if anyone has a link that shows typical approaches to these sorts of MVC issues, I would love to see it. I haven't had much luck finding solid, non-trivial references. Examples in Python would be lovely, but I'll gladly read anything.</p> <p><strong>Edit 1</strong>:</p> <p>I see some pretty interesting things being said below and in general no-one seems to have a problem with the approach I've described. It is already almost a lazy form of the FrontController design that Vincent is describing. I certainly don't foresee any problems in implementing that pattern, however, it doesn't seem that anyone has really addressed the question in regards to communication amongst Models. All the answers seem to be addressing communication among objects in a single Model. I'm more interested in maintaining separate Models for separate components of the application, so that I'm not stuffing fifty state properties into a single Model class. Should I be maintaining them as sub-Models instead?</p> http://stackoverflow.com/questions/222376/with-mvc-do-interactions-with-autonomous-peripherals-belong-in-the-model-or-the 2 With MVC, do interactions with autonomous peripherals belong in the Model or the Controller? bouvard 2008-10-21T15:53:14Z 2008-10-21T16:00:38Z <p>Using MVC with an observer pattern, if a user action requires polling a device (such as a camera) for data, should the polling be done in the Controller and the result passed off the Model or should a request be sent to the Model and the Model itself performs the polling.</p> <p>This question is my attempt to reconcile everything I am reading that touts the "skinny Controllers" maxim with my gut intuition that the Model should only be acting on data not acquiring it.</p> <p>(Note: This question <em>might</em> be subjective. I'm not entirely sure that there is a one-true-answer to this question. If not, feel free to retag as I will be very interested to hear opinions on the subject.)</p> http://stackoverflow.com/questions/216093/how-do-i-coherently-organize-modules-for-a-pygtk-desktop-application/219737#219737 0 Answer by bouvard for How do I coherently organize modules for a PyGTK desktop application? bouvard 2008-10-20T20:15:32Z 2008-10-20T20:15:32Z <p>So having not heard back regarding my edit to the original question, I have done some more research and the conclusion I seem to be coming to is that <em>yes</em>, I should break the interface out into several views, each with its own controller. Python-gtkmvc provides the ability to this by providing a <code>glade_top_widget_name</code> parameter to the View constructor. This all seems to make a good deal of sense although it is going to require a large refactoring of my existing codebase which I may or may not be willing to undertake in the near-term (I know, I know, I <em>should</em>.) Moreover, I'm left to wonder whether should just have a single Model object (my application is fairly simple--no more than twenty-five state vars) or if I should break it out into multiple models and have to deal with controllers observing multiple models and chaining notifications across them. (Again, I know I really <em>should</em> do the latter.) If anyone has any further insight, I still don't really feel like I've gotten an answer to the original question, although I have a direction to head in now.</p> <p>(Moreover it seems like their ought to be other architectural choices at hand, given that up until now I had not seen a single Python application coded in the MVC style, but then again many Python applications tend to have the exact problem I've described above.)</p> http://stackoverflow.com/questions/215942/did-any-of-the-apps-you-worked-on-had-a-famous-error-message-among-the-user-bas/215957#215957 1 Answer by bouvard for Did any of the apps you worked on had a "famous error message" among the user base? bouvard 2008-10-19T03:22:42Z 2008-10-19T03:22:42Z <p>There is a class of applications that I maintain for my office which are dependent on several other applications and as such have a very high threshold for change (they have been totally rewritten several times since I have been there). These apps are used by only about ten people all of whom know me personally and none of whom are overly technical. Within those apps I have a class of exception that really should <em>never</em> happen and can only happen in if something was misconfigured on the backend (usually in the configuration database that I also manage). I got so tired of trying to come up with descriptive error messages that I knew would not be understood that I started just logging the details and popping up an error box that says: "Error: Ask the friendly programmer." About once per major revision somebody gets that error and we have had enough major revisions that almost everyone has seen it now. The flip-side of this has been that now nobody reads any of the error messages, they just come up to me with a print screen that says "ask the friendly programmer" (or whatever) and a silly look on their face.</p> http://stackoverflow.com/questions/205204/starting-a-new-database-driven-python-web-application-would-you-use-a-javascript/205235#205235 1 Answer by bouvard for Starting a new database driven python web application would you use a javascript widget framework? If so which framework? bouvard 2008-10-15T15:42:49Z 2008-10-15T15:42:49Z <p>I heartily suggest <a href="http://www.djangoproject.com/" rel="nofollow">Django</a> + <a href="http://www.prototypejs.org/" rel="nofollow">Prototype</a>. I think they cover most of the bases you are looking at and they are very straight-forward to get started with. Also you could use them on the GAE if that is the route you decide to take, although you should keep in mind that the GAE does not support Cron jobs, which can limit your functionality.</p> http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203406#203406 4 Answer by bouvard for What things didn't you know you needed but are now very glad you have? bouvard 2008-10-15T01:13:17Z 2008-10-15T01:27:35Z <p><a href="http://en.wikipedia.org/wiki/Lint_programming_tool" rel="nofollow">Lint</a>, <a href="http://www.logilab.org/857" rel="nofollow">pylint</a>, <a href="http://www.jslint.com/" rel="nofollow">JSLint</a>, etc. You don't know just how ugly your code is until an automated procedure goes out of its way to badger you about it.</p> http://stackoverflow.com/questions/1094431/should-git-repos-be-at-the-solution-level-or-project-level-in-visual-studio/1094680#1094680 Comment by bouvard on Should Git Repo's be at the Solution Level or Project Level in Visual Studio bouvard 2009-07-09T15:10:10Z 2009-07-09T15:10:10Z Well, in general I think its wise to take advantage of the fully-automated build cycle that Visual Studio offers. However, if you can segment your dependencies this way and not put undue burden on yourself at compile time then sure, that seems like it would be alright. This probably does require that the external libraries you depend on are at least <i>somewhat</i> stable. Otherwise you may end up habitually running multiple instances of VS. http://stackoverflow.com/questions/1094431/should-git-repos-be-at-the-solution-level-or-project-level-in-visual-studio/1094680#1094680 Comment by bouvard on Should Git Repo's be at the Solution Level or Project Level in Visual Studio bouvard 2009-07-08T18:27:50Z 2009-07-08T18:27:50Z I considered this for my projects, but I found that conforming Git's notion of &quot;submodules&quot; to a Visual Studio solutions's expected file structure was non-trivial. (Though not impossible to overcome by any means.) Also, the submodule commands are, to my mind, rather unintuitive and adding the complexity just wasn't necessary for my project. However, your right to point out that if cmaduro's projects have greater needs, this certainly could be a possible solution. http://stackoverflow.com/questions/1094431/should-git-repos-be-at-the-solution-level-or-project-level-in-visual-studio/1094680#1094680 Comment by bouvard on Should Git Repo's be at the Solution Level or Project Level in Visual Studio bouvard 2009-07-08T00:01:17Z 2009-07-08T00:01:17Z <i>wrap _another</i> Git repo around... (stupid typos) http://stackoverflow.com/questions/1094431/should-git-repos-be-at-the-solution-level-or-project-level-in-visual-studio/1094680#1094680 Comment by bouvard on Should Git Repo's be at the Solution Level or Project Level in Visual Studio bouvard 2009-07-08T00:00:30Z 2009-07-08T00:00:30Z Hmmm, I'm not sure I follow. Having one project per repository doesn't prevent you from having an over-arching solution file that includes all those projects and all there build data. (I certainly do, in fact, I have a few like that.) If you are concerned about that build metadata not being version controlled with the rest of the source, you could always wrap around Git repo around just those &quot;solution level&quot; files, although in my case I have found that sort of versioning is overkill/unnecessary. I would be interested to hear any further thoughts you have on the issue. http://stackoverflow.com/questions/943000/flash-based-file-upload-swfupload-fails-with-apache-mod-wsgi/943476#943476 Comment by bouvard on Flash-based file upload (swfupload) fails with Apache/mod-wsgi. bouvard 2009-06-04T03:12:53Z 2009-06-04T03:12:53Z You sir, have my undying admiration. If you are ever in California, drop by. I owe you more than one. http://stackoverflow.com/questions/943000/flash-based-file-upload-swfupload-fails-with-apache-mod-wsgi/943117#943117 Comment by bouvard on Flash-based file upload (swfupload) fails with Apache/mod-wsgi. bouvard 2009-06-04T02:51:49Z 2009-06-04T02:51:49Z Well, I ran the brute force test and recursively chmod'ed the project directory to be writable by any user and still no dice. I get the exact same issue. Empty GET, POST, and FILES with no errors in the logs. Everything with the PYTHONPATH looks correct. Going to try Mapio's solution next, but I'm open to other suggestions. http://stackoverflow.com/questions/943000/flash-based-file-upload-swfupload-fails-with-apache-mod-wsgi/943117#943117 Comment by bouvard on Flash-based file upload (swfupload) fails with Apache/mod-wsgi. bouvard 2009-06-03T15:36:01Z 2009-06-03T15:36:01Z Hmmm, according to the wsgi documentation (<a href="http://code.google.com/p/modwsgi/wiki/ConfigurationGuidelines" rel="nofollow">code.google.com/p/modwsgi/&hellip;</a>), the user and group parameters of the WSGIDaemonProcess command are ignored if Apache is not started as root. That could be the problem. If that is the case then I need to explicitly grant www-data access to '/home/sk/src/sitename/uploads'. Its no wonder I'm a programmer and not a sysadmin... damn permissions drive me nuts. http://stackoverflow.com/questions/943000/flash-based-file-upload-swfupload-fails-with-apache-mod-wsgi/943476#943476 Comment by bouvard on Flash-based file upload (swfupload) fails with Apache/mod-wsgi. bouvard 2009-06-03T15:21:02Z 2009-06-03T15:21:02Z This does sound exactly like the issue I am having, and IN FACT the version of modwsgi shipping with Ubuntu Jaunty does not include this fix. Although I am not using Opera its certainly possible that Flash exhibits similar behavior. You may be the winner Mapio, in which case I will most certainly owe you a beer for pointing this out. I will test tonight. :-) http://stackoverflow.com/questions/943000/flash-based-file-upload-swfupload-fails-with-apache-mod-wsgi/943117#943117 Comment by bouvard on Flash-based file upload (swfupload) fails with Apache/mod-wsgi. bouvard 2009-06-03T15:15:26Z 2009-06-03T15:15:26Z Both these comments follow my intuitions. I will do some more investigation into the WSGI permissions tonight. I did try several variations, including setting the daemon to run as my login user (who certainly ought to have access), but the results were the same. http://stackoverflow.com/questions/943000/flash-based-file-upload-swfupload-fails-with-apache-mod-wsgi Comment by bouvard on Flash-based file upload (swfupload) fails with Apache/mod-wsgi. bouvard 2009-06-03T15:10:55Z 2009-06-03T15:10:55Z Hmmm, I'm not sure I follow the relevance of these links. I actually don't have users uploading images at all at the moment (at least not in the sense of avatars, etc). Also, since I'm using swfupload I am not using any of Django's built-in file upload handling (MEDIA_PATH, FileField, etc). My files are post-processed from a temp directory before being sent on to a final storage repository. http://stackoverflow.com/questions/853421/how-should-i-store-state-for-a-long-running-process-invoked-from-django/853611#853611 Comment by bouvard on How should I store state for a long-running process invoked from Django? bouvard 2009-05-26T22:50:12Z 2009-05-26T22:50:12Z S. Lott: Thanks for all your input in this. After a couple false starts I've finally conceded that you are on the money with your WSGI approach. However, I am curious about one implementation detail: how do you ping the batch server to start the request without waiting for the reply? Do you somehow do that from the calling application, or does the batch server generate a new process (or thread) and then return 200 immediately? I have not found an elegant way of dealing with this. It seems like it ought to be trivial for the main application to start the batch server asynchronously. http://stackoverflow.com/questions/853421/how-should-i-store-state-for-a-long-running-process-invoked-from-django/853611#853611 Comment by bouvard on How should I store state for a long-running process invoked from Django? bouvard 2009-05-13T21:18:40Z 2009-05-13T21:18:40Z Ah, I see. In my case its just the opposite. The uploads are central to the application and so the the processing requests could become <i>very</i> frequent. As much as I try to avoid cron (more for philosophical reasons than anything else) I think it is the sensible solution here. http://stackoverflow.com/questions/853421/how-should-i-store-state-for-a-long-running-process-invoked-from-django/853611#853611 Comment by bouvard on How should I store state for a long-running process invoked from Django? bouvard 2009-05-13T19:39:01Z 2009-05-13T19:39:01Z I suppose I should have phrased that last comment as a question as clearly you have a way of dealing with this problem: what is your strategy? http://stackoverflow.com/questions/853421/how-should-i-store-state-for-a-long-running-process-invoked-from-django/853611#853611 Comment by bouvard on How should I store state for a long-running process invoked from Django? bouvard 2009-05-13T19:20:39Z 2009-05-13T19:20:39Z This is sort of what I planned to do with Pyro, but the problem I foresee is that a sudden server outage could leave documents half-processed and there would be no new request message to re-initiate processing. If I use a cron job I know that I can just pick the old 10 unfinished jobs from the Request table and I will pickup any that got cutoff during the outage. http://stackoverflow.com/questions/226473/cron-script-to-act-as-a-queue-or-a-queue-for-cron/226661#226661 Comment by bouvard on cron script to act as a queue OR a queue for cron ? bouvard 2009-05-13T17:05:21Z 2009-05-13T17:05:21Z This is pseudo-code saved me heading down a badly unsupportable path with regards to job queuing. Thanks a lot Piskvor.