PyObjC is a bridge between the Python and Objective-C programming languages. It allows code written in either one of those languages to interact more or less directly with code written in the other. Its primary use is in the creation of software for Mac OS X. The PyObjC package includes wrappers for ...

learn more… | top users | synonyms

0
votes
2answers
28 views

OS X: Move window from Python

I'm trying to move around windows programatically from Python on OS X. I found a snippet of AppleScript here on Stackoverflow which does this, but I'd like to do it in Python or another "real" ...
1
vote
3answers
38 views

PyObjc autorelease pool

EDIT: Thanks for the advice. I'm still not clear on how the autorelease pools are actually handled. Here's the actual code: import platform, time if (platform.system().lower() == "darwin"): ...
0
votes
0answers
13 views

NSUserNotification not working with wx.app.MainLoop() method

Here is simple code that uses PyObjC interface to show the desktop notification. When I call notify method without wx.app.MainLoop() it works fine but with wx.app.MainLoop() it not. import ...
0
votes
1answer
74 views

Installing PyObjC on Enthought python and Canopy

I want to access some of the PyObjC routines using Enthought Python 7.3-2 (32 bit, OS X 10.8.3) When I run the enpkg installer from the command line, I get a fair way through the install and then: ...
1
vote
1answer
68 views

NSUserNotificationCenter.defaultUserNotificationCenter() returns None in python

I am trying to connect to the Mountain Lion notification center via python. I've installed pyobjc and am following the instructions here and here. Also see: Working with Mountain Lion's ...
2
votes
0answers
70 views

Getting USB device serial from inserted device on OSX

I am using Python 2.7 with pyobjc on Lion and NSNotification center to monitor any inserted USB volumes. This works fine. I've also got some ideas how to get a device's serial number, but these ...
1
vote
1answer
122 views

Google App Engine Can't Find PyObjC / Recognize PYTHONPATH

I upgraded to google app engine sdk 1.7.6 and was greeted with UserWarning: Detecting source code changes is not supported because your Python version does not include PyObjC ...
0
votes
1answer
39 views

PyObjC crashes by using NSTableView

