User S.Lott - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T02:26:37Z http://stackoverflow.com/feeds/user/10661 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1943747/python-logging-before-you-run-logging-basicconfig/1943809#1943809 1 Answer by S.Lott for Python logging before you run logging.basicConfig? S.Lott 2009-12-22T02:05:27Z 2009-12-22T02:11:30Z <p>Yes.</p> <p>You've asked to log something. Logging must, therefore, fabricate a default configuration. Once logging is configured... well... it's configured.</p> <blockquote> <p>"With the logger object configured, the following methods create log messages:"</p> </blockquote> <p>Further, you can read about creating handlers to prevent spurious logging. But that's more a hack for bad implementation than a useful technique.</p> <p>There's a trick to this.</p> <ol> <li><p>No module can do anything except <code>logging.getlogger()</code> requests at a global level.</p></li> <li><p>Only the <code>if __name__ == "__main__":</code> can do a logging configuration.</p></li> </ol> <p>If you do logging at a global level in a module, then you may force logging to fabricate it's default configuration.</p> <p>Don't do <code>logging.info</code> globally in any module. If you absolutely think that you must have <code>logging.info</code> at a global level in a module, then you have to configure logging <em>before</em> doing imports. This leads to unpleasant-looking scripts.</p> http://stackoverflow.com/questions/1943021/equivalent-of-define-in-java/1943034#1943034 0 Answer by S.Lott for Equivalent of #define in Java? S.Lott 2009-12-21T22:25:14Z 2009-12-21T23:04:19Z <p>Use properties to do this kind of thing.</p> <p>Use things like Class.forName to identify the class.</p> <p>Do not use if-statements when you can trivially translate a property directly to a class.</p> http://stackoverflow.com/questions/1940710/syntax-quirks-or-why-is-that-valid-python/1940908#1940908 4 Answer by S.Lott for Syntax quirks or why is that valid python S.Lott 2009-12-21T15:56:56Z 2009-12-21T15:56:56Z <p>It isn't inconsistent. Strings and integers have different methods. </p> <p>Integer concatenation is meaningless. </p> <p>String concatenation is a meaningful default behavior. </p> http://stackoverflow.com/questions/1939750/django-models-generic-modelling/1939863#1939863 3 Answer by S.Lott for Django models generic modelling S.Lott 2009-12-21T12:33:15Z 2009-12-21T15:54:35Z <p>Don't model the page in the database. Pages are a presentation thing.</p> <p><strong>First</strong> -- and foremost -- get the data right.</p> <p>"And each block needs custom rendering, saving and data." Break this down: you have unique data. Ignore the "block" and "rendering" from a model perspective. Just define the data <em>without regard to presentation</em>.</p> <p>Seriously. Just define the data in the model without any consideration of presentation or rending or anything else. Get the data model right. </p> <p>If you confuse the model and the presentation, you'll never get anything to work well. And if you do get it to work, you'll never be able to extend or reuse it.</p> <p><strong>Second</strong> -- only after the data model is <em>right</em> -- you can turn to presentation.</p> <p>Your "blocks" may be done simply with HTML <code>&lt;div&gt;</code> tags and a style sheet. Try that first. After all, the model works and is very simple. This is just HTML and CSS, separate from the model.</p> <p>Your "blocks" may require custom template tags to create more complex, conditional HTML. Try that second.</p> <p>Your "blocks" may -- in an extreme case -- be so complex that you have to write a specialized view function to transform several objects into HTML. This is very, very rare. You should not do this until you are sure that you can't do this with template tags.</p> <p><hr></p> <p>Edit.</p> <p>"query different external data sources"</p> <p>"separate simple classes (not Models) that have a save method, that write to the same database table."</p> <p>You have three completely different, unrelated, separate things.</p> <ul> <li><p>Model. The persistent model. With the <code>save()</code> method. These do very, very little. They have attributes and a few methods. No "query different external data sources". No "rendering in HTML".</p></li> <li><p>External Data Sources. These are ordinary Python classes that acquire data. These objects (1) get external data and (2) create Model objects. And nothing else. No "persistence". No "rendering in HTML".</p></li> <li><p>Presentation. These are ordinary Django templates that present the Model objects. No external query. No persistence.</p></li> </ul> http://stackoverflow.com/questions/1938577/how-to-handle-non-managed-models-in-unittests/1939551#1939551 1 Answer by S.Lott for How to handle non managed models in unittests. S.Lott 2009-12-21T11:22:26Z 2009-12-21T11:22:26Z <ol> <li><p>Read this: <a href="http://docs.djangoproject.com/en/1.1/topics/db/sql/#topics-db-sql" rel="nofollow">http://docs.djangoproject.com/en/1.1/topics/db/sql/#topics-db-sql</a></p></li> <li><p>Read this: <a href="http://docs.djangoproject.com/en/dev/ref/django-admin/?from=olddocs#djadmin-syncdb" rel="nofollow">http://docs.djangoproject.com/en/dev/ref/django-admin/?from=olddocs#djadmin-syncdb</a></p> <blockquote> <p>"syncdb will also search for and install any fixture named initial_data with an appropriate extension (e.g. json or xml). See the documentation for loaddata for details on the specification of fixture data files."</p> </blockquote></li> <li><p>Read this: <a href="http://docs.djangoproject.com/en/1.1/howto/initial-data/#database-backend-specific-sql-data" rel="nofollow">http://docs.djangoproject.com/en/1.1/howto/initial-data/#database-backend-specific-sql-data</a></p></li> </ol> <p>You should be able to create your non-Django table in a test database.</p> <p>However, that's the wrong thing to do.</p> <p>The right thing to do is to </p> <ol> <li><p>Put your non-Django model into Django.</p></li> <li><p>Use the Custom SQL facilities (<a href="http://docs.djangoproject.com/en/1.1/topics/db/sql/#topics-db-sql" rel="nofollow">http://docs.djangoproject.com/en/1.1/topics/db/sql/#topics-db-sql</a>) to do whatever special SQL you need to do. </p> <p>You can get a direct DB connection and you can get a cursor and you can execute SQL directly. You do not need to create tables outside Django that Django's supposed to create FK's for.</p></li> </ol> http://stackoverflow.com/questions/1937760/alternative-to-idle/1937771#1937771 0 Answer by S.Lott for Alternative to IDLE S.Lott 2009-12-21T01:37:43Z 2009-12-21T01:37:43Z <p>Look at Komodo Edit.</p> http://stackoverflow.com/questions/1933394/what-is-the-best-db-strategy-for-column-indexing/1933415#1933415 0 Answer by S.Lott for what is the best db strategy for column indexing? S.Lott 2009-12-19T16:49:27Z 2009-12-19T16:49:27Z <p>Those are about the only reasons to index.</p> <p>Since "usage pattern" is very hard to quantify -- and it varies -- it's impossible to make a blanket statement on indexes.</p> <p>An index that is heavily updated (or deleted) becomes more cost than benefit.</p> <p>An index that is rarely used may be most costly to maintain than the few queries that use it.</p> <p>It requires active experimentation to determine if the mix of indexes is optimal for the current usage pattern of your database. That means looking at query execution plans to see what's used, and looking at slow queries to see what might be missing.</p> http://stackoverflow.com/questions/1925557/should-i-use-a-parser-lexer-for-this/1925618#1925618 2 Answer by S.Lott for Should I use a parser/lexer for this? S.Lott 2009-12-18T00:51:25Z 2009-12-18T16:04:20Z <p>While your language is simple, using ANTLR has a lot of advantages.</p> <ol> <li><p>Speed. The generated code is VERY fast.</p></li> <li><p>Simplicity. Since you're working in a higher-level language, small grammar changes are less costly and complex.</p></li> <li><p>Extensibility. Since you're working in a higher-level language, adding features is a lower-cost activity.</p></li> </ol> <p>Yes, you need to learn ANTLR. And if your grammar has ambiguities, you'll need to learn about shift-reduce and reduce-reduce conflicts. This can be time well spent.</p> <p>Many problems are lexical scanning or parsing problems. Knowing how to create a lexical scanner and parser is a helpful skill.</p> http://stackoverflow.com/questions/1928806/calling-a-method-on-class-a-depending-on-type-of-parameter/1928867#1928867 4 Answer by S.Lott for Calling a method on class A depending on type of parameter S.Lott 2009-12-18T15:28:00Z 2009-12-18T15:28:00Z <p>That's one of many wrong ways to implement polymorphism. You should never look at class names. Looking at class names should bother you because it means that you haven't delegated the responsibility correctly.</p> <p>Move each method into the appropriate class.</p> <pre><code>class Class1(object): def method( self, theA, params ): theA.methA( params ) class Class2(object): def method( self, theA, params ): theA.methB( params ) class Class3(object): def method( self, theA, params ): theA.methC( params ) class A(object): def methA(parm1, parm2) ... def methB(parm1, parm2) ... def methC(parm1, parm2) ... def manager(parm1, method, params) ... param1.method( self, params ) </code></pre> http://stackoverflow.com/questions/1927544/for-loop-first-iteration/1927575#1927575 10 Answer by S.Lott for "For" loop first iteration S.Lott 2009-12-18T11:09:46Z 2009-12-18T11:59:14Z <p>You have several choices for the <strong>Head-Tail</strong> design pattern.</p> <pre><code>seq= something.get() root.copy( seq[0] ) foo( seq[0] ) for member in seq[1:]: somewhereElse.copy(member) foo( member ) </code></pre> <p>Or this</p> <pre><code>seq_iter= iter( something.get() ) head = seq_iter.next() root.copy( head ) foo( head ) for member in seq_iter: somewhereElse.copy( member ) foo( member ) </code></pre> <p>People whine that this is somehow not "DRY" because the "redundant foo(member)" code. That's a ridiculous claim. If that was true then all functions could only be used once. What's the point of defining a function if you can only have one reference?</p> http://stackoverflow.com/questions/1925999/this-python-script-can-be-shortened-optimized-how/1926022#1926022 3 Answer by S.Lott for this python script can be shortened/optimized, how? S.Lott 2009-12-18T03:02:34Z 2009-12-18T03:02:34Z <p>Please do not build SQL text like that. Please do not. Please.</p> <p>First. The variable <code>ziplist</code> is not used. Delete it.</p> <p>Second. Use real SQL binding.</p> <pre><code>c.execute( "INSERT...", row ) </code></pre> <p>This is documented in the MySQLdb interface. <a href="http://mysql-python.sourceforge.net/MySQLdb-1.2.2/" rel="nofollow">http://mysql-python.sourceforge.net/MySQLdb-1.2.2/</a>.</p> http://stackoverflow.com/questions/1925576/is-it-worth-me-learning-c-as-a-web-developer-will-i-ever-use-it/1925602#1925602 6 Answer by S.Lott for Is it worth me learning C as a Web Developer? Will i ever use it? S.Lott 2009-12-18T00:47:44Z 2009-12-18T00:47:44Z <p>The unending pain of getting C programs to actually work reliably will teach you a lot about why PHP is a more civilized way to write software.</p> <p>And yes, you'll use it eventually. </p> <p>Some day you'll run across a problem ill-suited to PHP or Ruby. You'll be able to fall back to C and look like a hero because you know something more than other folks.</p> http://stackoverflow.com/questions/1925360/rules-engine-in-c-or-python/1925588#1925588 0 Answer by S.Lott for Rules Engine in C or Python S.Lott 2009-12-18T00:44:44Z 2009-12-18T00:44:44Z <p>In effect, Python <em>is</em> a rules engine.</p> <p>"The engine will be used as way to automate a house, like turning the light off when somebody leaves a room etc."</p> <p>You need sensors and controllers. You write your "rules" as ordinary Python objects.</p> <p>Your main "program" collects events from your sensors and sends events to your controllers. </p> <p>If you can read from your sensors via ordinary USB, that's even better. The marine industry uses a couple of closely related standards like NMEA 0183 and NMEA 2000 for specifying the traffic on the bus from sensor to controller.</p> <p>You don't need Yet Another Rules Language. You have Python.</p> http://stackoverflow.com/questions/110032/star-schema-design 11 Star-Schema Design S.Lott 2008-09-21T02:22:02Z 2009-12-17T21:12:29Z <p>Is a Star-Schema design essential to a data warehouse? Or can you do data warehousing with another design pattern?</p> http://stackoverflow.com/questions/1922849/boolean-query/1923976#1923976 0 Answer by S.Lott for Boolean Query.. S.Lott 2009-12-17T19:22:24Z 2009-12-17T19:22:24Z <pre><code>&gt;&gt;&gt; 'True' is not True True </code></pre> <p>'True' is a string</p> <p>True is a boolean</p> <p>They have nothing to do with each other, except coincidentally. The string value happens to have the same letters as the boolean literal. But that's just a coincidence.</p> http://stackoverflow.com/questions/1921559/the-best-solution-for-distribution-website/1922486#1922486 1 Answer by S.Lott for The best solution for distribution website? S.Lott 2009-12-17T15:25:37Z 2009-12-17T15:25:37Z <p>"What i need to know is whether the porposed solution is suitable for such a small project and could not be easily replaced by less complicated languages/frameworks/dmbses like PHP with MySQL etc. "</p> <p>Yes. It's suitable.</p> <p>No. Nothing is "less complicated" than Django. PHP language may appear less complicated than Python, but you'll do more work to create the site. </p> <p>With Django, you define the model, define the non-administrative views and you're done. For simple sites this can take as little as 20 minutes. The built-in admin is more valuable than you can imagine.</p> <p>MySQL is not "less complicated" that PostgresSQL -- they're the same thing</p> http://stackoverflow.com/questions/1912476/best-place-to-coerce-convert-to-the-right-type-in-python/1914129#1914129 0 Answer by S.Lott for Best place to coerce/convert to the right type in Python S.Lott 2009-12-16T11:36:19Z 2009-12-17T00:59:48Z <p>There is exactly one time when integer vs. float will be a problem. This is the only time when you will find a "simple" bug that's weird and a challenge to debug.</p> <p>Division.</p> <p>Everything else does the conversion you need when you need it.</p> <p>If you are using Python 2.x and casually throwing around <code>/</code> operators without thinking, you can -- under some common circumstances -- wind up doing the wrong thing.</p> <p>You have several choices.</p> <ol> <li><p><code>from __future__ import division</code> will give you Python 3 semantics for division.</p></li> <li><p>Run with the <code>-Qnew</code> option at all times to get the new division semantics.</p></li> <li><p>Use <code>float</code> near <code>/</code> operations.</p></li> </ol> <p>Division is the only place where type can matter. It's the only time that integers behave differently from floats in a way that silently affects your results.</p> <p>All other type mismatch problems will fail spectacularly with a <code>TypeError</code> exception. All others. You won't waste time debugging. You'll know immediately what's wrong.</p> <p><hr></p> <p>To be more specific.</p> <p>There's no debugging of "expect a string but didn't get a string". This will crash immediately with a traceback. No confusion. No time lost thinking. If a function expects a string, then the caller must provide the string -- that's the rule.</p> <p>Alternative 2 above is used RARELY to correct the problem where you have a function that expects a string AND you got confused and forgot to provide a string. This mistake happens RARELY and it leads to an immediate type exception.</p> http://stackoverflow.com/questions/122547/how-well-does-bugzilla-work-for-managing-scrum-projects 2 How well does Bugzilla work for managing Scrum projects? S.Lott 2008-09-23T17:43:06Z 2009-12-16T22:44:46Z <p>We have MS Sharepoint -- which isn't all bad for managing a task list. The data's publicly available, people are notified of changes and assignments. </p> <p>I think that Bugzilla might be a little easier for management and reporting purposes. While there are some nice Open Source Scrum management tools, I've used up a lot of my political capital and can't ask for too much more than what we've got now. Money isn't the object -- obviously -- it's the idea that my team has too many specialized tools.</p> <p>Will Bugzilla work out as a more general project management tool -- outside the bug fix use cases?</p> <p>Will I be bitterly disappointed and wish I'd downloaded something else and made my case for a better project management tool?</p> http://stackoverflow.com/questions/1917111/python-stack-for-data-centric-scalable-rest-application/1917282#1917282 3 Answer by S.Lott for Python stack for data centric scalable REST application S.Lott 2009-12-16T20:01:59Z 2009-12-16T21:44:21Z <p>I think the only things you need are werkzeug and SQLAlchemy.</p> <p>I'm not sure that you need web.py or pylons. A simple set of WSGI application will easily handle authentication, caching and routing of requests from URL/method to a specific Python class that does the real work.</p> <p>With SQLAlchemy you can have all of the database adapters wrapped in a consistent ORM.</p> <p><hr></p> <p>"Any ideal with regards to avoiding boilerplate code for URL dispatch?"</p> <p>Not sure how to answer this. It's a fundamental feature of WSGI that everything can be reused in a trivial way.</p> <p>There are lots of URL-dispatching WSGI applications. Lots.</p> <p>Start by reading the wsgiref module in the standard library: <a href="http://docs.python.org/library/wsgiref.html#wsgiref.util.shift_path_info" rel="nofollow">http://docs.python.org/library/wsgiref.html#wsgiref.util.shift_path_info</a>. This shows the common design pattern to URL parsing in a WSGI environment: update the environment and invoke an application with the enriched environment.</p> <p>Look at werkzeug's URL routing. <a href="http://werkzeug.pocoo.org/documentation/0.5.1/routing.html" rel="nofollow">http://werkzeug.pocoo.org/documentation/0.5.1/routing.html</a></p> <p>Look at additional URL routing.</p> <ul> <li><p><a href="http://pesto.redgecko.org/dispatch.html" rel="nofollow">http://pesto.redgecko.org/dispatch.html</a></p></li> <li><p><a href="http://pypi.python.org/pypi/urlrelay/0.6" rel="nofollow">http://pypi.python.org/pypi/urlrelay/0.6</a></p></li> </ul> http://stackoverflow.com/questions/1915564/python-convert-a-dictionary-to-a-sorted-list-by-value-instead-of-key/1915665#1915665 0 Answer by S.Lott for python, convert a dictionary to a sorted list by value instead of key S.Lott 2009-12-16T16:06:28Z 2009-12-16T16:46:05Z <p>"Invert" a dictionary.</p> <pre><code>from collections import defaultdict inv_dict = defaultdict( list ) for key, value in adict: inv_dict[value].append( key ) max_value= max( inv_dict.keys() ) </code></pre> <p>The set of keys with the maximum occurrence -- </p> <pre><code>inv_dict[max_value] </code></pre> <p>The set of keys in descending order by occurrence --</p> <pre><code>for value, key_list in sorted( inv_dict ): print key_list, value </code></pre> http://stackoverflow.com/questions/1913837/speedup-writing-c-programs-using-a-subset-of-the-python-syntax/1914054#1914054 1 Answer by S.Lott for Speedup writing C programs using a subset of the Python syntax S.Lott 2009-12-16T11:25:35Z 2009-12-16T11:25:35Z <p>If you want to type less C, you don't need syntax tricks.</p> <p>You need a library of better, higher-level constructs so you actually type less C, not fewer characters to create pseudo-C.</p> <p>If you had a library of better, higher-level constructs, you could write properly object-oriented programs in a short, easy-to-read syntax. </p> <p>Taking this to the logical extreme, you can create nice library bundles that are callable from Python. Then you can switch to Python, type less and get the same amount of work done.</p> http://stackoverflow.com/questions/1913906/python-performance-characteristics/1914032#1914032 4 Answer by S.Lott for Python performance characteristics S.Lott 2009-12-16T11:20:20Z 2009-12-16T11:20:20Z <p>Here's what's interesting.</p> <ul> <li><p>Data Structure</p></li> <li><p>Algorithm</p></li> </ul> <p>Those will yield dramatic improvements. </p> <p>Your list is good for -- at best -- a few single-digit performance improvements.</p> <p>You need to fundamentally rethink your data structures if you want to see real speed improvements.</p> http://stackoverflow.com/questions/1912009/what-are-good-strategies-for-gaining-more-recruiting-traction-at-colleges-univers/1912025#1912025 1 Answer by S.Lott for What are good strategies for gaining more recruiting traction at colleges/universities? S.Lott 2009-12-16T03:13:54Z 2009-12-16T03:13:54Z <p>Training.</p> <p>It's unlikely that you'll find someone with all the right technical skills. If you do, you compete heavily for them.</p> <p>However, someone with weaker technical skills and the right attitude may be someone you can train in your technology choices. And the competition may not be so intense.</p> http://stackoverflow.com/questions/1906977/read-https-url-from-python/1907018#1907018 2 Answer by S.Lott for Read https url from Python S.Lott 2009-12-15T12:11:42Z 2009-12-15T12:11:42Z <p>Please read about the urllib2 password manager and the basic authentication handler as well as the digest authentication handler.</p> <p><a href="http://docs.python.org/library/urllib2.html#abstractbasicauthhandler-objects" rel="nofollow">http://docs.python.org/library/urllib2.html#abstractbasicauthhandler-objects</a></p> <p><a href="http://docs.python.org/library/urllib2.html#httpdigestauthhandler-objects" rel="nofollow">http://docs.python.org/library/urllib2.html#httpdigestauthhandler-objects</a></p> <p>Your urllib2 script must actually provide enough information to do HTTP authentication. Usernames, Passwords, Domains, etc.</p> http://stackoverflow.com/questions/1904723/in-python-is-there-a-setdefault-equivalent-for-getting-object-attributes/1906981#1906981 1 Answer by S.Lott for In python, is there a setdefault() equivalent for getting object attributes? S.Lott 2009-12-15T12:04:01Z 2009-12-15T12:04:01Z <p>Don't Do This.</p> <p>Please.</p> <p>Use <code>__init__</code> to provide default values. Please. That's the Pythonic way.</p> <pre><code>class Foo( object ): def __init__( self ): self.bar = 'bah' </code></pre> <p>This is the normal, standard, typical approach. There's no compelling reason to do otherwise.</p> http://stackoverflow.com/questions/1906926/python-unbound-method-again/1906957#1906957 1 Answer by S.Lott for python unbound method again S.Lott 2009-12-15T11:58:50Z 2009-12-15T11:58:50Z <p>You only rarely call methods on a class definition (<code>Student</code>)</p> <p>Almost always, you create an instance of the class</p> <pre><code>someStudent = Student(someRow) </code></pre> <p>Then you call the method on the instance ("object"), <code>someStudent</code>.</p> <pre><code>someStudent.MostFrequent() </code></pre> http://stackoverflow.com/questions/1903158/validate-that-atleast-one-modelfield-has-value-in-django-admin/1903210#1903210 3 Answer by S.Lott for Validate that atleast one modelfield has value in Django admin S.Lott 2009-12-14T20:16:33Z 2009-12-14T20:16:33Z <p>This kind of validation is what a customized Form is for. Define a Form, write validation methods in the Form. Bind the Form to the Model to create the Admin interface.</p> http://stackoverflow.com/questions/1900195/whats-a-neater-more-pythonic-way-to-do-the-following-enumeration/1900721#1900721 2 Answer by S.Lott for What's a neater, more pythonic way to do the following enumeration? S.Lott 2009-12-14T12:44:13Z 2009-12-14T13:50:30Z <p>The fundamental question is not regarding this loop.</p> <p>The fundamental questions are these:</p> <p>1) Where does this <code>instruments</code> structure come from, and why do you need to reorganize it?</p> <p>2) What is this <code>self.table</code> structure on which you're calling <code>SetValue</code>?</p> <p>3) What are you going to do with this <code>self.table</code> structure?</p> <p>Until you answer these questions, your sample Python code has no context in which it can be evaluated. It's just code. </p> http://stackoverflow.com/questions/1900189/how-to-access-a-builtin-module-in-python-when-there-is-a-local-module-with-the-sa/1900318#1900318 3 Answer by S.Lott for How to access a builtin module in Python when there is a local module with the same name? S.Lott 2009-12-14T11:18:05Z 2009-12-14T11:18:05Z <p>Why can't you rename your local module again? </p> <p>Clearly, it's not a "total" replacement, if you still need things from the installed <code>uncertainties</code>. </p> <p>Since it's a partial replacement, you should not give it the same name. </p> <p>What's different? What's the same? Pick a better name based on that.</p> http://stackoverflow.com/questions/1884694/how-to-populate-sqlite3-in-django/1885417#1885417 4 Answer by S.Lott for How to populate sqlite3 in django? S.Lott 2009-12-11T02:11:27Z 2009-12-13T14:22:06Z <p>Just load the database directly. Collect data from websites in batches, loading the SQlite3 directly. Just write simple batch applications that use the Django ORM. Collect data from websites and load SQLite3 immediately. Do not create CSV. Do not create JSON. Do not create intermediate results. Do not do any extra work.</p> <p><hr></p> <p>Edit.</p> <pre><code>from myapp.models import MyModel import urllib2 with open("sourceListOfURLs.txt", "r" ) as source: for aLine in source: for this, the, the_other in someGenerator( aLine ): object= MyModel.objects.create( field1=this, field2=that, field3=the_other ) object.save() def someGenerator( url ): # open the URL with urllib2 # parse the data with BeautifulSoup yield this, that, the_other </code></pre> http://stackoverflow.com/questions/1943825/sqlalchemy-query Comment by S.Lott on SQLAlchemy query S.Lott 2009-12-22T02:15:33Z 2009-12-22T02:15:33Z Are you asking how to do a Union between two tables that contain &quot;Computer&quot;? Please provide relevant code for the things you're trying to union. http://stackoverflow.com/questions/1942576/salting-passwords-databases-and-security-need-a-little-help Comment by S.Lott on salting, passwords databases and security, need a little help. S.Lott 2009-12-21T20:59:49Z 2009-12-21T20:59:49Z Duplicate of all of these: <a href="http://stackoverflow.com/search?q=salt" rel="nofollow">stackoverflow.com/search?q=salt</a>. Specifically this: <a href="http://stackoverflow.com/questions/797626/is-using-a-salt-all-that-good" rel="nofollow" title="is using a salt all that good">stackoverflow.com/questions/797626/&hellip;</a> http://stackoverflow.com/questions/1932643/general-questions-regarding-python-language Comment by S.Lott on General questions regarding Python language S.Lott 2009-12-21T19:18:06Z 2009-12-21T19:18:06Z @Fabian: I don't care how it starts out. When it winds up here, it helps to edit the question and the title so they match. It helps us to understand your question if you take the time to clarify and focus it. You can fix your question and your title so they match. Please fix one or both so that others can easily figure out what you're asking. http://stackoverflow.com/questions/1937921/how-to-keep-up-with-programming Comment by S.Lott on How to keep up with programming S.Lott 2009-12-21T19:15:37Z 2009-12-21T19:15:37Z @John: I'll repeat my warning: It's rambling and unfocused. Edit it. Focus it. Ask something specific. http://stackoverflow.com/questions/1941712/python-huge-iteration-performance-problem Comment by S.Lott on Python, Huge Iteration Performance Problem S.Lott 2009-12-21T18:17:55Z 2009-12-21T18:17:55Z Order n**2 * the size of the dictionary. Small wonder it's slow. http://stackoverflow.com/questions/1939594/open-source-rtos-code-links Comment by S.Lott on open source RTOS code links S.Lott 2009-12-21T16:15:48Z 2009-12-21T16:15:48Z @wrapperm: If Google gave you results, please ask <i>specific</i> questions about those results. It's easy to answer specific questions. It's impossible to answer open-ended questions like this one. Focus, please, so we can help with something <i>specific</i>. http://stackoverflow.com/questions/1940459/changing-properties-of-inherited-field Comment by S.Lott on Changing properties of inherited field S.Lott 2009-12-21T16:00:24Z 2009-12-21T16:00:24Z why aren't you just overriding the field? why do all this? http://stackoverflow.com/questions/1938577/how-to-handle-non-managed-models-in-unittests Comment by S.Lott on How to handle non managed models in unittests. S.Lott 2009-12-21T13:07:32Z 2009-12-21T13:07:32Z &quot;What I would like to do, is create the tables myself&quot; Why bother? I'm still completely unclear why you would create your own tables. What feature is Django unable to implement for you that you actually need? Please be specific on what SQL thing you find so important. http://stackoverflow.com/questions/1938577/how-to-handle-non-managed-models-in-unittests Comment by S.Lott on How to handle non managed models in unittests. S.Lott 2009-12-21T13:06:14Z 2009-12-21T13:06:14Z @googletorp: Always update your question. Never revise or clarify your question via comments. It's your question. You own it. You can fix it until the rest of us understand your problem. http://stackoverflow.com/questions/1939594/open-source-rtos-code-links Comment by S.Lott on open source RTOS code links S.Lott 2009-12-21T11:40:06Z 2009-12-21T11:40:06Z If you think Google is broken, that's not a Stack Overflow question. When Google doesn't work, either ask Google for help or switch to Yahoo! or Bing or something. http://stackoverflow.com/questions/1938629/indentation-in-python/1938642#1938642 Comment by S.Lott on Indentation in python S.Lott 2009-12-21T11:37:57Z 2009-12-21T11:37:57Z @pafcu: It's not really a Holy War. Spaces work. Tabs work mostly. Spaces are perfectly reliable. There's a clear problem with tabs that requires some care and preparation. Tabs have disadvantages. This is not a &quot;distinction with no real difference&quot; issue. This is just a weird behavior of people using tabs in spite of the problems. Usually, tab people are careful enough that it works for them. Then you get questions like this where it's not clear what they're doing or why. http://stackoverflow.com/questions/1938629/indentation-in-python Comment by S.Lott on Indentation in python S.Lott 2009-12-21T11:13:42Z 2009-12-21T11:13:42Z This is not a question. It's a blog posting. &quot;See Python's indent outdent detections is completely screwed up.&quot; &quot;Any Ideas?&quot; isn't much of a question. Finally, it doesn't work <i>as posted</i>, so it can't be answered. http://stackoverflow.com/questions/1938755/getting-the-superclasses-of-a-python-class/1938860#1938860 Comment by S.Lott on Getting the superclass(es) of a Python class S.Lott 2009-12-21T11:11:51Z 2009-12-21T11:11:51Z <a href="http://docs.python.org/library/functions.html#issubclass" rel="nofollow">docs.python.org/library/functions.html#issubclass/&hellip;</a> http://stackoverflow.com/questions/1939357/how-to-get-output-in-real-time-of-any-command-in-python-2-6-under-linux Comment by S.Lott on How to get output in real-time of any command in python 2.6 under LINUX? S.Lott 2009-12-21T11:09:19Z 2009-12-21T11:09:19Z Duplicate: All of these: <a href="http://stackoverflow.com/search?q=%5Bpython%5D+subprocess+real-time" rel="nofollow">stackoverflow.com/search?q=%5Bpython%5D+subproces&hellip;</a>. Specifically, this: <a href="http://stackoverflow.com/questions/874815/how-do-i-get-real-time-information-back-from-a-subprocess-popen-in-python-2-5" rel="nofollow" title="how do i get real time information back from a subprocess popen in python 2 5">stackoverflow.com/questions/874815/&hellip;</a> http://stackoverflow.com/questions/1937921/how-to-keep-up-with-programming Comment by S.Lott on How to keep up with programming S.Lott 2009-12-21T02:58:13Z 2009-12-21T02:58:13Z It helps to focus a bit. This paragraph is rambling and unfocused. You might want to edit it into two or three paragraphs to clarify your context and then state your problem. Any constraints on your situation would help. Practicing clear writing is part of practicing the programming skill.