Re: [Pharo-users] invoking python from pharo

2014-10-03 Thread HernĂ¡n Morales Durand
I would use only the Python bridge but not the Blender features (Cube, etc). Will be the Python bridge and parser contained in its own package? I have started from MinGW and evaluated Ephestos sendMessage: 'print(hello world)'. Ephestos sendMessage: 'x = 3'. Ephestos getValue: 'x'. $ python

Re: [Pharo-users] invoking python from pharo

2014-10-03 Thread kilon alios
Everything you done is correct. all this information you see in your terminal is debugging of error reporting. Python errors are send back to Pharo and trigger pharo debugger. So yes everything you see is to be expected. I use it to check that everything goes as planned with python execution. if

Re: [Pharo-users] invoking python from pharo

2014-09-26 Thread kilon alios
...@gmail.com *Para: *Any question about pharo is welcome pharo-users@lists.pharo.org *Enviados: *Jueves, 25 de Septiembre 2014 16:01:08 *Asunto: *Re: [Pharo-users] invoking python from pharo Its far from excellent. Its not as tested as I want it to be, and the code could be much better

Re: [Pharo-users] invoking python from pharo

2014-09-26 Thread kilon alios
well in my case that wont be necessary since Ephestos has its own book and I will keep documenting the more features I add. I am also thinking of dropping external documentation and bringing it inside the image. If PFTE is near completion then most likely will be a next book but I decided to

[Pharo-users] invoking python from pharo

2014-09-25 Thread Pablo R. Digonzelli
Hi all , I need to invoke python rutines from Pharo. I need some orientation about the best way to do it. TIA Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonze...@softsargentina.com pdigonze...@gmail.com Cel: 5493815982714

Re: [Pharo-users] invoking python from pharo

2014-09-25 Thread Ben Coman
Pablo R. Digonzelli wrote: Hi all , I need to invoke python rutines from Pharo. I need some orientation about the best way to do it. TIA Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonze...@softsargentina.com

Re: [Pharo-users] invoking python from pharo

2014-09-25 Thread kilon alios
Hi there, I promised to do this a long time ago, but since you asked it I done it now. So as Ben said I am the author of Ephestos, a communication bridge between Blender and Pharo . To go directly to the how to . Ephestos is basically a socket bridge that send via sockets strings from pharo to

Re: [Pharo-users] invoking python from pharo

2014-09-25 Thread kilon alios
a minor correction to the previous email its python3 pyatlas.py and not python3 pyAtlas.py also I forgot to make clear that it works for pyhton 2.7 and python 3. On Thu, Sep 25, 2014 at 8:11 PM, kilon alios kilon.al...@gmail.com wrote: Hi there, I promised to do this a long time ago, but

Re: [Pharo-users] invoking python from pharo

2014-09-25 Thread Pablo R. Digonzelli
: pdigonze...@softsargentina.com pdigonze...@gmail.com Cel: 5493815982714 De: kilon alios kilon.al...@gmail.com Para: Any question about pharo is welcome pharo-users@lists.pharo.org Enviados: Jueves, 25 de Septiembre 2014 14:13:34 Asunto: Re: [Pharo-users] invoking python from pharo a minor

Re: [Pharo-users] invoking python from pharo

2014-09-25 Thread kilon alios
de Septiembre 2014 14:13:34 *Asunto: *Re: [Pharo-users] invoking python from pharo a minor correction to the previous email its python3 pyatlas.py and not python3 pyAtlas.py also I forgot to make clear that it works for pyhton 2.7 and python 3. On Thu, Sep 25, 2014 at 8:11 PM, kilon alios

Re: [Pharo-users] invoking python from pharo

2014-09-25 Thread Pablo R. Digonzelli
-users@lists.pharo.org Enviados: Jueves, 25 de Septiembre 2014 16:01:08 Asunto: Re: [Pharo-users] invoking python from pharo Its far from excellent. Its not as tested as I want it to be, and the code could be much better but it works and makes interfacing with python code very easy. Its also