Re: [Pythonmac-SIG] how to retrieve unique serial number from usb storage device

2011-11-26 Thread David Hughes
On 25/11/2011 22:20, Brendan Simon (eTRIX) wrote: On 26/11/11 12:12 AM, David Hughes wrote: On 25/11/2011 11:22, Brendan Simon (eTRIX) wrote: Anyone know how to retrieve the unique serial number of a usb storage device using python on OS X ?? How about using system_profiler SPUSBDataType I

Re: [Pythonmac-SIG] how to retrieve unique serial number from usb storage device

2011-11-25 Thread David Hughes
On 25/11/2011 11:22, Brendan Simon (eTRIX) wrote: Anyone know how to retrieve the unique serial number of a usb storage device using python on OS X ?? How about using system_profiler SPUSBDataType -- Regards David Hughes Forestfield Software

Re: [Pythonmac-SIG] py2app traceback with wxPython 2.8.9.2

2009-04-03 Thread David Hughes
Are you using the latest py2app and macholib? $ easy_install macholib==dev Updating macholib has fixed the problem for me. Thanks, Chris. -- David Hughes Forestfield Software ___ Pythonmac-SIG maillist - Pythonmac-SIG@python.org http://mail.python.org

Re: [Pythonmac-SIG] py2app traceback with wxPython 2.8.9.2

2009-04-02 Thread David Hughes
PM.so* and -apart from me using a slightly earlier version of py2app than Paul - it produces the self same error word for word (see attachments). Could it be *_renderPM.so* itself that is causing your error Paul? --- Regards, David Hughes Forestfield Software Traceback (most recent cal

Re: [Pythonmac-SIG] Py2app and shared libraries under Leopard

2007-12-18 Thread David Hughes
David Hughes wrote: .Built using Distutils under Leopard, the library [/Reportlab's _Render.pm]/ is working exactly as intended/expected. However, comparing the .so file produced, it is under half the size of the same built using Tiger [/and it generates an error when it is include

[Pythonmac-SIG] Py2app and shared libraries under Leopard

2007-12-11 Thread David Hughes
e the libraries with their Tiger-built counterparts, the application builds OK (under Leopard). I installed Xcode on Leopard using default settings. Any ideas please? Regards, David Hughes Forestfield Software $ cd /users/pydevsrc/dp6mac_v630 $ ./build_all running py2app creating /Users/pyd

Re: [Pythonmac-SIG] Connecting to Windows shares

2005-09-22 Thread David Hughes
> *From:* [EMAIL PROTECTED] (David Hughes) > *To:* pythonmac-sig@python.org > *Date:* Thu, 22 Sep 2005 11:12 +0100 (BST) > > > *From:* Simon Brunning <[EMAIL PROTECTED]> > > *To:* pythonmac-sig@python.org > > *Date:* Thu, 22 Sep 2005 10:24:34 +0100 > >

Re: [Pythonmac-SIG] Connecting to Windows shares

2005-09-22 Thread David Hughes
n. Here, it appears as a directory of the form ";". A problem arises if you attach more than one partition, as they are then given suffixes '-1' etc that depend on the order you attached them. Regards, David Hughes Forestfield Software __

Re: [Pythonmac-SIG] Getting Sharing name of the Macintosh via Python?

2005-08-04 Thread David Hughes
if key == ilist[0].replace(' ','').lower(): info_dict[key] = ilist[1] return info_dict print repr(get_system_info()) Regards, David Hughes Forestfield Software www.foresoft.co.uk ___ Pythonmac-SIG maillist - Pythonmac-SIG@python.org http://mail.python.org/mailman/listinfo/pythonmac-sig

[Pythonmac-SIG] Building a multi-component application with py2app

2005-07-12 Thread David Hughes
;app' parameter in the call to setup can be a list of .pyw(?) files but when I try something similar, I get "error: Multiple targets not currently supported". Is it possible to achieve this, or maybe to 'merge' a number of standalone apps? Reg