active questions tagged python+or+django - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T13:15:21Zhttp://stackoverflow.com/feeds/tag/python+or+djangohttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1803516/replace-the-nan-value-zero-after-an-operation-with-arrays0replace the NaN value zero after an operation with arraysricardo2009-11-26T12:54:13Z2009-11-26T13:10:56Z
<p>hi all, how can I replace the NaN value in an array, zero if an operation is performed such that as a result instead of the NaN value is zero operations as</p>
<p>0 / 0 = NaN can be replaced by 0</p>
http://stackoverflow.com/questions/1803292/initialize-project-layout-in-python3Initialize project layout in python ?Stefano Borini2009-11-26T12:02:10Z2009-11-26T13:10:52Z
<p>Suppose a programmer has the following problem: he wants to start a new python project. He needs a basic layout of boilerplate stuff, like test directory, source directory, setuptools script etc.. How does he create all this stuff and layout with a single command ?</p>
<p>For example, paster (as suggested in one of the answers, provides you this service)</p>
<pre><code>paster create
Selected and implied templates: PasteScript#basic_package
A basic setuptools-enabled package
</code></pre>
<p>but paster is part of a tool whose main scope is not the deployment of packages. What if I want to have a template for a library, and a template for an application? How can I modify the template to add my own personal stuff to it ?</p>
http://stackoverflow.com/questions/1565812/the-default-delete-selected-admin-action-in-django1the default "delete selected" admin action in djangoHellnar2009-10-14T11:58:06Z2009-11-26T13:06:03Z
<p>Hello, how can I remove or change the verbose name of the default admin action "delete selected X item" at the django admin panel?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1803233/how-to-install-mysql-connector0How to install mysql connectorNaresh2009-11-26T11:46:27Z2009-11-26T13:02:39Z
<p>I have downloaded mysqlDb, and while installing it I am getting errors like:</p>
<pre>
C:\Documents and Settings\naresh\Desktop\MySQL-python-1.2.3c1>setup.py build
Traceback (most recent call last):
File "C:\Documents and Settings\naresh\Desktop\MySQL-python-1.2.3c1
\setup.py",line15, in
metadata, options = get_config()
File "C:\Documents and Settings\naresh\Desktop\MySQL-python-1.2.3c1
\setup_windows.py", line 7, in get_config
serverKey = _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, options['registry_key'])
WindowsError: [Error 2] The system cannot find the file specified
</pre>
<p>What can I do to address this?</p>
http://stackoverflow.com/questions/1640054/multiple-couchdb-document-fetch-with-couchdb-python0Multiple CouchDB Document fetch with couchdb-pythondnolen2009-10-28T20:52:25Z2009-11-26T13:01:38Z
<p>How to fetch multiple documents from CouchDB, in particular with couchdb-python?</p>
http://stackoverflow.com/questions/1802784/django-large-file-uploads-custom-processing-with-modwsgi1Django: Large file uploads - custom processing with mod_wsgithe_void2009-11-26T10:12:07Z2009-11-26T13:00:56Z
<p>I'm doing file uploads using Django's File Upload mechanism with a custom handler (by subclassing <code>django.core.files.uploadhandler.FileUploadHandler</code>) which does some additional processing in the
<code>receive_data_chunk(self, raw_data, start)</code> function.</p>
<p>I was curious when the handler is actually called (i.e. after the file has been completely uploaded by the server or as it arrives on the socket)?</p>
<p>From my tests I found out that you have access to the data as it arrives on the socket, but I would like someone to confirm this. I'm a little puzzled by this, because I thought <code>mod_wsgi</code> was a <code>content generator</code> in Apache, thus being called after the <code>input filters</code> which pre-process the client's request.</p>
<p>PS: I'm using Apache + mod_wsgi + Django.</p>
http://stackoverflow.com/questions/1803302/pythonic-way-to-select-first-variable-that-is-defined0Pythonic way to select first variable that is definedRichard2009-11-26T12:03:49Z2009-11-26T13:00:12Z
<p>I have some variables and I want to select the first one that is defined, or else return a default value.</p>
<p>For instance I have <code>a</code>, <code>b</code>, and <code>c</code>. My existing code:</p>
<pre><code>result = a if a else (b if b else (c if c else default))
</code></pre>
<p>Another approach I was considering:</p>
<pre><code>result = ([v for v in (a, b, c) if v] + [default])[0]
</code></pre>
<p>But they both feel messy, so is there a more Pythonic way?</p>
http://stackoverflow.com/questions/1803458/fast-graphics-with-xserver0Fast Graphics with XServer Palani2009-11-26T12:40:42Z2009-11-26T12:51:44Z
<p>I am working on <strong>embedded linux platform with limited system resources</strong>.</p>
<p><strong>I want to do fullscreen slideshow with simple transistions (like slide in-out, fade in-out )</strong>.</p>
<p>I tried PyGtk+GTK+Cairo but its very slow, when I animate GTK image controls I get just two or three frames per second. But smplayer is playing video at good speed!</p>
<p>I did some little research and came to know about <a href="http://www.directfb.org/" rel="nofollow">directfb</a>, <a href="http://www.ggi-project.org/" rel="nofollow">libggi</a>, <a href="http://www.svgalib.org/" rel="nofollow">svgalib</a> etc. and I don't know what library should be used.</p>
<p>Which library is the best for this kind of application? I would prefer to do this without stopping X.</p>
http://stackoverflow.com/questions/1799475/importing-cxoracle-and-kinterbasdb-returns-error0importing cx_Oracle and kinterbasdb returns errorDante2009-11-25T19:43:00Z2009-11-26T12:26:50Z
<p>Greetings, everybody.</p>
<p>I'm trying to import the following libraries in python: cx_Oracle and kinterbasdb.</p>
<p>But, when I try, I get a very similar message error.
*for cx_Oracle:
Traceback (most recent call last):
File "", line 1, in
ImportError: DLL load failed: Não foi possível encontrar o procedimento especificado.
(translation: It was not possible to find the specified procedure)</p>
<p>*for kinterbasdb:
Traceback (most recent call last):
File "C:\", line 1, in
File "c:\Python26\Lib\site-packages\kinterbasdb__init__.py", line 119, in
import _kinterbasdb as _k
ImportError: DLL load failed: Não foi possível encontrar o módulo especificado.
(translation: It was not possible to find the specified procedure)</p>
<p>I'm using python 2.6.4 in windows XP. cx_Oracle's version is 5.0.2. kinterbasdb's version is 3.3.0.</p>
<p>Edit: I've solved it for cx_Oracle, it was a wrong version problem. But I believe I'm using the correct version, and I downloaded it from the Firebird site ( kinterbasdb-3.3.0.win32-setup-py2.6.exe ). Still need assistance with this, please.</p>
<p>Can anyone lend me a hand here?
Many Thanks
Dante</p>
http://stackoverflow.com/questions/1800586/getting-geodjango-spatialite-running-on-windows0Getting GeoDjango + Spatialite running on WindowsHans2009-11-25T23:11:25Z2009-11-26T12:15:45Z
<p>I continue to have problems setting up a GeoDjango installation that uses Spatialite as a backend on a Windows machine.</p>
<p>I used the GeoDjango installer and downloaded the precompiled libraries from <a href="http://www.gaia-gis.it/spatialite/binaries.html" rel="nofollow">http://www.gaia-gis.it/spatialite/binaries.html</a>, and dumped them into my geodjango/bin directory.</p>
<p>I upgraded my pysqlite2 installation to the newest version, so that extensions can be loaded and I specified <code>SPATIALITE_LIBRARY_PATH</code> in my settings file.</p>
<p>When I run <code>manage syncdb</code> I get the following output </p>
<pre>
C:\stuff>manage.py syncdb
SpatiaLite version ..: 2.3.1 Supported Extensions:
- 'VirtualShape' [direct Shapefile access]
- 'VirtualText' [direct CSV/TXT access]
- 'VirtualNetwork [Dijkstra shortest path]
- 'RTree' [Spatial Index - R*Tree]
- 'MbrCache' [Spatial Index - MBR cache]
- 'VirtualFDO' [FDO-OGR interoperability]
- 'SpatiaLite' [Spatial SQL - OGC]
PROJ.4 Rel. 4.6.1, 21 August 2008
GEOS version 3.0.2-CAPI-1.4.2
</pre>
<p>However, when setting up the indices for the table I get the following message:</p>
<pre>
...
Installing custom SQL for core.LocationHint model
updateTableTriggers: "no such module: rtree"
...
</pre>
<p>I tried to ignore the message, however my models would not save correctly.</p>
<p>I am a little baffled, because the Spatialite library seems to be used and has the "RTree" extension enabled, yet I still get the error message.
There is not much information about this error available online; I found the RTree Documentation at sqlite.org/rtree.html, however I was under the impression that it is already included in spatialite because it is listet under "supported extensions".</p>
<p>Do I really need to compile my own sqlite library? Can somebody provide a .dll that already has RTree included? Am I doing something completely wrong? Any help is appreciated, thanks!</p>
http://stackoverflow.com/questions/1803149/please-here-is-a-task-what-describes-this-sequence-1Please, here is a Task - What describes this sequence? [closed]psihodelia2009-11-26T11:30:52Z2009-11-26T12:08:34Z
<p>I have a very interesting sequence. Here how it is defined in Python:</p>
<pre><code>a={1:0, 2:1, 3:3, 4:6, 5:10}
for i in xrange(6,1000):
a[i] = a[i-1]+(i-1)
</code></pre>
<p>Can you please help me to find out - what describes this sequence of positive numbers?<br>
There must be something in the real world.</p>
http://stackoverflow.com/questions/1684197/problem-with-sparqlwrapper-python0Problem with SPARQLWrapper (Python)pns2009-11-05T22:46:01Z2009-11-26T12:01:19Z
<p>Howdy,</p>
<p>I'm making a SPARQL query against the Sesame store in localhost, using <a href="http://sparql-wrapper.sourceforge.net/" rel="nofollow">SPARQLWrapper</a>:</p>
<pre><code> sparql = SPARQLWrapper('http://localhost:8080/openrdf-sesame/repositories/rep/statements')
sparql.setQuery(query)
sparql.setReturnFormat(JSON)
results = sparql.query().convert()
</code></pre>
<p>However, I'm getting:</p>
<pre><code>File "build/bdist.linux-i686/egg/SPARQLWrapper/Wrapper.py", line 339, in query
File "build/bdist.linux-i686/egg/SPARQLWrapper/Wrapper.py", line 318, in _query
urllib2.HTTPError: HTTP Error 406: Not Acceptable
</code></pre>
<p>The strange thing is, however, that querying against the DBPedia SPARQL endpoint everything works fine... </p>
<p>Any thoughts?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1803262/django-aggregate-aggregated-fields0django aggregate aggregated fields?dmishe2009-11-26T11:55:04Z2009-11-26T11:55:04Z
<p>I have a model called Item, with m2m relation to User ("owner").</p>
<p>For each item, i need to count users who own it. That's easy enough with annotate()</p>
<p>But then i need to calculate ratio between owners of specific gender and total owner count for each item. For example if, 2 males own the item out of 5 users, the ration is 0.4.</p>
<p>What's the best way to do that?</p>
http://stackoverflow.com/questions/1797806/parsing-a-hex-formated-dec-32-bit-single-precision-floating-point-value-in-python0Parsing a hex formated DEC 32 bit single precision floating point value in pythonKristofer2009-11-25T15:43:56Z2009-11-26T11:46:14Z
<p>I'm having problems parsing a hex formatted DEC 32bit single precision floating point value in python, the value I'm parsing is represented as D44393DB in hex. The original floating point value is ~108, read from a display of the sending unit.</p>
<p>The format is specified as:
1bit sign + 8bit exponent + 23bit mantissa.
Byte 2 contains the sign bit + the 7 most significant bits of the exponent
Byte 1 contains the least significant bit of the exponent + the starting most significant bits of the mantissa.</p>
<p>The only thing I have found that differs in the two formats is the bias of the exponent which is 128 in DEC32 and 127 in IEEE-754 (<a href="http://www.irig106.org/docs/106-07/appendixO.pdf" rel="nofollow">http://www.irig106.org/docs/106-07/appendixO.pdf</a>)</p>
<p>Using <a href="http://babbage.cs.qc.edu/IEEE-754/32bit.html" rel="nofollow">http://babbage.cs.qc.edu/IEEE-754/32bit.html</a> does not give the expected result.</p>
<p>/Kristofer</p>
http://stackoverflow.com/questions/1802024/pass-several-values-in-a-manager0Pass several values in a managerunknown (yahoo)2009-11-26T07:14:07Z2009-11-26T11:43:10Z
<p>I was wondering if there a way I can pass two or more variables in a custom manager...there are five variables that come from different views but in the model, I've declared a manager to handle filtering based on one of these variables...I want to have all the variables being considered in the filter query. Is there a way to do this?</p>
<pre><code>class VehicleQuerySet(QuerySet):
def vehicle_query(self, year):
return self.filter(common_vehicle__year__year__exact=year).exclude(status__status='Incoming')
class VehicleManager(models.Manager):
def get_query_set(self):
return VehicleQuerySet(self.model)
def vehicle_query(self, year):
return self.get_query_set().vehicle_query(year)
</code></pre>
<p>Then in the view:</p>
<pre><code>vehicle_query = Vehicle.smart_objects.vehicle_query(year)
</code></pre>
http://stackoverflow.com/questions/943809/string-manipulation-in-cython3String manipulation in Cythonitsadok2009-06-03T09:19:23Z2009-11-26T11:36:11Z
<p>I have code that does some very CPU-intensive string manipulations and I was looking for ways to improve performance.</p>
<p>(EDIT: I'm doing stuff like finding longest common substring, running lots of regular expressions which might be better expressed as state machines in c, stripping comments from HTML, stuff like that.)</p>
<p>I am currently looking into porting some of the code to <a href="http://www.cython.org/" rel="nofollow">Cython</a> after hearing many good things about it. However, it seems that the main focus of Cython is numerical calculations and working with strings is barely documented.</p>
<p>Unicode might also be a big issue. </p>
<p>My questions are:</p>
<ol>
<li>Should I even bother with Cython for string stuff? Does anyone have experience with this type of processing in cython and can share?</li>
<li>Am I missing something in the Cython docs? Does anyone know of a tutorial/reference/documentation about working with strings in Cython?</li>
</ol>
http://stackoverflow.com/questions/457757/what-is-the-best-python-book-for-experienced-programmers15What is the best python book for experienced programmers?VoidPointer2009-01-19T14:31:58Z2009-11-26T11:14:43Z
<p>I am a fairly experienced programmer, mostly C, C++, Java and C#...
Can you recommend any Python books that would help me to get the most out of my existing experience? Many Python books I have read good reviews about seem to be aimed at the novice programmer - I'd like to find something that "gets right down to business".
There are many good resources on the web of course but I would like to have a real book that possibly goes a bit into detail about specific concepts, techniques and patterns that are specific to python.</p>
<p>Related questions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/412482/resources-for-moving-to-python">Resources for moving to Python</a></li>
<li><a href="http://stackoverflow.com/questions/142834/best-python-book-for-a-lifelong-php-developer">Best Python book for a lifelong PHP developer?</a></li>
<li><a href="http://stackoverflow.com/questions/356161/python-coding-standards-best-practices">Python coding standards/best practices</a></li>
<li><a href="http://stackoverflow.com/questions/918/how-to-learn-python-good-example-code">How to learn Python: Good Example Code?</a></li>
</ul>
http://stackoverflow.com/questions/1803054/speeding-up-computations-with-numpy-matrices0Speeding up computations with numpy matricesdevoured elysium2009-11-26T11:07:44Z2009-11-26T11:07:44Z
<p>I have two matrices. Both are filled with zeros and ones. One is a big one (3000 x 2000 elements), and the other is smaller ( 20 x 20 ) elements. I am doing something like:</p>
<pre><code>newMatrix = (size of bigMatrix), filled with zeros
l = (a constant)
for y in xrange(0, len(bigMatrix[0])):
for x in xrange(0, len(bigMatrix)):
for b in xrange(0, len(smallMatrix[0])):
for a in xrange(0, len(smallMatrix)):
if (bigMatrix[x, y] == smallMatrix[x + a - l, y + b - l]):
newMatrix[x, y] = 1
</code></pre>
<p>Which is being painfully slow. Am I doing anything wrong? Is there a smart way to make this work faster?</p>
<p>edit: Basically I am, for each (x,y) in the big matrix, checking all the pixels of both big matrix and the small matrix around (x,y) to see if they are 1. If they are 1, then I set that value on newMatrix. I am doing a sort of collision detection.</p>
http://stackoverflow.com/questions/905005/python-and-intellisense5Python and IntellisenseHarry2009-05-25T01:02:23Z2009-11-26T11:03:32Z
<p>Ok newbee question: <strong>Is there an equivalent to 'intellisense' for Python?</strong></p>
<p>Perhaps i shouldn't admit it but I find having intellisense really speeds up the 'discovery phase' of learning a new language. For instance switching from VB.net to C# was a breeze due to snippets and intellisense helping me along.</p>
http://stackoverflow.com/questions/1802971/nameerror-name-self-is-not-defined0NameError: name 'self' is not definedchriss2009-11-26T10:47:54Z2009-11-26T10:55:56Z
<p>Why such structure</p>
<pre><code>class A:
def __init__(self, a):
self.a = a
def p(self, b=self.a):
print b
</code></pre>
<p>gives an error <code>NameError: name 'self' is not defined</code>?</p>
http://stackoverflow.com/questions/1802625/how-to-find-that-the-content-is-truncated0How to find that the content is truncated?sadegh2009-11-26T09:41:12Z2009-11-26T10:45:11Z
<p>I'm trying to build a blog app and the problem is when I use tag 'truncatewords_html' in my template to truncate posts longer than specified words, I need to link to complete post by some title like 'read more...' after truncation. So I should know that the post was truncated or not. </p>
<p>P.S.: Is this a pythonic way to solve the problem?</p>
<pre><code>{% ifequal post.body|length post.body|truncatewords_html:max_words|length %}
{{ post.body|safe }}
{% else %}
{{ post.body|truncatewords_html:max_words|safe }}<a href="{{ post.url}}">read more</a>
{% endifequal %}
</code></pre>
http://stackoverflow.com/questions/1802415/python-for-in-control-structure1python for in control structureTraveling_Monk2009-11-26T08:59:05Z2009-11-26T10:42:10Z
<p>I am a php programmer trying to understand python's for in syntax
I get the basic <a href="http://docs.python.org/tutorial/controlflow.html#for-statements" rel="nofollow">for in</a></p>
<pre><code>for i in range(0,5):
</code></pre>
<p>in php would be</p>
<pre><code>for ($i = 0; $i < 5; $i++){
</code></pre>
<p>but what does this do</p>
<pre><code>for x, y in z:
</code></pre>
<p>and what would be the translation to php?</p>
<p>This is the full code i am translating to php:</p>
<pre><code> def preProcess(self):
""" plan for the arrangement of the tile groups """
tier = 0
tileGroupNumber = 0
numberOfTiles = 0
for width, height in self._v_scaleInfo:
#cycle through columns, then rows
row, column = (0,0)
ul_x, ul_y, lr_x, lr_y = (0,0,0,0) #final crop coordinates
while not ((lr_x == width) and (lr_y == height)):
tileFileName = self.getTileFileName(tier, column, row)
tileContainerName = self.getNewTileContainerName(tileGroupNumber=tileGroupNumber)
if numberOfTiles ==0:
self.createTileContainer(tileContainerName=tileContainerName)
elif (numberOfTiles % self.tileSize) == 0:
tileGroupNumber += 1
tileContainerName = self.getNewTileContainerName(tileGroupNumber=tileGroupNumber)
self.createTileContainer(tileContainerName=tileContainerName)
self._v_tileGroupMappings[tileFileName] = tileContainerName
numberOfTiles += 1
# for the next tile, set lower right cropping point
if (ul_x + self.tileSize) < width:
lr_x = ul_x + self.tileSize
else:
lr_x = width
if (ul_y + self.tileSize) < height:
lr_y = ul_y + self.tileSize
else:
lr_y = height
# for the next tile, set upper left cropping point
if (lr_x == width):
ul_x=0
ul_y = lr_y
column = 0
row += 1
else:
ul_x = lr_x
column += 1
tier += 1
</code></pre>
http://stackoverflow.com/questions/1790176/how-do-i-make-djangos-markdown-filter-transform-a-carriage-return-to-br1How do I make django's markdown filter transform a carriage return to <br />?Hobhouse2009-11-24T13:49:00Z2009-11-26T10:41:16Z
<p>How can I change the default behavior in the markdown filter so that it transforms a newline to a br tag?</p>
http://stackoverflow.com/questions/785667/python-tool-that-suggests-refactorings7Python tool that suggests refactoringsAnonymous2009-04-24T12:41:02Z2009-11-26T10:35:19Z
<p>When digging into legacy Python code and writing Python code myself, I often use <a href="http://www.logilab.org/857" rel="nofollow">pylint</a>. I'm also using <a href="http://clonedigger.sourceforge.net/" rel="nofollow">Clone Digger</a>. I've recently started to use <a href="http://rope.sourceforge.net/" rel="nofollow">rope</a>, which is a library for automated refactoring.</p>
<p>But I'm looking for something else than rope. I would prefer a tool that just makes suggestions about possible refactorings: names the refactoring, optionally provides a short description of it (great for learning purposes), highlights the code section and lets me do the refactoring myself. Is there such a tool?</p>
http://stackoverflow.com/questions/1801518/why-does-swig-crash-python-when-linked-to-gtkglext0Why does SWIG crash Python when linked to gtkglext?Steve2009-11-26T04:23:54Z2009-11-26T10:24:31Z
<p>Anything I link to gtkglext using SWIG crashes Python on exit. Why does this crash?</p>
<p>test.i:</p>
<pre><code>%module test
%{
void test() { printf("Test.\n"); }
%}
void test();
</code></pre>
<p>Session:</p>
<pre><code>$ swig -python test.i
$ g++ -I/usr/include/python2.6 -shared -fPIC -o _test.so test_wrap.c -lpython2.6
$ python -c 'import test; test.test()'
Test.
$ g++ -I/usr/include/python2.6 -shared -fPIC -o _test.so test_wrap.c -lpython2.6 `pkg-config --libs gtkglext-1.0`
$ python -c 'import test; test.test()'
Test.
Segmentation fault
</code></pre>
<p>Any ideas? Thanks...</p>
http://stackoverflow.com/questions/1796925/how-to-import-a-file-by-its-full-path-using-c-api0How to import a file by its full path using C api?lallous2009-11-25T13:31:25Z2009-11-26T10:23:57Z
<p>Hello</p>
<pre><code>PyObject* PyImport_ImportModule( const char *name)
</code></pre>
<p>How to specify a full file path instead and a module name?</p>
<p>Like <code>PyImport_SomeFunction(const char *path_to_script, const char *name)</code></p>
<p>Thanks,
Elias</p>
http://stackoverflow.com/questions/1802728/how-to-match-userproperty-with-stringproperty0how to match UserProperty() with StringProperty()Raj2009-11-26T10:00:53Z2009-11-26T10:10:51Z
<p>i want to match StringProperty() with UserProperty & i cant change property so how i can achieve it?</p>
<p>Please help me out..................</p>
http://stackoverflow.com/questions/1802480/how-to-identiy-whether-a-variable-is-a-class-or-an-object0How to identiy whether a variable is a class or an objectMadhusudan.C.S2009-11-26T09:11:14Z2009-11-26T10:06:41Z
<p>I am working at a bit lower level writing a small framework for creating test fixtures for my project in Python. In this I want to find out whether a particular variable is an instance of a certain class or a class itself and if it is a class, I want to know if it is a subclass of a certain class defined by my framework. How do I do it?</p>
<pre><code>class MyBase(object):
pass
class A(MyBase):
a1 = 'Val1'
a2 = 'Val2'
class B(MyBase):
a1 = 'Val3'
a2 = A
</code></pre>
<p>I want to find out if the properties a1 and a2 are instances of a class/type (a1 is a string type in B) or a class object itself (i.e a2 is A in B). Can you please help me how do I find this out?</p>
http://stackoverflow.com/questions/676713/is-there-a-cross-platform-python-low-level-api-to-capture-or-generate-keyboard-ev2Is there a cross-platform python low-level API to capture or generate keyboard events?MiniQuark2009-03-24T09:48:25Z2009-11-26T09:59:02Z
<p>I am trying to write a cross-platform python program that would run in the background, monitor all keyboard events and when it sees some specific shortcuts, it generates one or more keyboard events of its own. For example, this could be handy to have Ctrl-@ mapped to "my.email@address", so that every time some program asks me for my email address I just need to type Ctrl-@.</p>
<p>I know such programs already exist, and I am reinventing the wheel... but my goal is just to learn more about low-level keyboard APIs. Moreover, the answer to this question might be useful to other programmers, for example if they want to startup an SSH connection which requires a password, without using pexpect.</p>
<p>Thanks for your help.</p>
<p>Note: there is <a href="http://stackoverflow.com/questions/310576/low-level-keyboard-input-on-windows">a similar question</a> but it is limited to the Windows platform, and does not require python. I am looking for a cross-platform python api. There are also other questions related to keyboard events, but apparently they are not interested in system-wide keyboard events, just application-specific keyboard shortcuts.</p>
<p>Edit: I should probably add a disclaimer here: I do <em>not</em> want to write a keylogger. If I needed a keylogger, I could download one off the web a anyway. ;-)</p>
http://stackoverflow.com/questions/1762306/force-unpacking-of-certain-egg-directories1force unpacking of certain egg directoriesJeroen Dierckx2009-11-19T10:26:49Z2009-11-26T09:45:24Z
<p>I have an egg distribution of a PyQt application which i build myself, and it contains sphinx generated documentation. When i call the help file from the application it opens the sphinx index.html in a QtWebKit.QWebView window. Apparently, only the index.html file is extracted from the egg into the OS's egg-directory (e.g. [..]\Application Data\Python-Eggs\ under Windows).</p>
<p>This results in broken css, broken images, and broken links, because these other files don't seem to get unpacked; they are present in the egg file, but not in the egg-directory.</p>
<p>Am i missing something here? Is there a way to force unpacking all html, css, image file immediately?</p>