I want to make NSTableView with PyObjC. So I wrote code like below. This code works, at least, I could see TableView. But when I activate tableView:objectValueForTableColumn:row:(the method is ...
0
votes
1answer
49 views

How to generate tons of PyObjC's Predefined Completions for PyDev?

Eclipse with PyDev do not show me correct code completions when I'm using PyObjC. I googled about this probrem and found the reason in this article. This article said that PyDev can't read the ...
0
votes
1answer
54 views

how to know which python version I have and how to switch between them and how to know which version has PyObjC

I have installed different versions of python during last year. when I open python interpreter, I can see which version I am currently running, But I want to know all the versions I have. I also want ...
1
vote
1answer
39 views

How to inherit NSPanel in Python/PyObjC?

I'm porting a little library of Objective-C/Cocoa into Python/PyObjC. And I'm confusing about the way to implement. Original code starts like below: @implementation HUDWindow - ...
1
vote
1answer
85 views

How to self-handling cookies in PyObjC

I'm implementing a minimal browser in PyObjC for my study. First, I googled about the way to use webkit from pyobjc and wrote code like below: #coding: utf-8 import Foundation import WebKit import ...
1
vote
1answer
62 views

Twisted Core Foundation reactor and CFNetwork in the py2app bundle

I'm making a Python/PyObjC bundle to use some Twisted features from an Objective-C application. I need to install a Core Foundation reactor in my Python App: from twisted.internet import cfreactor ...
0
votes
1answer
51 views

pyobjc webuidelegate functions not called

I have linked my WebView UIDelegate to BrowserWindowController in interface builder, which is my delegate that implements the webuidelegate functions. In my browserwindowcontroller class, I also do: ...
0
votes
1answer
73 views

How do I add two phone numbers to the addressbook using pyObjc?

I have been trying to add both a "work" and a "home" phone number to the Mac AddressBook using python and pyObjC. I believe you would need add a multivalue object but I'm not sure how to do this using ...
1
vote
1answer
55 views

Create NSDictionary from Python dictionary

How do I get an NSDictionary from a Python dictionary (so that I can call description on it) ?
0
votes
1answer
90 views

python drag drop init issues [solved]

I'm confused as to how I would implement a drag and drop ability for a window and then have the url appear in the textbox. I've updated where I am stuck at class controller(NSWindow): #File to ...
1
vote
1answer
87 views

userSpaceScaleFactor in pyobjc

I've been playing with pyobjc and seem to be getting this warning for I believe the following code. warning: Method userSpaceScaleFactor in class NSWindow is deprecated on 10.7 and later. It ...
0
votes
0answers
99 views

wxPython Mac OS X Fullscreen work around error

I was trying to get fullscreen support for a wxPython app using the code in the answer from this stackoverflow question wxPython MacOS X Lion full screen mode My Error Traceback (most recent call ...
0
votes
2answers
50 views

How to color specific part of the text with some seprator

I'm trying to color some specific part of the text, i have tried to say: if word.strip().startswith(":"): self.setAttributesForRange(NSColor.greenColor(), None, highlightOffset, len(word)) When ...
0
votes
1answer
107 views

Error installing PyObjC

Everytime I try to load PyObjC via the terminal in my Macbook Air (OS X 10.8.2) I get the following error. I am the only user on the Mac so what do I do? Davids-MacBook-Air:~ dave$ easy_install ...
1
vote
0answers
72 views

Pyobjc how to access an objective-c method with underscore prefix

Im trying to access the following Objective-C method via Pyobjc [foo _bar] Unfortunately, this seems to pose a problem for Pyobjc, since the underscores are usually replaced by colons, so if I use ...
0
votes
2answers
327 views

ImportError: No module named pyobjc

I am new to Python. I am running Mac OS X 10.8.2, Python 2.7.3, Xcode 4.5.1. I am not able to import pyobjc to python.I used easy_install pyobjc or manually downloading it from ...
0
votes
0answers
40 views

OS X Python Script - How to launch it in the background? [duplicate]

Possible Duplicate: Running Python in background on OS X I have a nice python script that I would be able to launch in the background. I want it to be working on OS X. I have no ideas how ...
1
vote
1answer
546 views

Python capture Keystrokes values in text file on OS X

I am trying to monitor keystrokes on my Macbook on order to build a statistics analyzer. But how can I isolate the chars from "event" which is more something like : NSEvent: type=KeyDown ...
1
vote
2answers
93 views

Getting pyobjc object from integer id

Is there a way to get a PyObjC proxy object for an Objective-C object, given only its id as an integer? Can it be done without an extension module? In my case, I'm trying to get a Cocoa proxy object ...
0
votes
0answers
265 views

Write a platform independent Python application with PyObjC

I'm writing a platform-independent Python application. For now it runs on Linux and OSX. However, I want to integrate platform-specific code. To be more precise I want to use the native notification ...
6
votes
1answer
2k views

Working with Mountain Lion's Notification Center using PyObjC

I'm trying to send notifications to Mountain Lion from my python script and react to clicks on the notifications. Sending the notifications works perfectly find by now. But yet I was not able to get ...
3
votes
1answer
94 views

How do you use PyObjC to turn off and on the wireless interfaces of a Mac?

How do you use PyObjC to turn off and on the wireless interfaces of a Mac? My research to date has lead me to the Cocoa Framework and PyObjC. On the Mac Developer website I found an example of a ...
1
vote
2answers
103 views

Can't call methods on objects in pyObjC

When I call setDelegate_ within my pyObjC code I get an AttributeError: 'tuple' object has no attribute 'setDelegate_'. My Code looks like this: def createMovie(self): attribs = ...
0
votes
1answer
75 views

Can't find output file with Python in Xcode

I just started learning Python about a week ago. I've made considerable progress thanks to everyone who has asked and answered questions. I came across a problem last night and after a lot of ...
0
votes
1answer
124 views

How to pass python callable as an argument of type “block” into a objc method

I have a objc method like this; @ implementation of Class1 - (void)execute:(void (^)(Class2* target, NSUInteger idx))block { ... } I want to use this execute method in python, i have build a ...
1
vote
0answers
142 views

pyobjc, out of date?

I basically want to re ask PyObjC development with Xcode 3.2 except for Xcode 4. Is pyobjc still something that can be used?
1
vote
2answers
232 views

Can import objc module in python 2.6 but NOT in python 2.7

My system: Mac OS X 10.6.8, gcc 4.2, python 2.7, xcode 3.2.3 I use python 2.7 and I got error when tried to do: import objc, it returns: ImportError: No module named objc. It looks like the objc ...
1
vote
1answer
63 views

Get underlying NSWindow from gtk.Window

The following is about gtk2 with the Quartz backend on Mac. If I have a gtk.Window (or a gdk.Window), how do I get the underlying NSWindow (preferably as a pyobjc object, or if that's not possible, ...
0
votes
1answer
119 views

Leak when running PyObjC template in XCode 4

I downloaded the only Xcode PyObjC template I could find from: http://svn.red-bean.com/pyobjc/trunk/pyobjc/pyobjc-xcode/ (the 'Cocoa-Python Core Data Document-based Application/'). When I ran it - ...
4
votes
3answers
1k views

Code completion for MacRuby/PyObjC/RubyMotion

One of Xcode's most powerful features is it's Intellisense completion, which brings up a list of potential candidates as you type the name of a Foundation/Cocoa/UIKit API. I am very interested in ...
2
votes
1answer
742 views

py2app is not copying the Python.framework to the new app while using virutalenv

environment: MacOS X 10.7.2, system installed python 2.7.1, virtualenv 1.7.2, pyobjc 2.3, py2app 0.6.4+ I have a newly created virtualenv with pyobc 2.3 and py2app installed. When I run python ...
1
vote
0answers
73 views

Query Spotlight for a range of dates via PyObjC

I'm using spotlight via pyobjc. Which is working well except for when I try to limit the time period using kMDItemContentCreationDate. I think the issue is with my time format. Any help would be ...
0
votes
1answer
224 views

How to programmatically turn off the genie effect for a window using PyObjC?

To speed up some unit tests that minimize and maximize windows, I want to turn off the genie effect for those windows on Mac OS X. I can get the wxPython window like this: import AppKit nsw = ...
-2
votes
2answers
386 views

Developing tweaks for iPhone in Windows [closed]

I have searched all night and haven't found anything that I can use on this subject. I want to develop something for my iPhone. My only requirements are having this app always run in the background, ...
2
votes
2answers
418 views

Getting the active application on OS X 10.7 using a python daemon

I'm trying to build a daemon in python and I want to get the name of the current active application. For the daemon I'm using this nice code snipped from Sander Marechal The following line works ...
1
vote
1answer
177 views

Getting a codecs OSType from a UTType format in pyobjc

I'm currently writing a script that processes batches of quicktimes, and its my first time using pyobjc (I have only written one other really simple script in actual objective-c). I need to be able to ...
2
votes
3answers
160 views

Calling a PyObjc function from Javascript

EDIT Since I posted the question I have found another working Objc example(http://mattgemmell.com/2008/02/24/skinnable-cocoa-ui-with-webkit-and-css + source: ...
24
votes
1answer
1k views

PyObjC on iPhone (iOS5) broken?

Anybody knows how to fix PyObjC on iPhone 4s running iOS 5.0.1? On my iPhone 4 with iOS 4.2.1 everything was working perfectly. On the iPhone 4s with iOS 5.0.1 (and all the (same) packages installed) ...
0
votes
1answer
141 views

“NSCFArray mutated while being enumerated” error when enumerating a copy

def leopardRemoveWireless(networkName): plistPath = '/Library/Preferences/SystemConfiguration/preferences.plist' # Sanity checks for the plist if os.path.exists(plistPath): try: pl = ...
1
vote
1answer
73 views

How to install PyObjC on Tiger?

I installed Python 2.7 from python.org on OS X Tiger. It does not come with PyObjC, so I tried running easy_install pyobjc==2.2b2 as suggested on the website. However, it fails when trying to compile ...
3
votes
1answer
76 views

Segfault in simple 2-line NSCountWindows call?

I'm trying to get window handles to currently available windows using PyObjC, with Mac OS X 10.7 and default Python 2.7. However, the following 2-liner causes Python to crash immediately. What gives? ...
1
vote
2answers
2k views

Python, Put Window on Top (Tkinter, PyObjC)

I'm using Python 2 with Tkinter and PyObjC, and then I'm using py2app. The program is working fine but the window starts as hidden whenever I open the program, so it doesn't appear until I click on ...
3
votes
1answer
380 views

PyQT/PySide vs PyObjC: worth it?

I'm thinking of creating a cross platform app, but I want it to look as natively as possible on OS X, is PyObjC a good choice? How easy is it? In contrast, how good is QT when it comes to looking ...

1 2 3 4