[Pythonmac-SIG] Virtual Serial/USB Port

2009-04-11 Thread Stuart Davenport
Hi all, I am trying to write a python program to "emulate" a USB GPS device on my Mac, is there anyway this is possible via Python? Basically I have something running over the network to tell my Mac its GPS location. The application I have running is listening to the data from the network and then

[Pythonmac-SIG] Problem with py2app and pygame on OS X Leopard (10.5.6)

2009-04-11 Thread Michael Sanders
I can't seem to get py2app to work with pygame. I'm testing by just trying to compile a simple hello world app: . > '''A simple app that displays "Hello, world!" the title bar of its > window.''' import pygame > quit = False pygame.init() screen = pygame.display.set_mode((640, 480)) pygame.

Re: [Pythonmac-SIG] Virtual Serial/USB Port

2009-04-11 Thread Kevin Horton
On 11 Apr 2009, at 13:38, Stuart Davenport wrote: I am trying to write a python program to "emulate" a USB GPS device on my Mac, is there anyway this is possible via Python? Basically I have something running over the network to tell my Mac its GPS location. The application I have running i