Re: Re-using TCL code from python over network

2016-03-29 Thread blacksqr
On Tuesday, March 29, 2016 at 5:24:37 AM UTC-5, Karim wrote: > But it was a good experience to learn TCL (weaknesses). > > Karim I would be interested to know what you consider to be the top weaknesses of Tcl compared to Python which prompted your decision to switch. --

Re: Re-using TCL code from python over network

2016-03-29 Thread sharad1087
Thanks Christian. You are right. Our TCL is 32 bit and runs on FreeBSD. We are planning to use Python (64 bit) on CentOS. -- https://mail.python.org/mailman/listinfo/python-list

Re: Re-using TCL code from python over network

2016-03-29 Thread Christian Gollwitzer
Am 29.03.16 um 09:40 schrieb Karim: You can find below a partial example where I launch a python process from a tcl program to get data from python which reads a database. You just have to get and compile tclpython (google is your best friend) which is a C interface bridging python and tcl and

Re: Re-using TCL code from python over network

2016-03-29 Thread Karim
On 29/03/2016 10:29, Sharad Singla wrote: Thanks. This is more of invoking python code from TCL. I am looking for the other way round. Curious, did you rewrite all your TCL code in python? Regards Sharad On Mar 29, 2016 1:10 PM, "Karim" >

Re: Re-using TCL code from python over network

2016-03-29 Thread Sharad Singla
Thanks. This is more of invoking python code from TCL. I am looking for the other way round. Curious, did you rewrite all your TCL code in python? Regards Sharad On Mar 29, 2016 1:10 PM, "Karim" wrote: > > > On 29/03/2016 07:20, sharad1...@gmail.com wrote: > >> Hi >> >>

Re: Re-using TCL code from python over network

2016-03-29 Thread sharad1087
@Christian: Thanks! @Karim: Thanks. My requirement is to run tcl code from python. tclpython allows executing python code from tcl. "but I now I migrated all the TCL code to python one indeed" - did you re-write the TCL code in Python? -- https://mail.python.org/mailman/listinfo/python-list

Re: Re-using TCL code from python over network

2016-03-29 Thread Karim
On 29/03/2016 07:20, sharad1...@gmail.com wrote: Hi We've a test automation framework written in TCL (including the automated test cases). We are evaluating shifting to Python and have a test framework in Python (including the automated test cases). Python provides a lot more 3rd party

Re: Re-using TCL code from python over network

2016-03-29 Thread Christian Gollwitzer
Am 29.03.16 um 07:20 schrieb sharad1...@gmail.com: We've a test automation framework written in TCL (including the automated test cases). We are evaluating shifting to Python and have a test framework in Python (including the automated test cases). Python provides a lot more 3rd party libraries

Re-using TCL code from python over network

2016-03-28 Thread sharad1087
Hi We've a test automation framework written in TCL (including the automated test cases). We are evaluating shifting to Python and have a test framework in Python (including the automated test cases). Python provides a lot more 3rd party libraries that we'd like to make use of. We use a