Re: PExpect Cross-Platform Alternative

2012-09-08 Thread freebee007
Hello Steve, I was wondering if you had working examples of your automated tasks in python ... I am asking because I am starting out in Python, and I believe I can save my company time and headaches by automating a lot of the tasks we have. I would like to study your code and see if I can use

Re: PExpect Cross-Platform Alternative

2010-02-12 Thread corey goldberg
I was just tasked to get these scripts running in a windows environment and to my dismay very quickly realized that pexpect is not cross platform compatible. Am I stuck, or are there solutions out there? I haven't tried it, but here is another Python implementation of Expect that claims

PExpect Cross-Platform Alternative

2010-02-11 Thread Nathan Farrar
Hello Community, Recently I've been automating lots of network operations tasks via simple python scripts. Originally, I utilized paramiko but found that the module had issues working with cisco equipment. I switched to pexpect and things have worked wonderfully since (I've been running this

Re: PExpect Cross-Platform Alternative

2010-02-11 Thread Steve Holden
Nathan Farrar wrote: Hello Community, Recently I've been automating lots of network operations tasks via simple python scripts. Originally, I utilized paramiko but found that the module had issues working with cisco equipment. I switched to pexpect and things have worked wonderfully since