User Tom - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T22:07:20Z http://stackoverflow.com/feeds/user/115846 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/938426/bad-practice-to-run-code-in-constructor-thats-likely-to-fail 4 Bad Practice to run code in constructor thats likely to fail? Tom 2009-06-02T08:05:55Z 2009-10-24T18:26:08Z <p>Hello everyone,</p> <p>my question is rather a design question. In Python, if code in your "constructor" fails, the object ends up not being defined. Thus:</p> <pre><code>someInstance = MyClass("test123") #lets say that constructor throws an exception someInstance.doSomething() # will fail, name someInstance not defined. </code></pre> <p>I do have a situation though, where a lot of code copying would occur if i remove the error-prone code from my constructor. Basically my constructor fills a few attributes (via IO, where a lot can go wrong) that can be accessed with various getters. If I remove the code from the contructor, i'd have 10 getters with copy paste code something like :</p> <ol> <li>is attribute really set?</li> <li>do some IO actions to fill the attribute</li> <li>return the contents of the variable in question</li> </ol> <p>I dislike that, because all my getters would contain a lot of code. Instead of that I perform my IO operations in a central location, the constructor, and fill all my attributes.</p> <p>Whats a proper way of doing this?</p> http://stackoverflow.com/questions/1431801/joining-with-subqueries-counting-and-grouping 0 Joining with subqueries, counting and grouping. Tom 2009-09-16T08:58:19Z 2009-09-17T04:10:20Z <p>Hello everyone,</p> <p>I have 3 tables, which are each 1:n.</p> <p>an entry in table1 has n entries in table2, and so on.</p> <p>lets call them cars, wheels, and screws for illustration. Screws can be clean(1) or rusty(2)</p> <p>I am joining them together, because I want to count 2 things.</p> <p>First, I want to have rows telling me how many good/bad screws per wheel I have for each car. So basically I am getting:</p> <pre><code>car_id wheel_id screw_state count(screws) 1 1 1 3 1 1 2 7 1 2 1 5 1 2 2 3 2 1 1 1 ... and so on... </code></pre> <p>Now I want a second fact, namely how many rusty and clean screws I have for all wheels per car, without needing to know each specific number per wheel. So basically now I just leave off the GROUP BY over wheel_id, like this:</p> <pre><code>car_id screw_state count(screws) 1 1 8 1 2 10 2 1 1 ... and so on... </code></pre> <p>The thing is, I would need both of them in one single query, because else I'd have a lot of sorting and rearranging to do. I believe the second, easier count over the total screws per car should be done as a subquery, but can I join the first, bigger query easily with a subquery?</p> <p>How is this done? I would be happy over a quite specific answers, because I am not really an SQL wizard.</p> <p><em>edit</em> : I am working on an ORM, so funky thinks like below (hacking the col values to some constant) cant be done there easily. I have to get this solution working there, so JOIN/subquery/UNIONs without funky workarounds would be great.</p> <p>Greetings, Tom</p> http://stackoverflow.com/questions/1431796/best-upload-for-web-application-ftp-or-http/1431831#1431831 1 Answer by Tom for Best Upload for web application FTP or HTTP? Tom 2009-09-16T09:05:15Z 2009-09-16T09:44:41Z <p>Depends on what you're doing.</p> <p>every user I ever met knew how to use a browser, but the standard random user doesn't even have an FTP client installed. So usually HTTP uploads aren't really problematic. I wouldn't wanna upload huge files, but 50megs isn't that bad yet. If you want an FTP upload you probably would go for a java applet, so your users are guaranteed to have even the software needed to upload their files. Any PHP/WebFTP things will just run you into the same problems again. </p> <p>Sometimes if I don't know if things I want to do work well, its a good time to look at how others are doing it. Gmail for example has a fabulous upload system. imageshack, millions and millions of users are uploading their stuff their, basically thats all the page does, and all of them use "normal" HTTP, with a little bit of JavaScript sugar to display the progress.</p> <p>edit: here is an example with PHP: (although u seem to be using asp, it might still help) <a href="http://www.devpro.it/upload%5Fprogress/" rel="nofollow">http://www.devpro.it/upload%5Fprogress/</a></p> <p>Greets, </p> <p>Tom</p> http://stackoverflow.com/questions/1367453/reading-a-website-with-asyncore 3 Reading a website with asyncore Tom 2009-09-02T12:39:25Z 2009-09-03T09:03:20Z <p>Hello everyone,</p> <p>I would like to read a website asynchronously, which isnt possible with urllib as far as I know. Now I tried reading with with plain sockets, but HTTP is giving me hell. I run into all kind of funky encodings, for example transfer-encoding: chunked, have to parse all that stuff manually, and I feel like coding C, not python at the moment. </p> <p>Isnt there a nicer way like URLLib, asynchronously? I dont really feel like re-implementing the whole HTTP specification, when it's all been done before.</p> <p>Twisted isnt an option currently.</p> <p>Greetings, </p> <p>Tom</p> http://stackoverflow.com/questions/1334171/how-can-i-mass-assign-sa-orm-object-attributes 1 How can I mass-assign SA ORM object attributes? Tom 2009-08-26T11:50:32Z 2009-08-27T10:53:43Z <p>Hello there,</p> <p>I have an ORM mapped object, that I want to update. I have all attributes validated and secured in a dictionary (keyword arguments). Now I would like to update all object attributes as in the dictionary.</p> <pre><code>for k,v in kw.items(): setattr(myobject, k, v) </code></pre> <p>doesnt work (AttributeError Exception), thrown from SQLAlchemy.</p> <pre><code>myobject.attr1 = kw['attr1'] myobject.attr2 = kw['attr2'] myobject.attr3 = kw['attr3'] </code></pre> <p>etc is horrible copy paste code, I want to avoid that.#</p> <p>How can i achieve this? SQLAlchemy already does something similar to what I want to do in their constructors ( myobject = MyClass(**kw) ), but I cant find that in all the meta programming obfuscated crap in there.</p> <p>error from SA:</p> <pre><code>&lt;&lt; if self.trackparent: if value is not None: self.sethasparent(instance_state(value), True) if previous is not value and previous is not None: self.sethasparent(instance_state(previous), False) &gt;&gt; self.sethasparent(instance_state(value), True) AttributeError: 'unicode' object has no attribute '_sa_instance_state' </code></pre> http://stackoverflow.com/questions/1327848/having-instance-like-behaviour-in-databases 0 Having instance-like behaviour in databases Tom 2009-08-25T12:02:33Z 2009-08-25T12:35:56Z <p>Hey there everyone,</p> <p>Sorry for the bad title, but I have no idea how to put this in short. The Problem is the following:</p> <p>I have a generic item that represents a group, lets call it <strong>Car</strong>. Now this <strong>Car</strong> has attributes, that range within certain limits, lets say for example speed is between 0 and 180 for a usual <strong>Car</strong>. Imagine some more attributes with ranges here, for example Color is between 0 and 255 whatever that value might stand for.</p> <p>So in my table <strong>GenericItems</strong> I have:</p> <pre><code>ID Name 1 Car </code></pre> <p>And in my <strong>Attributes</strong> I have:</p> <pre><code>ID Name Min_Value Max Value 1 Speed 0 180 2 Color 0 255 </code></pre> <p>The relation between Car and Attributes is thus 1:n.</p> <p>Now I start having very specific instances of my <strong>Car</strong> for example a FordMustang, A FerrariF40, and a DodgeViper. These are specific instances and now I want to give them specific values for their attributes.</p> <p>So in my table <strong>SpecificItem</strong> I have:</p> <pre><code>ID Name GenericItem_ID 1 FordMustang 1 2 DodgeViper 1 3 FerrariF40 1 </code></pre> <p>Now I need a third table <strong>SpecificAttributes2SpecificItems</strong>, to match attributes to <strong>SpecificItems</strong>:</p> <pre><code>ID SpecificItem_ID Attribute_ID Value 1 1 1 120 ;Ford Mustang goes 120 only 2 1 2 123 ;Ford Mustang is red 3 2 1 150 ;Dodge Viper goes 150 4 2 2 255 ;Dodge Viper is white 5 3 1 180 ;FerrariF40 goes 180 6 3 2 0 ;FerrariF40 is black </code></pre> <p>The problem with this design is, as you can see, that I am basically always copying over all rows of attributes, and I feel like this is bad design, inconsistent etc. How can I achieve this logic in a correct, normalized way?</p> <p>I want to be able to have multiple generic items, with multiple attributes with min/max values as interval, that can be "instantiated" with specific values</p> http://stackoverflow.com/questions/1317541/dynamic-urls-mvc/1318251#1318251 1 Answer by Tom for Dynamic urls / MVC Tom 2009-08-23T10:33:18Z 2009-08-23T10:40:58Z <p>Usually this is solved with Object Dispatch. You can also create nested Controllers to handle this. An advantage is, that you can follow a major OOP principle, namely encapsulation, as you group all functionality that only concerns Hotels generally in the Hotel controller (for example adding a new one)</p> <p>Another advantage is, you dont have to check what is set after /hotels/ for example. It will only be dispatched to a new controller if there is something left to dispatch i.e. if the current controller wasnt able to handle the entire request.</p> <p>This isnt really specific to a certain framework, but it is fully implemented in Pylons and Turbogears 2.0. (For more details you may refer to <a href="http://turbogears.org/2.0/docs/main/TGControllers.html#the-lookup-method" rel="nofollow">http://turbogears.org/2.0/docs/main/TGControllers.html#the-lookup-method</a> )</p> <pre><code>class HotelController(Controller): """ Controller to handle requests to Hotels """ def index(self): """ Handle the index page here """ pass def addNewHotel(self): """ Register a new hotel here """ pass def lookup(self, state_name, *remainder): """ Read the state, create a new StateController and dispatch """ state_dispatch = StateController(state_name) return state_dispatch, remainder class StateController(object): """ Controller used to dispatch """ def __init__(self, state_name): # do your work on the state here pass def create(self, state_name): """ Create a new state here """ def lookup(self, city_name, *remainder): """ keep on dispatching to other controllers """ city_dispatch = CityController(city_name) return city_dispatch, remainder </code></pre> http://stackoverflow.com/questions/984526/correct-way-of-handling-exceptions-in-python 14 Correct way of handling exceptions in Python? Tom 2009-06-12T00:45:51Z 2009-08-17T14:11:24Z <p>Hello there everyone, I have searched for other posts, as I felt this is a rather common problem, but all other Python exception questions I have found didn't reflect my problem.</p> <p>I will try to be as specific here as I can, so I will give a direct example. And pleeeeease do not post any workarounds for this specific problem. I am not specifically interested how you can send an email much nicer with xyz. I want to know how you generally deal with dependent, error prone statements.</p> <p>My question is, how to handle exceptions nicely, ones that depend on one another, meaning: Only if the first step was successful, try the next, and so on. One more criterion is: All exceptions have to be caught, this code has to be robust.</p> <p>For your consideration, an example:</p> <pre><code>try: server = smtplib.SMTP(host) #can throw an exception except smtplib.socket.gaierror: #actually it can throw a lot more, this is just an example pass else: #only if no exception was thrown we may continue try: server.login(username, password) except SMTPAuthenticationError: pass # do some stuff here finally: #we can only run this when the first try...except was successful #else this throws an exception itself! server.quit() else: try: # this is already the 3rd nested try...except # for such a simple procedure! horrible server.sendmail(addr, [to], msg.as_string()) return True except Exception: return False finally: server.quit() return False </code></pre> <p>This looks extremely unpythonic to me, and the error handling code is triple the real business code, but on the other hand how can I handle several statements that are dependent on one another, meaning statement1 is prerequisite for statement2 and so on?</p> <p>I am also interested in proper resource cleanup, even Python can manage that for itself. </p> <p>Thanks, Tom</p> http://stackoverflow.com/questions/128689/doing-crud-in-turbogears/1282180#1282180 2 Answer by Tom for Doing CRUD in Turbogears Tom 2009-08-15T15:50:29Z 2009-08-15T15:50:29Z <p>You should really take a look at sprox ( <a href="http://sprox.org/" rel="nofollow">http://sprox.org/</a> ).</p> <p>It builds on RESTController, is very straight forward, well documented (imo), generates forms and validation "magically" from your database and leaves you with a minimum of code to write. I really enjoy working with it.</p> <p>Hope that helps you :)</p> http://stackoverflow.com/questions/1067056/handling-controller-missing-controller-parameters-in-turbogears-2/1282171#1282171 1 Answer by Tom for Handling controller missing controller parameters in turbogears 2 Tom 2009-08-15T15:44:59Z 2009-08-15T15:44:59Z <p>Hello there.</p> <p>The exception thrown at you for specifying an "incompatible" controller method signature only happens in debug / development mode. You dont need to handle it more gracefully in a production environment, because once you disable development mode, controller methods send an HTTP 500 Error when they lack essential parameters.</p> <p>You might want to consider the respective settings in your development.ini:</p> <pre><code># WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT* # Debug mode will enable the interactive debugging tool, allowing ANYONE to # execute malicious code after an exception is raised. set debug = false </code></pre> <p>I hope this was your question. </p> <p>In the case that you still want the controller do its work, even though its lacks important parameters, you must define default values, else the controller cannot do its work properly anyway. The question you better ask yourself is: Do you simply want a nicer error message, or do you want the controller to be able to do its task. In the latter case, specifying default parameters is best practise, *args and **kwargs for each method just so the customer doesnt get an error is a very ugly hack in my option.</p> <p>If you want to change the display of these errors refer to /controllers/error.py</p> <p>Hope this helped,</p> <p>Tom</p> http://stackoverflow.com/questions/1252885/paste-python-web-server-autoreload-problem/1254497#1254497 2 Answer by Tom for Paste (Python) Web Server - Autoreload Problem Tom 2009-08-10T12:03:35Z 2009-08-10T12:03:35Z <p>I had a similar problem and circumvented the problem. I currently have paster running on a remote host, but I am still developing, so I needed a means to restart paster, but manually by hand was too time consuming, and daemon didnt work. So I always had to keep a shell window open to the server and running paster without --daemon in there. Once I finished my work for that day, and i closed the shell, paster died, which is bad.</p> <p>I circumvented that by running paster non daemonized in a "screen". Simply type "screen" in your shell of choice, you will usually depending on your linux be presented with a virtual terminal, that will keep running even when you log out your remote session. Start paster as usually in your new "window" (the screen) with --reload but without daemon, and then detach the window, so you can return to your normal shell (detach = CTRL-A, then press D). You can re-enter that screen by typing "screen -r". If you would like to kill it, reconnect it (screen -r) and inside the screen type CTRL-A, then press K.</p> <p>Hope that helps.</p> http://stackoverflow.com/questions/1212716/python-interpreter-blocks-multithreaded-dns-requests 3 Python Interpreter blocks Multithreaded DNS requests? Tom 2009-07-31T14:03:56Z 2009-08-05T17:15:36Z <p>Hello everyone,</p> <p>I just played around a little bit with python and threads, and realized even in a multithreaded script, DNS requests are blocking. Consider the following script:</p> <p>from threading import Thread import socket</p> <pre><code>class Connection(Thread): def __init__(self, name, url): Thread.__init__(self) self._url = url self._name = name def run(self): print "Connecting...", self._name try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.setblocking(0) s.connect((self._url, 80)) except socket.gaierror: pass #not interested in it print "finished", self._name if __name__ == '__main__': conns = [] # all invalid addresses to see how they fail / check times conns.append(Connection("conn1", "www.2eg11erdhrtj.com")) conns.append(Connection("conn2", "www.e2ger2dh2rtj.com")) conns.append(Connection("conn3", "www.eg2de3rh1rtj.com")) conns.append(Connection("conn4", "www.ege2rh4rd1tj.com")) conns.append(Connection("conn5", "www.ege52drhrtj1.com")) for conn in conns: conn.start() </code></pre> <p>I dont know exactly how long the timeout is, but when running this the following happens:</p> <ol> <li>All Threads start and I get my printouts</li> <li>Every xx seconds, one thread displays finished, instead of all at once</li> <li>The Threads finish sequentially, not all at once (timeout = same for all!)</li> </ol> <p>So my only guess is that this has to do with the GIL? Obviously the threads do not perform their task concurrently, only one connection is attempted at a time.</p> <p>Does anyone know a way around this?</p> <p>(<strong>asyncore</strong> doesnt help, and I'd prefer not to use <strong>twisted</strong> for now) Isn't it possible to get this simple little thing done with python?</p> <p>Greetings, Tom</p> <h1>edit:</h1> <p>I am on MacOSX, I just let my friend run this on linux, and he actually does get the results I wished to get. His socket.connects()'s return immediately, even in a non Threaded environment. And even when he sets the sockets to blocking, and timeout to 10 seconds, all his Threads finish at the same time.</p> <p>Can anyone explain this?</p> http://stackoverflow.com/questions/1222188/add-an-expires-header/1222217#1222217 2 Answer by Tom for Add an Expires Header Tom 2009-08-03T12:56:46Z 2009-08-03T12:56:46Z <p>Would you please elaborate on what type of website you have, what languages, features etc you use.</p> <p>Usually sending headers is language specific. for PHP you you use the headers() function (<a href="http://www.php.net/manual/de/function.header.php" rel="nofollow">http://www.php.net/manual/de/function.header.php</a>)</p> <p>You would add a header like this:</p> <pre><code>&lt;?php header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past ?&gt; </code></pre> <p>dont forget: the header always has to be the first output sent to the browser, so it's wise to have it as the first line in a script, or if not possible, as the first line that outputs something.</p> <p>additionally, you can upload a very small page without images, and dynamic code, check how fast it loads. Then add a dynamic page that doesnt do much, check how fast it loads. next take a dynamic page with a DB access, check how long it loads.</p> <p>Like this you can limit the problem to certain fields (dynamic scripts slow is a hint for high cpu usage on your server, slow DB queries: DB server is really busy etc)</p> <p>If none of this helps, the problem is with your application. Measure the total download size per pageload, and you can see if youre transferring huge amounts of data.</p> <p>greetings, tom</p> http://stackoverflow.com/questions/1205863/how-can-i-get-non-blocking-socket-connects 3 How can I get non-blocking socket connect()'s? Tom 2009-07-30T10:58:16Z 2009-07-31T14:15:59Z <p>Hello there,</p> <p>I have a quite simple problem here. I need to communicate with a lot of hosts simultaneously, but I do not really need any synchronization because each request is pretty self sufficient.</p> <p>Because of that, I chose to work with asynchronous sockets, rather than spamming threads. Now I do have a little problem:</p> <p>The async stuff works like a charm, but when I connect to 100 hosts, and I get 100 timeouts (timeout = 10 secs) then I wait 1000 seconds, just to find out all my connections failed.</p> <p>Is there any way to also get non blocking socket connects? My socket is already set to nonBlocking, but calls to connect() are still blocking.</p> <p>Reducing the timeout is not an acceptable solution.</p> <p>I am doing this in Python, but I guess the programming language doesnt really matter in this case.</p> <p>Do I really need to use threads?</p> http://stackoverflow.com/questions/1212000/toscawidgets-recaptcha-error-rendering-recaptcha-page-cuts-off 0 ToscaWidgets Recaptcha - Error Rendering Recaptcha => Page cuts off Tom 2009-07-31T11:18:49Z 2009-07-31T11:36:28Z <p>Hello everyone,</p> <p>I am using the TW for recaptcha, integrated everything as shown in the examples. When sending the ReCaptcha to my template, my whole page output just cuts off.</p> <p>I have traced back the problem to the javascript code in the widget. It looks like this:</p> <pre><code>&lt;script ....&gt;&lt;/script&gt; </code></pre> <p>Only the dotted area contains some data, but the script body is empty. Genshi then "optimizes" the output to </p> <pre><code>&lt;scipt ... /&gt; </code></pre> <p>which seems invalid XHTML to me. Firefox does not detect the end of the area and cuts off the entire page ouput after this.</p> <p>I temporarily fixed this problem by patching the widget: (the nbsp is a real one, just had to put a space into it so it gets displayed here on stack overflow)</p> <pre><code>&lt;script ....&gt;&amp; nbsp;&lt;/script&gt; </code></pre> <p>So it doesnt get converted by Genshi. Has anyone else observed this behaviour? I cannot use Genshi's HTML() method to flag this as HTML and make Genshi leave it alone, because the widget itself generates the output, I do not have any control over how the output is sent to the template.</p> <p>Maybe any of you can try to reproduce this and let me know.</p> <h1>edit:</h1> <p>This refers to exactly my problem, their example even uses my problem (script tag) <a href="http://genshi.edgewall.org/wiki/Documentation/streams.html#id1" rel="nofollow">http://genshi.edgewall.org/wiki/Documentation/streams.html#id1</a> does anyone know how to get TW to use this?</p> <p>Greetings, </p> <p>Tom</p> http://stackoverflow.com/questions/1001068/creating-dynamic-images-with-wsgi-no-files-involved 2 Creating dynamic images with WSGI, no files involved Tom 2009-06-16T12:06:56Z 2009-07-30T21:26:25Z <p>Hello there fellow SOers,</p> <p>I would like to send dynamically created images to my users, such as charts, graphs etc. These images are "throw-away" images, they will be only sent to one user and then destroyed, hence the "no files involved".</p> <p>I would like to send the image directly to the user, without saving it on the file system first. With PHP this could be achieved by linking an image in your HTML files to a PHP script such as:</p> <p>edit: SO swallowed my image tag:</p> <pre><code>&lt;img src="someScript.php?param1=xyz"&gt; </code></pre> <p>The script then sent the correct headers (filetype=>jpeg etc) to the browser and directly wrote the image back to the client, without temporarily saving it to the file system.</p> <p>How could I do something like this with a WSGI application. Currently I am using Python's internal SimpleWSGI Server. I am aware that this server was mainly meant for demonstration purposes and not for actual use, as it lacks multi threading capabilities, so please don't point this out to me, I am aware of that, and for now it fulfills my requirements :)</p> <p>Is it really as simple as putting the URL into the image tags and handling the request with WSGI, or is there a better practise?</p> <p>Has anyone had any experience with this and could give me a few pointers (no 32Bit ones please)</p> <p>Thanks,</p> <p>Tom</p> http://stackoverflow.com/questions/1100311/what-is-the-ideal-growth-rate-for-a-dynamically-allocated-array/1100418#1100418 1 Answer by Tom for What is the ideal growth rate for a dynamically allocated array? Tom 2009-07-08T20:35:19Z 2009-07-08T20:35:19Z <p>I agree with Jon Skeet, even my theorycrafter friend insists that this can be proven to be O(1) when setting the factor to 2x.</p> <p>The ratio between cpu time and memory is different on each machine, and so the factor will vary just as much. If you have a machine with gigabytes of ram, and a slow CPU, copying the elements to a new array is a lot more expensive than on a fast machine, which might in turn have less memory. It's a question that can be answered in theory, for a uniform computer, which in real scenarios doesnt help you at all.</p> http://stackoverflow.com/questions/1033199/sqlalchemy-object-mappings-lost-after-commit 1 SQLAlchemy: Object Mappings lost after commit? Tom 2009-06-23T15:13:00Z 2009-07-04T20:08:18Z <p>Hey everyone,</p> <p>I got a simple problem in SQLAlchemy. I have one model in a table, lets call it Model1 here. I want to add a row in this table, and get the autoincremented key, so I can create another model with it, and use this key. This is not a flawed database design (1:1 relation etc). I simply need this key in another table, because the other table is being transferred to a remote host, and I need the matching keys so the servers will understand each other. There will be no further local reference between these 2 tables, and it's also not possible to create relations because of that.</p> <p>Consider the following code:</p> <pre><code>object1 = model.Model1(param) DBSession.add(object1) # if I do this, the line below fails with an UnboundExecutionError. # and if I dont do this, object1.id won't be set yet #transaction.commit() object2 = model.AnotherModel(object1.id) #id holds the primary, autoincremented key </code></pre> <p>I wished I wouldn't even have to commit "manually". Basically what I would like to achieve is, "Model1" is constantly growing, with increasing Model.id primary key. AnotherModel is always only a little fraction of Model1, which hasn't been processed yet. Of course I could add a flag in "Model1", a boolean field in the table to mark already processed elements, but I was hoping this would not be necessary.</p> <p>How can I get my above code working?</p> <p>Greets,</p> <p>Tom</p> http://stackoverflow.com/questions/845110/emulating-pass-by-value-behaviour-in-python/1082129#1082129 0 Answer by Tom for Emulating pass-by-value behaviour in python Tom 2009-07-04T12:30:47Z 2009-07-04T12:30:47Z <p>usually when passing data to an external API, you can assure the integrity of your data by passing it as an immutable object, for example wrap your data into a tuple. This cannot be modified, if that is what you tried to prevent by your code.</p> http://stackoverflow.com/questions/947942/advanced-python-programming-book-like-effective-c/1082117#1082117 1 Answer by Tom for Advanced python programming book like effective C++? Tom 2009-07-04T12:22:48Z 2009-07-04T12:22:48Z <p>I can really recommend you </p> <p>Core Python Programming by Wesley J. Chun</p> <p>it's simple and advanced at the same time, very pleasantly written, covers the basics as well as good practises and a great bunch of advanced topics. </p> <p>Greetings,</p> <p>Tom</p> http://stackoverflow.com/questions/1081934/need-to-access-a-single-div-in-an-html-field-loaded-into-a-variable-in-php/1081957#1081957 -1 Answer by Tom for Need to access a single div in an html field loaded into a variable in PHP Tom 2009-07-04T10:33:35Z 2009-07-04T10:33:35Z <p>Use a regular expression match.</p> http://stackoverflow.com/questions/1078383/sqlalchemy-difference-between-query-and-query-all-in-for-loops 2 Sqlalchemy - Difference between query and query.all in for loops Tom 2009-07-03T08:34:17Z 2009-07-03T17:01:02Z <p>Hello everyone, </p> <p>I would like to ask whats the difference between</p> <pre><code>for row in session.Query(Model1): pass </code></pre> <p>and</p> <pre><code>for row in session.Query(Model1).all(): pass </code></pre> <p>is the first somehow an iterator bombarding your DB with single queries and the latter "eager" queries the whole thing as a list (like range(x) vs xrange(x)) ?</p> http://stackoverflow.com/questions/1078385/what-is-the-difference-between-i-and-i/1078405#1078405 0 Answer by Tom for What is the difference between i++ and ++i? Tom 2009-07-03T08:38:44Z 2009-07-03T08:38:44Z <p>to make it a bit clearer:</p> <pre><code>i = 0 print i++ // prints 0 and increases i AFTERWARDS print i // prints "1" i = 0 print ++i // increases i FIRST, and then prints it ( "1" ) print i // prints "1" </code></pre> <p>As you can see the difference is WHEN the value of the variable is updated, before or after its read and used in the current statement</p> http://stackoverflow.com/questions/1043528/best-practise-for-transferring-a-mysql-table-to-another-server 2 Best Practise for transferring a MySQL table to another server? Tom 2009-06-25T11:59:01Z 2009-06-25T12:46:08Z <p>Hello dear fellow SOers,</p> <p>I have a system sitting on a "Master Server", that is periodically transferring quite a few chunks of information from a MySQL DB to another server in the web.</p> <p>Both servers have a MySQL Server and an Apache running. I would like an easy-to-use solution for this.</p> <p>Currently I'm looking into:</p> <ul> <li>XMLRPC</li> <li>RestFul Services</li> <li>a simple POST to a processing script</li> <li>socket transfers</li> </ul> <p>The app on my master is a TurboGears app, so I would prefer "pythonic" aka less ugly solutions. Copying a dumped table to another server via FTP / SCP or something like that might be quick, but in my eyes it is also very (quick and) dirty, and I'd love to have a nicer solution.</p> <p>Can anyone describe shortly how you would do this the "best-practise" way?</p> <p>This doesn't necessarily have to involve Databases. Dumping the table on Server1 and transferring the raw data in a structured way so server2 can process it without parsing too much is just as good. One requirement though: As soon as the data arrives on server2, I want it to be processed, so there has to be a notification of some sort when the transfer is done. Of course I could just write my whole own server sitting on a socket on the second machine and accepting the file with own code and processing it and so forth, but this is just a very very small piece of a very big system, so I dont want to spend half a day implementing this.</p> <p>Thanks,</p> <p>Tom</p> http://stackoverflow.com/questions/1033199/sqlalchemy-object-mappings-lost-after-commit/1038076#1038076 0 Answer by Tom for SQLAlchemy: Object Mappings lost after commit? Tom 2009-06-24T12:33:03Z 2009-06-24T12:33:03Z <p><a href="http://stackoverflow.com/questions/620610/sqlalchemy-obtain-primary-key-with-autoincrement-before-commit">http://stackoverflow.com/questions/620610/sqlalchemy-obtain-primary-key-with-autoincrement-before-commit</a></p> <p>This represented my original problem, that I need an autoincremented primary key before the actual commit.</p> <p>I must also say, I am using turbogears, which implicitly commits at the end of your controller method, and forbids committing directly.</p> <p>you can import transactions and then do transactions.commit() but this messes up my object bindings, as stated above.</p> <p>Can anyone tell me please what the difference between flush and commit is?</p> http://stackoverflow.com/questions/938426/bad-practice-to-run-code-in-constructor-thats-likely-to-fail/938720#938720 0 Answer by Tom for Bad Practice to run code in constructor thats likely to fail? Tom 2009-06-02T09:46:49Z 2009-06-02T09:46:49Z <p>seems Neil had a good point: my friend just pointed me to this:</p> <p><a href="http://en.wikipedia.org/wiki/Resource_Acquisition_Is_Initialization" rel="nofollow">http://en.wikipedia.org/wiki/Resource_Acquisition_Is_Initialization</a></p> <p>which is basically what Neil said...</p> http://stackoverflow.com/questions/101268/hidden-features-of-python/938602#938602 6 Answer by Tom for Hidden features of Python Tom 2009-06-02T09:12:21Z 2009-06-02T09:12:21Z <p>i personally love the <strong>3 different quotes</strong></p> <pre><code>str = "im a string 'but still i can use quotes' inside myself!" str = """ for some messy multi line strings such as &lt;html&gt; &lt;head&gt; ... &lt;/head&gt;""" </code></pre> <p>also cool: not having to escape regexes, avoiding horrible backslash salad by using <strong>raw strings</strong>:</p> <pre><code>str2 = r"\n" print str2 &gt;&gt; \n </code></pre> <p>and my fav:</p> <p>getting values from a dict, without having to worry if the key exists, and it even sets the key for you! (i love you python guys!)</p> <p><strong>the 3 times happyness dict package:</strong></p> <pre><code> a = {} print a.setdefault("mykey",20) # prints value of a['mykey'] if key exists # prints 20, if key doesnt exist # and even adds 20 to the dict in that case # this has made so many parts of my code so much nicer! </code></pre> http://stackoverflow.com/questions/938429/scope-of-python-lambda-functions-and-their-parameters/938522#938522 0 Answer by Tom for Scope of python lambda functions and their parameters Tom 2009-06-02T08:37:56Z 2009-06-02T08:37:56Z <p>there are actually no variables in the classic sense in Python, just names that have been bound by references to the applicable object. Even functions are some sort of object in Python, and lambdas do not make an exception to the rule :)</p> http://stackoverflow.com/questions/1431801/joining-with-subqueries-counting-and-grouping/1436666#1436666 Comment by Tom on Joining with subqueries, counting and grouping. Tom 2009-09-17T22:08:23Z 2009-09-17T22:08:23Z no prob, if this had worked, your answer would have been my first choice, its more compact and elegant. http://stackoverflow.com/questions/1431801/joining-with-subqueries-counting-and-grouping/1431830#1431830 Comment by Tom on Joining with subqueries, counting and grouping. Tom 2009-09-16T12:18:28Z 2009-09-16T12:18:28Z I simply get a &quot;#1064 - You have an error in your SQL syntax;&quot;, tried until now: -1 wheel_id, -1 AS wheel_id, (-1) as wheel_id, -1:wheel_id. all those failed, the only ones that worked were wheel_id = -1 (but have wrong results) or simply -1 without wheel_id at all http://stackoverflow.com/questions/1431801/joining-with-subqueries-counting-and-grouping/1431830#1431830 Comment by Tom on Joining with subqueries, counting and grouping. Tom 2009-09-16T10:23:40Z 2009-09-16T10:23:40Z SELECT car_id, -1 , screw_state, count(screws) works for me http://stackoverflow.com/questions/1431801/joining-with-subqueries-counting-and-grouping/1431830#1431830 Comment by Tom on Joining with subqueries, counting and grouping. Tom 2009-09-16T09:37:10Z 2009-09-16T09:37:10Z Tested it now, and sadly my MySQL server doesnt like that &quot;-1 wheel_id&quot; syntax. I tried writing wheel_id = -1, it seems to work, apart from the fact that in the output, wheel_id comes out as 0 for the total counts, instead of -1, but the rest seems to work. http://stackoverflow.com/questions/1367453/reading-a-website-with-asyncore/1367499#1367499 Comment by Tom on Reading a website with asyncore Tom 2009-09-02T13:09:33Z 2009-09-02T13:09:33Z Sorry, as I said, I want asynchronous sockets, not threads. http://stackoverflow.com/questions/1355803/why-is-the-c-syntax-so-complicated Comment by Tom on Why is the C++ syntax so complicated? Tom 2009-08-31T23:16:07Z 2009-08-31T23:16:07Z Thanks god you havent seen the Java Hello World yet:P http://stackoverflow.com/questions/1334171/how-can-i-mass-assign-sa-orm-object-attributes/1335148#1335148 Comment by Tom on How can I mass-assign SA ORM object attributes? Tom 2009-08-27T10:58:35Z 2009-08-27T10:58:35Z I just tested it out, it does not work if I just cast kw['arg1'] = int(kw['arg1']) and then assign it via setattr(....). Before you posted your answer that solved all my problems, I changed it my code frustratedly to copy paste code, (added an &quot;MyClass.update(**kw) method) and in this method i simply wrote self.my_relation_attr = kw['my_relation_attr'] which is still the same old unicode string. And that worked, strangely. It obviously took the u&quot;4&quot; and turned it into 5, and set the my_relation_attr to the matching mapped object with ID = 5 http://stackoverflow.com/questions/101268/hidden-features-of-python/122577#122577 Comment by Tom on Hidden features of Python Tom 2009-08-27T10:52:07Z 2009-08-27T10:52:07Z actually this is discouraged, you should use the &quot;new&quot; s = t if t else &quot;default value&quot; http://stackoverflow.com/questions/1334171/how-can-i-mass-assign-sa-orm-object-attributes/1335148#1335148 Comment by Tom on How can I mass-assign SA ORM object attributes? Tom 2009-08-26T15:40:57Z 2009-08-26T15:40:57Z The amazing stuff I just found out is also, that you can indeed assign an int to a relation attribute, i just tested it myself. myobject.b = 1 would work, if there is an object b with id = 1. Seems my validators screwed up, as the id obtained from the relation wasnt properly cast into int, but remained as unicode. Seems SA does like ints, but not unicodes assigned to relation properties http://stackoverflow.com/questions/1334171/how-can-i-mass-assign-sa-orm-object-attributes/1335148#1335148 Comment by Tom on How can I mass-assign SA ORM object attributes? Tom 2009-08-26T15:36:25Z 2009-08-26T15:36:25Z i'll be damned. that was the solution. my setattr stuff works fine, when I convert kw['attr1'] = Session.query(MyClass).get(kw['attr1']) http://stackoverflow.com/questions/1334171/how-can-i-mass-assign-sa-orm-object-attributes/1334201#1334201 Comment by Tom on How can I mass-assign SA ORM object attributes? Tom 2009-08-26T12:14:39Z 2009-08-26T12:14:39Z my bad, but in my sources I had the .items() The problem is that attributes in SA arent really normal attributes, they are &quot;IntrumentedAttributes&quot;. http://stackoverflow.com/questions/1334171/how-can-i-mass-assign-sa-orm-object-attributes/1334180#1334180 Comment by Tom on How can I mass-assign SA ORM object attributes? Tom 2009-08-26T12:07:13Z 2009-08-26T12:07:13Z Hm sadly this doesnt work for SQLAlchemy. The <b>dict</b> gets properly updated but SA doesnt seem to flag the object as &quot;dirty&quot; and persist it to the DB http://stackoverflow.com/questions/1327848/having-instance-like-behaviour-in-databases/1328003#1328003 Comment by Tom on Having instance-like behaviour in databases Tom 2009-08-25T19:40:29Z 2009-08-25T19:40:29Z Not possible. First thing is, I have around 300 different attributes, and they have to be dynamically extensible, without hacking the database layout. everything should be done by CRUD over the existing tables. Second thing is, that not only cars, but also houses, airplanes etc have to be modelled. I want to take a totally arbitrary object, invent attributes and attribute ranges for it, and then specify instances of this object, with specific values for the attributes. http://stackoverflow.com/questions/1327848/having-instance-like-behaviour-in-databases/1327984#1327984 Comment by Tom on Having instance-like behaviour in databases Tom 2009-08-25T19:37:28Z 2009-08-25T19:37:28Z upvote for being funny ;) What worries me is, that my design feels simply wrong. When I write my inserts... looping through all &quot;template&quot; attributes, and copying them over to my intersection table, specializing them with a value. I feel like I am simulating something here, that should be done in a better way. http://stackoverflow.com/questions/1279613/what-is-an-orm-and-where-can-i-learn-more-about-it/1279678#1279678 Comment by Tom on What is an ORM and where can I learn more about it? Tom 2009-08-15T00:42:03Z 2009-08-15T00:42:03Z youre funny dude :P