active questions tagged python - Stack Overflowmost recent 30 from stackoverflow.com2009-11-09T03:49:16Zhttp://stackoverflow.com/feeds/tag/pythonhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1694237/mapreduce-python-and-networkx1MapReduce, Python and NetworkXrohanbk2009-11-07T20:05:16Z2009-11-09T03:46:53Z
<p>I have implemented an unweighted random walk function for a graph that I built in Python using NetworkX. Below is a snippet of my program that deals with the random walk. Elsewhere in my program, I have a method that creates the graph, and I have a method that simulates various custom graph testing methods that I've written. One of these graph testing methods picks two nodes at random from the graph and runs a random walk between both of them. The two things that are being calculated from this Random Walk are hitting time (the number of links that are traversed from the starting to the ending point) and the commute time (the number of traversed links from starting to ending and back to the starting point). </p>
<pre><code>def unweighted_random_walk(starting_point,ending_point, graph):
'''
starting_point: String that represents the starting point in the graph
ending_point: String that represents the ending point in the graph
graph: A NetworkX Graph object
'''
##Begin the random walk
current_point=starting_point
#current_node=graph[current_point]
current_point_neighors=graph.neighbors(current_point)
hitting_time=0
#Determine the hitting time to get to an arbitrary neighbor of the
#starting point
while current_point!=ending_point:
#pick one of the edges out of the starting_node with equal probs
possible_destination=current_point_neighbors[random.randint(0,current_point_neighors)]
current_point=possible_destination
current_point_neighbors=graph.neighbors(current_point)
hitting_time+=1
return hitting_time
</code></pre>
<p>My code for the random walk is pretty straight-forward because I'm just picking random nodes until the ending point is reached. However, this current implementation is very slow when I try running several random walks (I think I need to run a million at some point). </p>
<p>My question is: Is there any way that I can use Hadoop MapReduce to parallelize some of the operations that are going on here for this Random Walk? Is there a better way for me to do my random walk? </p>
http://stackoverflow.com/questions/1517959/python-image-uploading-with-ajaxupload0Python Image Uploading with AjaxUploadresopollution2009-10-05T02:00:14Z2009-11-09T03:39:50Z
<p>I'm trying to use AjaxUpload with Python:
<a href="http://valums.com/ajax-upload/" rel="nofollow">http://valums.com/ajax-upload/</a></p>
<p>I would like to know how to access the uploaded file with Python. On the web site, it says:</p>
<pre><code>* PHP: $_FILES['userfile']
* Rails: params[:userfile]
</code></pre>
<p>What is the Syntax for Python?</p>
<p>request.params['userfile'] doesn't seem to work.</p>
<p>Thanks in advance! Here is my current code (using PIL imported as Image)</p>
<pre><code>im = Image.open(request.params['myFile'].file)
</code></pre>
http://stackoverflow.com/questions/1691076/activate-virtualenv-via-os-system0Activate virtualenv via os.system()cpharmston2009-11-06T22:55:18Z2009-11-09T03:32:02Z
<p>Hey all,</p>
<p>I'm writing a Python-based shell script to boilerplate a Django app with virtualenv, pip, and fabric. Should be straightforward enough, but it appears that I'm not able to activate and run commands in the virtualenv through the shell script.</p>
<pre><code>os.system('virtualenv %s --no-site-packages' % project_name)
os.system('source %s/bin/activate' % project_name)
os.system('easy_install pip')
</code></pre>
<p>When running, this errors out:</p>
<pre><code>$ startproject+ -s false sample
New python executable in sample/bin/python
Installing setuptools............done.
/testing
Searching for pip
Best match: pip 0.4
Processing pip-0.4-py2.6.egg
pip 0.4 is already the active version in easy-install.pth
Installing pip script to /usr/local/bin
error: /usr/local/bin/pip: Permission denied
</code></pre>
<p>Obviously the <code>source</code> line isn't being run, but why? Is it a concurrency/threading issue, or something deeper with virtualenv?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1651527/does-python-twisted-framework-httpclient-access-proxy1Does python twisted framework HttpClient access proxy?Lex2009-10-30T18:26:25Z2009-11-09T03:19:24Z
<p>I need to access a webpage using</p>
<pre><code>twisted.web.client.getPage()
</code></pre>
<p>or a similar method to download a webpage from a known address (ie:www.google.com), the problem is: I am behind a proxy server and I couldn't find anywhere explanations on how to configure twisted or factories to use my proxy, any ideas?</p>
<p>Bear in mind I have to specify user, password, host and port.
On my linux machine I setup <code>http_proxy</code> and <code>https_proxy</code> to <code>http://user:pwd@ip:port</code></p>
<p>Thankyou in advance.</p>
http://stackoverflow.com/questions/1697009/how-can-i-reduce-memory-usage-of-a-twisted-server1How can I reduce memory usage of a Twisted server?Victor Lin2009-11-08T16:13:08Z2009-11-09T02:38:36Z
<p>I wrote an audio broadcasting server with Python/Twisted. It works fine, but the usage of memory grows too fast! I think that's because some user's network might not be good enough to download the audio in time. </p>
<p>My audio server broadcast audio data to different listener's client, if some of them can't download the audio in time, that means, my server keep the audio data until listeners received. And what's more, my audio server is a broadcasting server, it receive audio data, and send them to different clients, I though Twisted copy those data in different buffer, even they are same audio piece.</p>
<p>I want to reduce the usage of memory usage, so I need to know when is the audio received by the client, so that I can decide when to discard some slow clients. But I have no idea how to achieve that with Twisted. Do anyone have idea?</p>
<p>And what else can I do to reduce usage of memory usage?</p>
<p>Thanks.
Victor Lin.</p>
http://stackoverflow.com/questions/1698439/redirect-embedded-python-io-to-a-console-created-with-allocconsole0Redirect Embedded Python IO to a console created with AllocConsoleToji2009-11-09T00:07:44Z2009-11-09T02:38:31Z
<p>I am having some trouble getting Python IO redirected to a console that I've allocated for my Win32 app. Is there a Python-specific stream that I need to redirect?</p>
<p>Here's more-or-less what I'm doing now (error checking removed, etc.):</p>
<pre><code>int __stdcall WinMain(/*Usual stuff here*/) {
// Create the console
AllocConsole();
SetConsoleTitle(L"My Console");
// Redirect Standard IO Streams to the new console
freopen("CONOUT$","w",stdout);
freopen("CONOUT$","w",stderr);
freopen("CONIN$","r",stdin);
// Test the console:
printf("This Works.\r\n");
cout << "So Does this" << endl;
// Python Stuff (This is where it fails)
Py_Initialize();
PyRun_SimpleString("print('I don't work.')\n");
Py_Finalize();
}
</code></pre>
<p>If I run the same thing but as a console app (Visual Studio 05, BTW) and remove the AllocConsole call everything works. Anyone know what I'm missing?</p>
<p>EDIT: Just for clarification, I am looking for a way to do it from the C API.</p>
http://stackoverflow.com/questions/1697866/how-to-create-django-formwizard-for-one-model0How to create Django FormWizard for one Model?giolekva2009-11-08T20:41:18Z2009-11-09T02:37:21Z
<p>I have Django Model with many fields which user must fill. If I'll create one ModelForm for this Model it will be big enough for one form. I want to split it using FormWizard. I think it's possible first to create forms dynamically and then create FormWizard using them.</p>
<p>Is this good approach or is there any better way?</p>
http://stackoverflow.com/questions/1665742/cherrypy-or-other-python-framework-with-fastcgi-on-shared-host2CherryPy (or other Python framework) with FastCGI on shared hostAdam Shaw2009-11-03T07:22:03Z2009-11-09T02:25:21Z
<p>I am trying to configure the Python mini-framework CherryPy with FastCGI (actually fcgid) on Apache. I am on a shared host, so I don't have access to httpd.conf, just htaccess. I have followed these tutorials to no avail:</p>
<ul>
<li><a href="http://tools.cherrypy.org/wiki/FastCGIWSGI" rel="nofollow">http://tools.cherrypy.org/wiki/FastCGIWSGI</a></li>
<li><a href="http://tools.cherrypy.org/wiki/BluehostDeployment" rel="nofollow">http://tools.cherrypy.org/wiki/BluehostDeployment</a></li>
</ul>
<p>I keep getting 500 errors w/ the Apache logs saying "Premature end of script headers". I have tried everything (permissions/shebangs/full-paths/deamonized/not-daimonized). I know Apache is correctly executing my .fcgi, because I am able to print to the error log from python, but that's it. Has anyone out there successfully installed CherryPy or any other framework on a shared host before? Your help would be greatly appreciated. Thanks.</p>
http://stackoverflow.com/questions/1698734/python-data-structure-recommendation2Python data structure recommendation?Wells2009-11-09T01:53:12Z2009-11-09T02:20:40Z
<p>I currently have a structure that is a dict: each value is a list that contains numeric values. Each of these numeric lists contain what (to borrow a SQL idiom) you could call a primary key containing the first three values which are: a year, a player identifier, and a team identifier. This is the key for the dict.</p>
<p>So you can get a unique row by passing the a value in for the year, player ID, and team ID like so:</p>
<pre><code>statline = stats[(2001, 'SEA', 'suzukic01')]
</code></pre>
<p>Which yields something like</p>
<pre><code>[305, 20, 444, 330, 45]
</code></pre>
<p>I'd like to alter this data structure to be quickly summed by either of these three keys: so you could easily slice the totals for a given index in the numeric lists by passing in ONE of year, player ID, and team ID, and then the index. I want to be able to do something like</p>
<pre><code>hr_total = stats[year=2001, idx=3]
</code></pre>
<p>Where that idx of 3 corresponds to the third column in the numeric list(s) that would be retrieved.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1698753/slice-lists-and-the-ellipsis-in-python-how-and-when-to-use0"Slice lists" and "the ellipsis" in Python: how and when to use?behindthefall2009-11-09T02:01:45Z2009-11-09T02:13:52Z
<p>Can someone tell me how to use "slice lists" and the "ellipsis"? I've gone through as much online documentation as I can find, and my books are silent on the subjects. (Actually, I think I'll give up on the ellipsis, because I keep running into statements that the ellipsis is not implemented in any current Python built-ins. However, the idea of being able to make a list of slices and do something useful with it seems appealing ... )</p>
<p>When are they useful? Thanks.</p>
<p>[<a href="http://docs.python.org/reference/expressions.html#tok-slicing%5D%5B1%5D" rel="nofollow">http://docs.python.org/reference/expressions.html#tok-slicing%5D%5B1%5D</a></p>
<blockquote>
<p>5.3.3. Slicings</p>
<p>A slicing selects a range of items in
a sequence object (e.g., a string,
tuple or list). Slicings may be used
as expressions or as targets in
assignment or del statements. The
syntax for a slicing:</p>
<p>slicing ::= simple_slicing |
extended_slicing</p>
<p>simple_slicing ::= primary "["
short_slice "]"</p>
<p>extended_slicing ::= primary "["
slice_list "]"</p>
<p>slice_list ::= slice_item (","
slice_item)* [","]</p>
<p>slice_item ::= expression |
proper_slice | ellipsis</p>
<p>proper_slice ::= short_slice |
long_slice</p>
<p>short_slice ::= [lower_bound]
":" [upper_bound]</p>
<p>long_slice ::= short_slice ":"
[stride]</p>
<p>lower_bound ::= expression</p>
<p>upper_bound ::= expression</p>
<p>stride ::= expression</p>
<p>ellipsis ::= "..."</p>
<p>There is ambiguity in the formal
syntax here: anything that looks like
an expression list also looks like a
slice list, so any subscription can be
interpreted as a slicing. Rather than
further complicating the syntax, this
is disambiguated by defining that in
this case the interpretation as a
subscription takes priority over the
interpretation as a slicing (this is
the case if the slice list contains no
proper slice nor ellipses). Similarly,
when the slice list has exactly one
short slice and no trailing comma, the
interpretation as a simple slicing
takes priority over that as an
extended slicing.</p>
<p>[1]:
<a href="http://docs.python.org/reference/expressions.html#tok-slicing" rel="nofollow">http://docs.python.org/reference/expressions.html#tok-slicing</a></p>
</blockquote>
http://stackoverflow.com/questions/1698494/xcode-target-phase-python-script0XCode Target Phase Python ScriptJorge Ortiz2009-11-09T00:34:35Z2009-11-09T02:09:42Z
<p>Hi everybody:</p>
<p>I am trying to add a Python script to into my project to obtain the build and marketing numbers directly from Git.</p>
<p>I have created a new target phase and that runs a script as explained in:<br>
<a href="http://yeahrightkeller.com/2008/10/19/xcode-run-script-build-phase-tip/" rel="nofollow">http://yeahrightkeller.com/2008/10/19/xcode-run-script-build-phase-tip/</a></p>
<p>And I have written a Python script that parses the program Info.plist using </p>
<p>from Foundation import NSMutableDictionary</p>
<p>However the script fails while being compiled and reports the following error to the build results:
Running a custom build phase script: gitversion.py<br>
Traceback (most recent call last):<br>
File "/Users/jorge/Documents/Programming iPod/Pruebas/RowOrder/Scripts/gitversion.py", line 9, in <br>
from Foundation import NSMutableDictionary<br>
File "/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/Foundation/<strong>init</strong>.py", line 8, in <br>
File "/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/PyObjC/objc/<strong>init</strong>.py", line 26, in <br>
from _bridgesupport import *<br>
File "/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/PyObjC/objc/_bridgesupport.py", line 9, in <br>
import pkg_resources<br>
File "/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/pkg_resources.py", line 651, in <br>
class Environment(object):<br>
File "/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/pkg_resources.py", line 654, in Environment<br>
def <strong>init</strong>(self, search_path=None, platform=get_supported_platform(), python=PY_MAJOR):<br>
File "/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/pkg_resources.py", line 55, in get_supported_platform<br>
plat = get_build_platform(); m = macosVersionString.match(plat)<br>
File "/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/pkg_resources.py", line 181, in get_build_platform<br>
plat = get_platform()<br>
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/distutils/util.py", line 97, in get_platform<br>
cfgvars = get_config_vars()<br>
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/distutils/sysconfig.py", line 525, in get_config_vars<br>
func()<br>
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/distutils/sysconfig.py", line 408, in _init_posix<br>
raise DistutilsPlatformError(my_msg)<br>
distutils.errors.DistutilsPlatformError: $MACOSX_DEPLOYMENT_TARGET mismatch: now "10.5" but "10.6" during configure<br>
Finished running custom build phase script: gitversion.py (exit status = 1)</p>
<p>Clearly, distutils has somehow hardcoded that it is compiled for version 10.6 (Snow Leopard, that is the one I am using), but the project has the MacOSX Deployment target set to 10.5.</p>
<p>If i try to set this variable in the project to 10.6, I then get:
ld: library not found for -lcrt1.10.6.o</p>
<p>Any ideas on how to solve this issue? Thanks in advance.</p>
http://stackoverflow.com/questions/1688712/how-flatten-a-list-of-lists-one-step0How flatten a list of lists one step lgwest2009-11-06T16:31:10Z2009-11-09T02:02:52Z
<p>I have a list of lists of tuples </p>
<pre><code>A= [ [(1,2,3),(4,5,6)], [(7,8,9),(8,7,6),(5,4,3)],[(2,1,0),(1,3,5)] ]
</code></pre>
<p>The outer list can have any number of inner lists, the inner lists can have any number of tuples, a tuple always has 3 integers.</p>
<p>I want to generate all combination of tuples, one from each list:</p>
<pre><code>[(1,2,3),(7,8,9),(2,1,0)]
[(1,2,3),(7,8,9),(1,3,5)]
[(1,2,3),(8,7,6),(2,1,0)]
...
[(4,5,6),(5,4,3),(1,3,5)]
</code></pre>
<p>A simple way to do it is to use a function similar to <code>itertools.poduct()</code>
but it must be called like this </p>
<pre><code>itertools.product([(1,2,3),(4,5,6)], [(7,8,9),(8,7,6),(5,4,3)],[(2,1,0),(1,3,5)])
</code></pre>
<p>i.e the outer list is removed. And I don't know how to do that. Is there a better way to generate all combinations of tuples?</p>
http://stackoverflow.com/questions/91846/rails-or-django-or-something-else24Rails or Django? (or something else?)Kyle Cronin2008-09-18T11:51:22Z2009-11-09T01:58:07Z
<p>I'm interested in learning a web framework. The two big ones, as I gather, are Rails and Django. Which one is better/faster? Is one better designed or more logically consistent than the other? Is there another framework I should look into? How easy is it to set up and administer a Rails or Django server, and how easy is it to find a shared hosting plan?</p>
<p>To give a little background, the websites I'm currently used to making are in straight PHP (no framework) and I'd like to be able to manage some of the complexity that comes from feature creep. Outputting HTML with echo becomes a lot less fun the more you have to customize it. In addition, I don't know either Ruby or Python so I'm free to go either way.</p>
<p>note: I'm not interested in ASP. I'd like to develop on a Mac and deploy to Linux/FreeBSD and I don't think that ASP fits the bill.</p>
<p><hr /></p>
<p>To everyone that's replied so far: thank you! Choosing a web framework can be a difficult thing, so I'll try to narrow down what I would like to do.</p>
<p>First, I would like to build small, custom sites (hard to call them "apps") that serve data from a database, and optionally an administrative interface to manage everything behind the scenes. As an example, I have a website for my grandmother to showcase her artwork built in PHP. I've spent more time on the backend than the front end to enable her to reorder, relabel, and reprice her artwork as well as upload an image, tag it, and have it scaled and appear on her site.</p>
<p>I notice both frameworks generate "scaffolding" that can be used as a rudimentary admin interface; how would they handle non-textual data (like images)?</p>
<p>Also, when watching a Rails screencast, there was a casual mention that the framework does some singular/plural translation. This strikes me as quite odd - is this what is referred to as "magic" in Rails? If so, does Django (or any other framework) have a more sensible naming strategy?</p>
http://stackoverflow.com/questions/1396668/python-get-object-by-id1Python: Get object by idcool-RR2009-09-08T22:26:56Z2009-11-09T01:54:17Z
<p>Let's say I have an id of a Python object, which I retrieved by doing <code>id(thing)</code>. How do I find <code>thing</code> again by the id number I was given?</p>
http://stackoverflow.com/questions/1697557/numpy-problem-with-long-arrays2Numpy, problem with long arrays.jonalm2009-11-08T19:07:52Z2009-11-09T01:51:25Z
<p>I have two arrays (a and b) with n integer elements in the range (0,N).</p>
<p>I want to calculate the sum of every combination of elements in a and b (sum_ij_ = a_i_ + b_j_ for all <em>i,j</em>). Then take modulus N (sum_ij_ = sum_ij_ % N), and finally calculate the frequency of the different sums.</p>
<p>In order to do this fast with numpy, without any loops, I tried to use the meshgrid and the bincount function.</p>
<pre><code>A,B = numpy.meshgrid(a,b)
A = A + B
A = A % N
A = numpy.reshape(A,A.size)
result = numpy.bincount(A)
</code></pre>
<p>Now, the problem is that my input arrays are long. And meshgrid gives me MemoryError when I use inputs with 2^13 elements. I would like to calculate this for arrays with 2^15-2^20 elements.</p>
<p>Is there any clever tricks to do this with numpy?</p>
<p>Any help will be highly appreciated.</p>
<p>--
jon</p>
http://stackoverflow.com/questions/1698627/beautifulsoup-is-omitting-body-of-page0BeautifulSoup is omitting body of pagegmoorevt2009-11-09T01:12:02Z2009-11-09T01:50:52Z
<p>BeautifulSoup newbe... Need help</p>
<p>Here is the code sample...</p>
<pre><code>from mechanize import Browser
from BeautifulSoup import BeautifulSoup
mec = Browser()
#url1 = "http://www.wines.com/catalog/index.php?cPath=21"
url2 = "http://www.wines.com/catalog/product_info.php?products_id=4866"
page = mec.open(url2)
html = page.read()
soup = BeautifulSoup(html)
print soup.prettify()
</code></pre>
<p>When I use url1 I get a nice dump of the page. When I use url2(the one I need). I get output without the body.</p>
<pre><code><!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
<html dir="LTR" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>
2005 Jordan Cabernet Sauvignon Sonoma 2005
</title>
</head>
</html>
</code></pre>
<p>Any ideas? </p>
http://stackoverflow.com/questions/1698217/pythonic-way-to-find-a-regular-expression-match2Pythonic way to find a regular expression matchaaronstacy2009-11-08T22:55:43Z2009-11-09T01:50:43Z
<p>Is there a more succinct/correct/pythonic way to do the following:</p>
<pre><code>url = "http://0.0.0.0:3000/authenticate/login"
re_token = re.compile("<[^>]*authenticity_token[^>]*value=\"([^\"]*)")
for line in urllib2.urlopen(url):
if re_token.match(line):
token = re_token.findall(line)[0]
break
</code></pre>
<p>I want to get the value of the input tag named "authenticity_token" from an HTML page:</p>
<pre><code><input name="authenticity_token" type="hidden" value="WTumSWohmrxcoiDtgpPRcxUMh/D9m7O7T6HOhWH+Yw4=" />
</code></pre>
http://stackoverflow.com/questions/1698596/how-can-i-traverse-a-file-system-with-a-generator2How can I traverse a file system with a generator?Evan Kroske2009-11-09T01:00:46Z2009-11-09T01:43:35Z
<p>I'm trying to create a utility class for traversing all the files in a directory, including those within subdirectories and sub-subdirectories. I tried to use a generator because generators are cool; however, I hit a snag.</p>
<pre><code>
def grab_files(directory):
for name in os.listdir(directory):
full_path = os.path.join(directory, name)
if os.path.isdir(full_path):
yield grab_files(full_path)
elif os.path.isfile(full_path):
yield full_path
else:
print('Unidentified name %s. It could be a symbolic link' % full_path)
</code></pre>
<p>When the generator reaches a directory, it simply yields the memory location of the new generator; it doesn't give me the contents of the directory.</p>
<h3>How can I make the generator yield the contents of the directory instead of a new generator?</h3>
<p>If there's already a simple library function to recursively list all the files in a directory structure, tell me about it. I don't intend to replicate a library function.</p>
http://stackoverflow.com/questions/1694941/chunking-text-parsing-using-nltk0chunking/text parsing using NLTKinspectorG4dget2009-11-08T00:39:34Z2009-11-09T01:32:56Z
<p>I am trying to parse some text and diagram it, like you would a sentence. I am new to NLTK and am trying to find something in NLTK that will help me accomplish this. So far, I have seen nltk.ne_chunk and nltk.pos_tag. I find them to be not very helpful and I am not able to find any good online documentation.</p>
<p>I have also tried to use the LancasterStemmer, but I don't fully understand what it does or how it should be used or why it even exists.</p>
<p>Can somebody please help me out with this? I'm really at a loss and getting quite frustrated without any guiding lights.</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1698553/what-is-meant-by-2d-array-support3What is meant by 2D array support? Casey2009-11-09T00:49:49Z2009-11-09T01:26:59Z
<p>I read that Python does not actually support 2D arrays but rather an array of an array. I understand the array of an array thing but what does it mean by supporting 2D arrays?</p>
<p>In C a 2D array is simply converted to a 1D array by doing some fancy math (<a href="http://stackoverflow.com/questions/1242705/performance-of-2-dimensional-array-vs-1-dimensional-array">Seen here</a>). Are there languages that implement actual 2D arrays?</p>
<p>Thanks for the help and I hope I haven't written a duplicate question; if so give me a link and close my question :)</p>
http://stackoverflow.com/questions/220971/free-python-hosting8Free Python hostingMidhat2008-10-21T06:31:18Z2009-11-09T01:22:37Z
<p>Is there a free working python host on which I can live test a django app?</p>
<p>Google app engine is not an option.</p>
http://stackoverflow.com/questions/1538832/is-this-single-underscore-a-built-in-variable-in-python3Is this single underscore a built-in variable in Python?sjthebat2009-10-08T16:11:33Z2009-11-09T01:09:43Z
<p>I don't understand what this single underscore means. Is it a magic variable? I can't see it in locals() and globals().</p>
<pre><code>>>> 'abc'
'abc'
>>> len(_)
3
>>>
</code></pre>
http://stackoverflow.com/questions/1659559/what-makes-python-a-good-scripting-language1What makes Python a good scripting language?hanifr2009-11-02T05:33:23Z2009-11-09T01:00:48Z
<p>If you have to choose a scripting language, why would you choose Python?</p>
http://stackoverflow.com/questions/1666482/what-if-setuptools-isnt-installed1What if setuptools isn't installed? cool-RR2009-11-03T10:27:04Z2009-11-09T00:52:28Z
<p>I'm just learning the art of writing a <code>setup.py</code> file for my project. I see there's lots of talk about <code>setuptools</code>, which is supposed to be superior to distutils. There's one thing though that I fail to understand, and I didn't see it addressed in any tutorial I've read about this: What if setuptools isn't installed? I understand it's not part of the standard library, so how can you assume the person who wants to install your program will have it installed?</p>
http://stackoverflow.com/questions/1698487/python-appengine-urllib2-headers-from-a-3020Python: appengine urllib2 headers from a 302Paul Tarjan2009-11-09T00:32:22Z2009-11-09T00:49:50Z
<p>A normal <code>urllib2</code> works fine:</p>
<pre><code>>>> import urllib2
>>> r = urllib2.urlopen(u"http://bit.ly/4ovTZw")
>>> r.geturl()
'http://www.writing.com/main/handler/action/show_document/item_id/933413.mp3'
>>> r.headers.get("Content-Type")
'audio/mpeg'
</code></pre>
<p>But in appengine, the same code shows <code>text/html</code>.</p>
<pre><code>def get(self):
r = urllib2.urlopen(u"http://bit.ly/4ovTZw")
self.response.out.write( r.geturl() )
self.response.out.write( r.headers.get("Content-Type") )
return
</code></pre>
<p>Can I get around this? Why is this happening?</p>
http://stackoverflow.com/questions/1661262/check-if-object-is-file-like-in-python6Check if object is file-like in Pythondmeister2009-11-02T13:13:57Z2009-11-09T00:46:11Z
<p><a href="http://docs.python.org/library/stdtypes.html#bltin-file-objects" rel="nofollow">File-like objects</a> are objects in Python that behave like a real file, e.g. have a read() and a write method(), but have a different implementation. It is and realization of the <a href="http://en.wikipedia.org/wiki/Duck%5Ftyping" rel="nofollow">Duck Typing</a> concept.</p>
<p>It is considered good practice to allow a file-like object everywhere where a file is expected so that e.g. a <a href="http://docs.python.org/library/stringio.html" rel="nofollow">StringIO</a> or a Socket object can be used instead a real file. So it is bad to perform a check like this:</p>
<pre><code>if not isinstance(fp, file):
raise something
</code></pre>
<p>What is the best way to check if an object (e.g. a parameter of a method) is "file-like"?</p>
http://stackoverflow.com/questions/1668594/where-does-python-first-look-for-files0Where does Python first look for files?ilikeblocparty2009-11-03T16:46:25Z2009-11-09T00:42:38Z
<p>I'm trying to learn how to parse .txt files in Python. This has led me to opening the interpreter (terminal > python) and playing around. However, I can't seem to be able to specify the right path. Where does Python first look?</p>
<p>This is my first step:</p>
<pre><code> f = open("/Desktop/temp/myfile.txt","file1")
</code></pre>
<p>This blatantly doesn't work. Can anyone advise?</p>
http://stackoverflow.com/questions/1695452/searching-values-of-a-list-in-another-list-using-python3Searching values of a list in another List using Python Al2009-11-08T05:20:21Z2009-11-09T00:39:10Z
<p>Im a trying to find a sublist of a list. Meaning if list1 say [1,5] is in list2 say [1,4,3,5,6] than it should return True. What I have so far is this:</p>
<pre><code>for nums in l1:
if nums in l2:
return True
else:
return False
</code></pre>
<p>This would be true but I'm trying to return True only if list1 is in list2 in the respective order. So if list2 is [5,2,3,4,1], it should return False. I was thinking along the lines of comparing the index values of list1 using < but I'm not sure.</p>
http://stackoverflow.com/questions/1698376/what-tools-can-be-used-to-produce-beautiful-documentation-for-a-python-project1What tools can be used to produce beautiful documentation for a Python project?Salim Fadhley2009-11-08T23:45:27Z2009-11-09T00:26:42Z
<p>I'm working on an open-source project called <a href="http://code.google.com/p/python-graph/" rel="nofollow">python-graph</a>. We've come to the point where our APIs are stabilising and we've realised that we need some user docs. We already have automatically generated <a href="http://www.linux.ime.usp.br/~matiello/python-graph/docs/" rel="nofollow">Epydoc API reference documents</a>, however I want to I want to create something more useful for beginner programmers who find the auto-generated doc formats somewhat impenetrable. </p>
<p>I'd like our documentation to be accessible to first-time programmers - especially undergraduate level and people from a non-mathematical background. </p>
<p>Mark Pilgrim seems to create some of the best documentation i've ever read. We want to make a document that works much the same way that his online "<a href="http://diveintopython.org/getting%5Fto%5Fknow%5Fpython/index.html" rel="nofollow">Dive into Python</a>" project works. </p>
<p><strong>My question</strong>: How did he do this? Is there a content management system which is geared towards building documents like this? Is this LaTeX, and if so how he get the code highlighting so perfect? Furthermore, is there a way that we can reference code externally? I'd want to ensure that every example code we put into our docs is automatically tested for validity as our APIs evolve. </p>
<p>Thanks</p>
http://stackoverflow.com/questions/1324238/what-is-the-fastest-template-system-for-python0What is the fastest template system for Python?Josh Gibson2009-08-24T19:28:00Z2009-11-09T00:16:00Z
<p>Jinja2 and Mako are both apparently pretty fast.</p>
<p>How do these compare to (the less featured but probably good enough for what I'm doing) string.Template ?</p>