Search Results

4
votes

Finding the Current Active Window in Mac OS X using Python

This should work: #!/usr/bin/python from AppKit import NSWorkspace activeAppName = NSWorkspace.sharedWorkspace().activeApplication()['NSApplicationName'] print activeAppName …
4
votes

What is the best (idiomatic) way to check the type of a Python variable?

isinstance is preferrable over type because it also evaluates as True when you compare an object instance with it's superclass, which basically means you won't ever have to special-case your old co …
0
votes

need help-variable creation in Python (continuation)

Just keep in mind that 'exec' executes whatever string you pass in to it as if you typed it in your .py file or the interpreter. When debugging exec() related code, it's helpful to log what …
0
votes

Finding when the ActiveApplication changes in OSX through Python…

I'm not aware of an 'official'/good way to do this, but one hackish way to go about this is to listen for any distributed notifications and see which ones are always fired when the frontmost app ch …
0
votes

catch odbc exception

From the Python documentation: A try statement may have more than one except clause, to specify han …
0
votes

Nested transactions with SQLAlchemy and sqlite

SQLAlchemy uses pysqlite to interact with an SQLite database, if I'm not mistaken pysqlite will by default wrap up any query you send it in a transaction. The answer might lie in correctly …
1
vote

Install PyObjC on Python 2.6 on OS X 10.5?

You should probably try to build PyObjC from trunk, which will work fine on the official Python 2.6 distribution, but not on Python 2.5. There are quite a lot of fixes in the trunk right now that …