Introspect imports from module

2012-06-21 Thread Bastian Ballmann
the import of module.to.inspect? Thanks have a nice day! Basti -- Bastian Ballmann / Web Developer Notch Interactive GmbH / Badenerstrasse 571 / 8048 Zürich Phone Phone +41 44 297 17 17 / www.notch-interactive.com CHECK OUR LATEST WORK: http://www.notch-interactive.com/projekte/ -- http

Re: Introspect imports from module

2012-06-21 Thread Bastian Ballmann
Hi, that's really great stuff! I love it! Thx :) Am Thu, 21 Jun 2012 13:00:36 +0200 schrieb Christian Heimes li...@cheimes.de: Am 21.06.2012 10:03, schrieb Bastian Ballmann: Any suggestions how I could just get the import of module.to.inspect? Thanks have a nice day! You could try

Re: Python and Bloomberg

2012-04-04 Thread Bastian Ballmann
to communicate with it. See http://www.ibm.com/developerworks/library/ws-pyth5/ HTH Greets Basti -- Bastian Ballmann / Web Developer Notch Interactive GmbH / Badenerstrasse 571 / 8048 Zürich Phone +41 43 818 20 91 / www.notch-interactive.com -- http://mail.python.org/mailman/listinfo/python-list

Re: pymacs?

2011-11-17 Thread Bastian Ballmann
use python-mode.el but the standard python.el, all my attempts to make this work on my normal configuration failed. Did anyone got both correctly working? Thanks.. -- Bastian Ballmann / Web Developer Notch Interactive GmbH / Badenerstrasse 571 / 8048 Zürich Phone +41 43 818 20 91 / www.notch

Re: Python Bluetooth

2011-06-26 Thread Bastian Ballmann
Hi, you can have a look at http://lightblue.sourceforge.net/ but it also seems to be unactive since end of 2009. If you really need a lib thats still under active development and you dont want to switch to C maybe http://sourceforge.net/projects/javabluetooth/ together with Jython is an option?

Re: Python Bluetooth

2011-06-26 Thread Bastian Ballmann
Hi, Am Sun, 26 Jun 2011 13:37:50 -0400 schrieb Terry Reedy tjre...@udel.edu: Were these libraries abandoned incomplete or just finished? Has the bluetooth spec changed since then? They're definetly incomplete, but i would say the most important / commonly used apis are implemented. The

Emacs Python indention

2011-06-11 Thread Bastian Ballmann
Hi Emacs / Python coders, moving a region of python code for more than one indention in Emacs is quite annoying, cause the python-shift-left and -right functions always loose the mark and one has to reactivate it with \C-x \C-x or guess how many indentions one want to make and do a \C-u nr \C-c

Re: Parsing a graph image

2011-05-16 Thread Bastian Ballmann
schrieb Robert Kern robert.k...@gmail.com: On 5/13/11 7:24 AM, Bastian Ballmann wrote: Hi, Am Fri, 13 May 2011 14:01:48 +0200 schrieb Ulrich Eckhardtulrich.eckha...@dominolaser.com: I'm not sure I understand 100% what you want. If you want to extract (parse) the data that is contained

Parsing a graph image

2011-05-13 Thread Bastian Ballmann
Hi python lovers out there, I am searching for a library to parse data from a graph in an image file something like http://pytseries.sourceforge.net/_images/yahoo.png Any suggestions, hints, links? TIA have a nice day! :) Basti signature.asc Description: PGP signature --

Re: Parsing a graph image

2011-05-13 Thread Bastian Ballmann
Hi, Am Fri, 13 May 2011 14:01:48 +0200 schrieb Ulrich Eckhardt ulrich.eckha...@dominolaser.com: I'm not sure I understand 100% what you want. If you want to extract (parse) the data that is contained in an image file, I have no clue how to do that. Yes, I want to extract the data that is

Re: Pickling over a socket

2011-04-20 Thread Bastian Ballmann
Am Tue, 19 Apr 2011 19:28:50 -0700 (PDT) schrieb Jean-Paul Calderone calderone.jeanp...@gmail.com: It is completely insecure. Do not use pickle and sockets together. Yes pickle is like eval, but that doesnt mean that one should never ever use it over a socket connection. What about ssl

Re: Pickling over a socket

2011-04-20 Thread Bastian Ballmann
Am Wed, 20 Apr 2011 16:59:19 +1000 schrieb Chris Angelico ros...@gmail.com: Even public/private key systems won't work here; someone could get hold of your client and its private key, and poof. Oh yeah but than all kinds of trusted computing wont work. Sure one can see it on the net these

[OT] Re: Pickling over a socket

2011-04-20 Thread Bastian Ballmann
Am Wed, 20 Apr 2011 10:25:14 +0200 schrieb Thomas Rachel nutznetz-0c1b6768-bfa9-48d5-a470-7603bd3aa...@spamschutz.glglgl.de: It depends on what the program does with the input. If it treats it appropriately, nothing can happen. Yes, but the question seems to be what is appropriately. What

Re: Pickling over a socket

2011-04-20 Thread Bastian Ballmann
Am Wed, 20 Apr 2011 19:26:44 +1000 schrieb Chris Angelico ros...@gmail.com: Yes, but the other half of the issue is that you have to treat anything that comes over the network as user input, even if you think it's from your own program that you control. Sure. Buffer overruns can happen in

Re: Python IDE/text-editor

2011-04-17 Thread Bastian Ballmann
Am Sat, 16 Apr 2011 22:22:19 -0500 schrieb John Bokma j...@castleamber.com: Yeah, if you bring it down to open a file, save a file, and move the cursor around, sure you can do that in a day or two (two since you have to get used to the weird key bindings). Sorry but learning the basic stuff