Re: [Tutor] Activating virtualenv in Windows

2014-01-06 Thread Srinivas Nyayapati
Hello > On Jan 6, 2014, at 6:08 AM, Rafael Knuth wrote: > > Hej guys, > > does anyone know how to activate virtualenv in Windows? > In Terminal it's: > > source bin/activate Just run the script directly from the prompt - C://bin/activate HTH -Srini

Re: [Tutor] saving Tkinter canvas as jpg

2013-12-08 Thread Srinivas Nyayapati
>From what I've seen online, this isn't available for mac...of course everything about this module is several years old, and it hasn't been updated with a new version in a few years, so I think there must be something better than it. > You could give Pillow a try. It is a fork of the PIL library

Re: [Tutor] simplegui problem

2013-11-01 Thread Srinivas Nyayapati
On Fri, Nov 1, 2013 at 7:27 PM, olatunde Adebayo wrote: > Hi everybody. > I am trying to run a program that has been successfully run on > codeskulptor using window power shell: > The problem is "import simplegui", > How can I access"import simplegui" using powershell > > SimpleGui is a python mo

[Tutor] Best way to setup Unit Testing?

2013-07-10 Thread Srinivas Nyayapati
I am tryng to figure out the best way to do Unit Testing for all my projects going forward. I am using the unittest framework. For execution I am executing the test cases by either directly using python or by using the nose test runner. I found the following 3 types of how this can be setup. Type