active questions tagged python - Stack Overflow most recent 30 from stackoverflow.com 2010-02-10T00:24:19Z http://stackoverflow.com/feeds/tag/python http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2232579/ive-got-python-built-using-vs2008-how-do-i-install-it 0 I've got Python built using VS2008, how do I install it? Mark0978 2010-02-09T21:14:36Z 2010-02-10T00:19:12Z <p>I'm working with boost::python and wanted to build the whole thing to make sure I can pull it off. However, I don't see any install script or way to build the MSI so I can install it.</p> <p>Anyone know where the directions are? Or the projects I could use to make an MSI file?</p> <p>Doing this on linux seems trivial:</p> <p>make install</p> <p>How do I do this under windows</p> http://stackoverflow.com/questions/2233388/how-to-delete-list-elements-while-cycling-the-list-itself-without-duplicate-it 1 How to delete list elements while cycling the list itself without duplicate it yuri 2010-02-09T23:43:25Z 2010-02-10T00:18:25Z <p>I lost a little bit of time in this Python for statement:</p> <pre><code>class MyListContainer: def __init__(self): self.list = [] def purge(self): for object in self.list: if (object.my_cond()): self.list.remove(object) return self.list container = MyListContainer() # now suppose both obj.my_cond() return True obj1 = MyCustomObject(par) obj2 = MyCustomObject(other_par) container.list = [obj1, obj2] # returning not an empty list but [obj2] container.purge() </code></pre> <p>It doesn't work as I expected because when the cycle in "purge" delete the first object in list the second one is shifted to the beginning of the list and the cycle is ended.</p> <p>I solved duplicating self.list before the for cycle:</p> <pre><code>... local_list = self.list[:] for object in local_list: ... </code></pre> <p>I suppose that the for statement stop working because I'm changing the length of the original list. Can someone clarify this point ? </p> <p>And is there a more "elegant" way to solve this problem ? If I have more than few elements inside the list, duplicating it every time does not seem a good idea.</p> <p>Maybe the filter() function is the right one but i whish to have some other approach if any. </p> <p>I'm a newbie.</p> <hr> <p>To summarize your useful answers:</p> <ul> <li>Never edit a list you are looping</li> <li>Duplicate the list or use list comprehensions</li> <li>Duplicating a list could not waste your memory or in this case who's mind about it</li> </ul> http://stackoverflow.com/questions/2233355/python-letter-frequency-count-and-translation 4 Python - letter frequency count and translation. Hamish Grubijan 2010-02-09T23:37:45Z 2010-02-10T00:17:11Z <p>Hi, I am using Python 3.1, but I can downgrade if needed.</p> <p>I have an ASCII file containing a short story written in one of the languages the alphabet of which can be represented with upper and or lower ASCII. I wish to:</p> <p>1) Detect an encoding to the best of my abilities, get some sort of confidence metric (would vary depending on the length of the file, right?)</p> <p>2) Automatically translate the whole thing using some free online service or a library.</p> <p>Additional question: What if the text is written in a language where it takes 2 or more bytes to represent one letter and the byte order mark is not there to help me?</p> <p>Finally, how do I deal with punctuation and misc characters such as space? It will occur more frequently than some letters, right? How about the fact that punctuation and characters can be sometimes mixed - there might be two representations of a comma, two representations for what looks like an "a", etc.?</p> <p>Yes, I have read the article by Joel Spolsky on Unicode. Please help me with at least some of these items.</p> <p>Thank you!</p> <p>P.S. This is not a homework, but it is for self-educational purposes. I prefer using a letter frequency library that is open-source and readable as opposed to the one that is closed, efficient, but gets the job done well.</p> http://stackoverflow.com/questions/2231715/open-source-django-projects 3 Open source Django projects tkalve 2010-02-09T19:07:19Z 2010-02-10T00:05:26Z <p>Are there any large django powered sites who has made their source available? I would love to see how a large Django project is built. :)</p> http://stackoverflow.com/questions/2233422/compiling-mysqldb-for-jython-2-5-on-solaris 0 Compiling Mysqldb for jython 2.5 on Solaris PlanetUnknown 2010-02-09T23:51:29Z 2010-02-09T23:55:40Z <p>I have used python2.6 + MySQL on Windows and there are binaries available.</p> <p>I wanted to get the whole thing working on <code>Solaris</code></p> <p>Hence got the Mysql-Python package from <a href="http://sourceforge.net/projects/mysql-python/" rel="nofollow">here</a></p> <p>I had to get the setuptools installed which is done. Exploded the <strong>MySQL-python-1.2.3c1</strong></p> <p>When I this <code>/jython2.5.1/jython setup.py build</code></p> <p>Error -</p> <pre><code>`File "/opt/somepath/MySQL-python-1.2.3c1/setup_windows.py", line 2, in get_config import os, sys, _winreg ImportError: No module named _winreg` </code></pre> <p>I don't understand why it would require windows.py. Either I'm using the incorrect code or I'm not passing the correct flags. Or I'm going on a tangent somewhere else 8-)</p> <p>Sorry, this is the first time I'm compiling something like a driver on Solaris. Any suggestions are appreciated.</p> <p><code>Jython : 2.5.1<br> Solaris : 5.9<br> MySQL - 5.1.42</code></p> http://stackoverflow.com/questions/2202461/yield-multiple-objects-at-a-time-from-an-iterable-object 1 Yield multiple objects at a time from an iterable object? Matt Joiner 2010-02-04T19:12:19Z 2010-02-09T23:38:33Z <p>How can I yield multiple items at a time from an iterable object?</p> <p>For example, with a sequence of arbitrary length, how can I iterate through the items in the sequence, in groups of X consecutive items per iteration?</p> <p>(Question inspired by <a href="http://stackoverflow.com/questions/2197974/convert-little-endian-hex-string-to-ip-address-in-python/2198027#2198027">an answer</a> which used this technique.)</p> http://stackoverflow.com/questions/2232740/python-newbie-having-a-problem-using-classes 3 Python newbie having a problem using classes user269857 2010-02-09T21:43:23Z 2010-02-09T23:36:57Z <p>Im just beginning to mess around a bit with classes; however, I am running across a problem.</p> <pre><code>class MyClass(object): def f(self): return 'hello world' print MyClass.f </code></pre> <p>The previous script is returning <code>&lt;unbound method MyClass.f&gt;</code> instead of the intended value. How do I fix this?</p> http://stackoverflow.com/questions/2232542/python-import-mysqldb-apache-internal-server-error 0 Python import MySQLdb, Apache Internal Server Error bernie 2010-02-09T21:09:02Z 2010-02-09T23:30:53Z <p>I'm having a similar problem to that described in "<a href="http://stackoverflow.com/questions/621874/cgi-problem-with-web-server">.cgi problem with web server</a>", although I reviewed and tested the previously suggested solutions without success.</p> <p>I'm running the same program on Mac OS X 10.5.8, Apache 2.2.13, using Python 2.6.4. I can successfully run the code in the python shell and the terminal command-line, but I get <code>&lt;type 'exceptions.ImportError'&gt;: No module named MySQLdb</code> when I try to run it at "http://localhost/cgi-bin/test.cgi". It successfully runs if I comment out <code>import MySQLdb</code>.</p> <pre><code>#!/usr/bin/env python import cgitb cgitb.enable() import MySQLdb print "Content-Type: text/html" print print "&lt;html&gt;&lt;head&gt;&lt;title&gt;Books&lt;/title&gt;&lt;/head&gt;" print "&lt;body&gt;" print "&lt;h1&gt;Books&lt;/h1&gt;" print "&lt;ul&gt;" connection = MySQLdb.connect(user='me', passwd='letmein', db='my_db') cursor = connection.cursor() cursor.execute("SELECT name FROM books ORDER BY pub_date DESC LIMIT 10") for row in cursor.fetchall(): print "&lt;li&gt;%s&lt;/li&gt;" % row[0] print "&lt;/ul&gt;" print "&lt;/body&gt;&lt;/html&gt;" connection.close() </code></pre> <p><strong>[edit]</strong> Based on the first answer:</p> <p>If I modify <code>test.cgi</code> as specified and run it from the terminal command-line, the directory of <code>MySQLdb</code> is shown in <code>sys.path</code>. However, when I run it via the web server, I get the same error. If I comment out <code>import MySQLdb</code> in <code>test.cgi</code> with the new for-loop, the page fails to open.</p> <p>How do I set Apache's PYTHONPATH? At the python shell, I tried:</p> <pre><code>import MySQLdb import os print os.path.dirname(MySQLdb.__file__) </code></pre> <p>Then, based on other posts, I tried to add the resultant path in the original <code>test.cgi</code>:</p> <pre><code>import sys sys.path.append('/Library/Frameworks/Python.framework/Versions/6.0.0/lib/python2.6/site-packages/MySQL_python-1.2.3c1-py2.6-macosx-10.5-i386.egg/') </code></pre> <p>but this produced the same error.</p> http://stackoverflow.com/questions/2233006/where-do-stdout-and-stderr-go-when-in-curses-mode 2 Where do stdout and stderr go when in curses mode? Matt Joiner 2010-02-09T22:33:12Z 2010-02-09T23:27:46Z <p>Where do stdout and stderr go when curses is active?</p> <pre><code>import curses, sys def test_streams(): print "stdout" print &gt;&gt;sys.stderr, "stderr" def curses_mode(stdscr): test_streams() test_streams() curses.wrapper(curses_mode) </code></pre> <p>Actual output is</p> <pre><code>stdout stderr </code></pre> <h2>Update0</h2> <p>Expected output is</p> <pre><code>stdout stderr stdout stderr </code></pre> <p>entering, and then exiting curses mode with no change to the final text shown in the terminal.</p> http://stackoverflow.com/questions/2228966/python-django-simple-site 3 Python Django simple site yart 2010-02-09T12:30:13Z 2010-02-09T23:27:11Z <p>Hi,</p> <p>I'm trying to create site using Django framework. I looked on tutorial on Django project site but contains much information which I don't need. I have python scripts which provides output and I need to have this output on the web. My question is how simply manage Django to have link which start the script and provides its output on the web or perhaps you provide the link where I can read about this?</p> <p>Thank you.</p> http://stackoverflow.com/questions/2233204/how-does-zipitersn-work-in-python 3 How does zip(*[iter(s)]*n) work in Python? MTsoul 2010-02-09T23:07:21Z 2010-02-09T23:23:28Z <p>I saw this in the Python documentation for zip(). Apparently, if s is <code>[1,2,3,4,5,6,7,8,9]</code> and n is <code>3</code>, <code>zip(*[iter(s)]*n)</code> returns <code>[(1,2,3),(4,5,6),(7,8,9)]</code>. How exactly does this work? I'm not sure how the operator precedence works here. What would this look like if it was written with more verbose code?</p> <p>Thanks.</p> <p>(This just looks so cool I gotta know.)</p> http://stackoverflow.com/questions/2231663/slicing-a-list-into-a-list-of-sub-lists 0 Slicing a list into a list of sub-lists... James Austin 2010-02-09T19:01:13Z 2010-02-09T22:51:33Z <p>What is the simplest and reasonably efficient way to slice a list into a list of the sliced sub-list sections for arbitrary length sub lists.</p> <p>For example, if our source list is:</p> <pre><code>input = [1, 2, 3, 4, 5, 6, 7, 8, 9, ... ] </code></pre> <p>And our sub list length is 3 then we seek:</p> <pre><code>output = [ [1, 2, 3], [4, 5, 6], [7, 8, 9], ... ] </code></pre> <p>Likewise if our sub list length is 4 then we seek:</p> <pre><code>output = [ [1, 2, 3, 4], [5, 6, 7, 8], ... ] </code></pre> http://stackoverflow.com/questions/2200685/netbeans-not-allowing-python-2-6-as-default-platform-forcing-jython2-5 2 Netbeans not allowing Python 2.6 as default platform (forcing Jython2.5) Duncan Tait 2010-02-04T15:09:03Z 2010-02-09T22:31:05Z <p>I am trying to get Netbeans python to run with the default python platform set to Python 2.6.1 (my system python), so in Netbeans I do the following:</p> <p>Tools -> Python Platform<br> Set Python 2.6.1 to 'default'</p> <p>However, it seems impossible to make this stick. Whenever I restart Netbeans it's back to Jython 2.5 again.</p> <p>Moreover, I can obviously autodetect and find Python 2.6.1, but whenever I make it "Default", Netbeans still runs with Jython 2.5 in that very session. (I know this because when I import sys and do a sys.path it only has Jython library dirs). And when I remove Jython I get the error: </p> <blockquote> <p>"Selected project has broken python platform : default => bind to an existing python platform in project's properties".</p> </blockquote> <p>I have tried this is 6.5 and 6.7. And I still get the same behavior. Furthermore, I know my system python works because I can use the python interpreter.</p> http://stackoverflow.com/questions/2215683/how-do-i-use-gstreamer-to-make-an-audio-clip-from-a-longer-source 1 How do I use gstreamer to make an audio clip from a longer source? cppb 2010-02-07T02:33:01Z 2010-02-09T22:23:32Z <p>I would like to use gstreamer to save an arbitrary clip from one audio file to a new file. For example, a segment from 1 minute to 2 minutes in the original. How do I do it?</p> http://stackoverflow.com/questions/2232852/how-to-include-in-code-an-unique-id-related-to-a-mercurial-commit 1 How to include in code an unique ID related to a mercurial commit? Andrea Ambu 2010-02-09T22:02:01Z 2010-02-09T22:13:13Z <p>I'd like to do the same thing that they're doing here in stackoverflow.</p> <pre><code>&lt;link rel="stylesheet" href="http://sstatic.net/so/all.css?v=6274"&gt; &lt;script type="text/javascript" src="http://sstatic.net/so/js/master.js?v=6180"&gt;&lt;/script&gt; &lt;script src="http://sstatic.net/so/js/question.js?v=6274" type="text/javascript"&gt;&lt;/script&gt; </code></pre> <p>Do you see those <code>?v=...</code> ?<br> I'd like, at each commit, to change some variable in my code in order to make browsers refresh their cache when needed. </p> <p>It may be even just one for each commit (it doesn't need to monitor each file in an independent way) but I'd like it to be automatically generated when I commit.</p> <p>The difference is that I'm using mercurial and not subversion. Any hint?</p> http://stackoverflow.com/questions/2232742/does-python-pil-resize-maintain-the-aspect-ratio 0 Does Python PIL resize maintain the aspect ratio? bfrederi 2010-02-09T21:43:27Z 2010-02-09T21:59:07Z <p><strong>Edit: Does PIL resize to the exact dimensions I give it no matter what? Or will it try to keep the aspect ratio if I give it something like the Image.ANTIALIAS argument?</strong></p> http://stackoverflow.com/questions/2232362/correct-way-to-emulate-single-precision-floating-point-in-python 2 Correct way to emulate single precision floating point in python? Ryan 2010-02-09T20:37:10Z 2010-02-09T21:56:59Z <p>What's the best way to emulate single-precision floating point in python? (Or other floating point formats for that matter?) Just use ctypes?</p> http://stackoverflow.com/questions/2217109/using-a-debugger-and-curses-at-the-same-time 0 Using a debugger and curses at the same time? Matt Joiner 2010-02-07T14:51:48Z 2010-02-09T21:54:38Z <p>I'm calling <code>python -m pdb myapp.py</code>, when an exception fires, and I'd normally be thrown back to the pdb interpreter to investigate the problem. However this exception is being thrown after I've called through <code>curses.wrapper()</code> and entered curses mode, rendering the pdb interpreter useless. How can I work around this?</p> http://stackoverflow.com/questions/2232420/how-to-mount-a-network-directory-using-python 2 How to mount a network directory using python? llaskin 2010-02-09T20:47:49Z 2010-02-09T21:34:15Z <p>I need to mount a directory "dir" on a network machine "data" using python on a linux machine</p> <p>I know that I can send the command via command line:</p> <p>mkdir ~/mnt/data_dir mount -t data:/dir/ /mnt/data_dir</p> <p>but how would I send that command from a python script?</p> http://stackoverflow.com/questions/739241/python-date-ordinal-output 3 Python: Date Ordinal Output? Mez 2009-04-11T00:22:31Z 2010-02-09T21:20:51Z <p>I'm wondering if there is a quick and easy way to output ordinals given a number in python.</p> <p>For example, given the number 1, I'd like to output "1st", the number 2, "2nd", et cetera, et cetera.</p> <p>This is for working with dates in a breadcrumb trail</p> <pre><code>Home &gt; Venues &gt; Bar Academy &gt; 2009 &gt; April &gt; 01 </code></pre> <p>is what is currently shown</p> <p>I'd like to have something along the lines of</p> <pre><code>Home &gt; Venues &gt; Bar Academy &gt; 2009 &gt; April &gt; 1st </code></pre> http://stackoverflow.com/questions/2231287/updating-python-variable-from-c 0 Updating python variable from c jeffaudio 2010-02-09T18:04:13Z 2010-02-09T21:02:22Z <p>I am having an intermittent error causing my Python module to crash, and I'm assuming it's because of a memory error occurring by not getting the refcounts correct in the c code. I have a bit of code that gets a response at a random time from a remote location. Based on the data received, it needs to update a data variable which I should have access to in Python. What's the best way to accomplish this? The following code runs most of the time, and it works correctly when it does, but when it doesn't it crashes Python (bringing up the visual studio debug box). Thanks.</p> <pre><code>if (event == kResponseEvent) { list = PyList_New(0); for (i = 0; i &lt; event-&gt;count; i++) { PyList_Append(list, Py_BuildValue("{s:i, s:s}", "id", event-&gt;id, "name", event-&gt;name)); } PyModule_AddObject(module, "names", list); } </code></pre> http://stackoverflow.com/questions/2231227/python-subprocess-popen-with-a-modified-environment 3 Python subprocess/Popen with a modified environment Mar_Garina 2010-02-09T17:55:16Z 2010-02-09T20:57:36Z <p>I believe that running an external command with a slightly modified environment is a very common case. That's how I tend to do it:</p> <pre><code>import subprocess, os my_env = os.environ my_env["PATH"] = "/usr/sbin:/sbin:" + my_env["PATH"] subprocess.Popen(my_command, env=my_env) </code></pre> <p>I've got a gut feeling that there's a better way; does it look alright?</p> <p>10x</p> http://stackoverflow.com/questions/2095637/python-arguments-for-using-itertools-to-split-a-list-into-groups 3 Python: arguments for using itertools to split a list into groups telliott99 2010-01-19T17:47:23Z 2010-02-09T20:43:28Z <p>This is a question about the relative merits of fast code that uses the standard library but is obscure (at least to me) versus a hand-rolled alternative. In this <a href="http://stackoverflow.com/questions/1825907/python-how-do-i-split-a-list-into-groups-closed">thread</a> (and others that it duplicates), it seems the "Pythonic" way to split a list into groups is to use itertools, as in the first function in the code example below (modified slightly from <a href="http://stackoverflow.com/users/6899/">ΤΖΩΤΖΙΟΥ</a>).</p> <p>The reason I prefer the second function is that I can understand how it works, and if I don't need padding (turning a DNA sequence into codons, say), I can reproduce it from memory in an instant.</p> <p>The speed is better with itertools. Particularly if we don't want a list back, or we want to pad the last entry, itertools is faster.</p> <p>What other arguments are there in favor of the standard library solution?</p> <pre><code>from itertools import izip_longest def groupby_itertools(iterable, n=3, padvalue='x'): "groupby_itertools('abcde', 3, 'x') --&gt; ('a','b','c'), ('d','e','x')" return izip_longest(*[iter(iterable)]*n, fillvalue=padvalue) def groupby_my(L, n=3, pad=None): "groupby_my(list('abcde'), n=3, pad='x') --&gt; [['a','b','c'], ['d','e','x']]" R = xrange(0,len(L),n) rL = [L[i:i+n] for i in R] if pad: last = rL[-1] x = n - len(last) if isinstance(last,list): rL[-1].extend([pad] * x) elif isinstance(last,str): rL[-1] += pad * x return rL </code></pre> <p>timing:</p> <pre><code>$ python -mtimeit -s 'from groups import groupby_my, groupby_itertools; L = list("abcdefghijk")' 'groupby_my(L)' 100000 loops, best of 3: 2.39 usec per loop $ python -mtimeit -s 'from groups import groupby_my, groupby_itertools; L = list("abcdefghijk")' 'groupby_my(L[:-1],pad="x")' 100000 loops, best of 3: 4.67 usec per loop $ python -mtimeit -s 'from groups import groupby_my, groupby_itertools; L = list("abcdefghijk")' 'groupby_itertools(L)' 1000000 loops, best of 3: 1.46 usec per loop $ python -mtimeit -s 'from groups import groupby_my, groupby_itertools; L = list("abcdefghijk")' 'list(groupby_itertools(L))' 100000 loops, best of 3: 3.99 usec per loop </code></pre> <p>Edit: I would change the function names here (see Alex's answer), but there are so many I decided to post this warning instead.</p> http://stackoverflow.com/questions/2231887/check-that-a-script-is-actually-using-a-proxy-from-a-ip-list 0 check that a script is actually using a proxy from a ip list Joe 2010-02-09T19:30:30Z 2010-02-09T20:31:38Z <p>I have a list of proxy ip's that I want to use in one of my python scripts, but how do I verify that I am using one of the ip addresses from the list and not my own? I'm using mechanize, but any general explanation of how to do this would be helpful. </p> <p>This is the first time I have worked with proxies, so anything you can tell me will be be really appreciated. </p> <p>Thanks</p> http://stackoverflow.com/questions/2231842/numpy-with-python-3-0 4 Numpy with python 3.0 iceman 2010-02-09T19:25:26Z 2010-02-09T19:59:17Z <p>NumPy installer can't find python path in the registry.</p> <blockquote> <p>Cannot install Python version 2.6 required, which was not found in the registry.</p> </blockquote> <p>Is there a numpy build which can be used with python 3.0?</p> http://stackoverflow.com/questions/2231781/assign-a-value-equal-only-to-itself 1 Assign a value equal only to itself Matt Joiner 2010-02-09T19:16:56Z 2010-02-09T19:50:45Z <p>I wish to assign to a variable (a "constant"), a value that will allow that variable to only ever return <code>True</code> in <code>is</code> and <code>==</code> comparisons against itself.</p> <p>I want to avoid assigning an arbitary value such as an <code>int</code> or some other type on the off chance that the value I choose clashes with some other.</p> <p>I'm considering generating an instance of a class that uses the uniqueness of CPython's <a href="http://docs.python.org/library/functions.html#id" rel="nofollow"><code>id()</code></a> values in any comparisons the value might support.</p> <p>From <a href="http://docs.python.org/reference/datamodel.html#object.__cmp__" rel="nofollow">here</a>:</p> <pre><code>If no __cmp__(), __eq__() or __ne__() operation is defined, class instances are compared by object identity (“address”). </code></pre> <p>Would suggest that:</p> <pre><code>MY_CONSTANT = object() </code></pre> <p>Will only <em>ever</em> return true in a comparison with <code>MY_CONSTANT</code> on a CPython implementation if <code>MY_CONSTANT</code> was somehow garbage collected, and something else allocated in it's place during the comparison (I would assume this is probably never going to happen).</p> http://stackoverflow.com/questions/2231954/whats-python-complaining-about-here 0 What's python complaining about here? justkevin 2010-02-09T19:37:51Z 2010-02-09T19:40:06Z <p>I'm trying to run Adobe's sample python policy server script, linked to here: <a href="http://www.adobe.com/devnet/flashplayer/articles/socket_policy_files.html" rel="nofollow">http://www.adobe.com/devnet/flashplayer/articles/socket_policy_files.html</a></p> <p>I'm getting the following error:</p> <pre><code> # python flashpolicyd.py --file=policy.xml File "flashpolicyd.py", line 40 with file(path, 'rb') as f: ^ SyntaxError: invalid syntax </code></pre> <p>In context:</p> <pre><code>class policy_server(object): def __init__(self, port, path): self.port = port self.path = path self.policy = self.read_policy(path) self.log('Listening on port %d\n' % port) try: self.sock = socket.socket(socket.AF_INET6, socket.SOCK_STREAM) except AttributeError: # AttributeError catches Python built without IPv6 self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) except socket.error: # socket.error catches OS with IPv6 disabled self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) self.sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) self.sock.bind(('', port)) self.sock.listen(5) def read_policy(self, path): with file(path, 'rb') as f: </code></pre> <p>I know nothing about python, so this may be something very simple and obvious.</p> http://stackoverflow.com/questions/2228078/how-can-i-pass-xml-format-data-from-flex-to-python 1 how can i pass xml format data from flex to python maniohile 2010-02-09T09:45:56Z 2010-02-09T19:25:16Z <p>Hi i want to pass xml format data into python from flex.i know how to pass from flex but my question is how can i get the passed data in python and then the data should be inserted into mysql.and aslo i want to retrieve the mysql data to the python(cgi),the python should convert all the data into xml format,and pass all the data to the flex.. Thank's in advance.....</p> http://stackoverflow.com/questions/2230455/mako-thinks-my-template-has-a-pass-after-an-if-statement-even-though-the-trace 0 Mako thinks my template has a 'pass' after an if statement, even though the traceback shows there isn't one Greems 2010-02-09T16:04:43Z 2010-02-09T19:20:23Z <p>I have Mako taking a template from a preprocessor, and now thinks there is a 'pass' after my if statement.</p> <p>Here is the complete traceback</p> <pre><code>Error ! SyntaxException: (SyntaxError) invalid syntax (, line 1) (u"if ${session['anonymous']}:pass") in file '/.../site/templates/shpaml/views/index.html' at line: 3 char: 1 1 &lt;p&gt;your anonymous status is ${session['anonymous']}&lt;/p&gt; 2 3 % if ${session['anonymous']}: 4 5 &lt;a href='/login/'&gt;login&lt;/a&gt; 6 7 % else: 8 /.../site/library/mako/pyparser.py, line 37: raise exceptions.SyntaxException("(%s) %s (%s)" % (e.__class__.__name__, str(e), repr(code[0:50])), **exception_kwargs) /.../site/library/mako/ast.py, line 30: expr = pyparser.parse(code.lstrip(), "exec", **exception_kwargs) /.../site/library/mako/ast.py, line 82: super(PythonFragment, self).__init__(code, **exception_kwargs) /.../site/library/mako/parsetree.py, line 69: code = ast.PythonFragment(text, **self.exception_kwargs) /.../site/library/mako/lexer.py, line 94: node = nodecls(*args, **kwargs) /.../site/library/mako/lexer.py, line 313: self.append_node(parsetree.ControlLine, keyword, isend, self.escape_code(text)) /.../site/library/mako/lexer.py, line 152: if self.match_control_line(): /.../site/library/mako/template.py, line 257: node = lexer.parse() /.../site/library/mako/template.py, line 93: (code, module) = _compile_text(self, file(filename).read(), filename) /.../site/library/mako/lookup.py, line 127: self.__collection[uri] = Template(uri=uri, filename=posixpath.normpath(filename), lookup=self, module_filename=(self.modulename_callable is not None and self.modulename_callable(filename, uri) or None), **self.template_args) /.../site/library/mako/lookup.py, line 85: return self.__load(srcfile, uri) /.../site/library/templates/__init__.py, line 25: template = lookup_map[type].get_template(template_name) </code></pre> <p>Why would the traceback show pass but not show it in the traceback source? On top of that, it says the wrong line number. ${session['anonymous']} in line 1 returns True (if I remove the syntax error). So that doesn't have any problems.</p> http://stackoverflow.com/questions/2227117/python-mechanize-proxy-question 0 python mechanize proxy question Joe 2010-02-09T06:04:05Z 2010-02-09T19:11:11Z <p>I've got mechanize setup and working with python. I am adding support for using a proxy, but how do I check that I am actually using the proxy? </p> <p>Here is some code I am using:</p> <pre><code>ip = 'some proxy ip address' br.set_proxies({"http://": ip} ) </code></pre> <p>I started to wonder if it was working because just to do some testing I typed in:</p> <pre><code>ip = 'asdfasdf' </code></pre> <p>and it didn't throw an error. So how do I go about checking if it is really using the ip address for the proxy that I pass in or the ip address of my computer? Is there a way to return info on your ip in mechanize?</p>