Re: How to use variables across modules

2013-11-02 Thread Steven D'Aprano
On Sat, 02 Nov 2013 14:33:54 -0700, juel4700 wrote: > Im a newbee at python, and im trying to figure out how to use variables > and setups across modules. [...] > What is best practice for working across modules. Depends on whether you are working on a framework, a library or an application. Fr

Re: How to use variables across modules

2013-11-02 Thread Mark Lawrence
On 02/11/2013 21:33, juel4...@gmail.com wrote: Im a newbee at python, and im trying to figure out how to use variables and setups across modules. Am I right when i think its smart to keep seperate functions of a program in seperate modules? If your code base gets too large to handle in one m

Re: How to use variables across modules

2013-11-02 Thread Chris Angelico
On Sun, Nov 3, 2013 at 8:33 AM, wrote: > I have a main program module called main.py and in that main.py i have this: > > # Sets GPIO's to HIGH = Relays OFF > try: > import RPi.GPIO as GPIO > except RuntimeError: > Print("Error importing RPi.GPIO!!") > > GPIO.setmo