从终端运行python函数

时间:2015-05-22 22:11:41

标签: python macos bash terminal

我有一个很好的python类,我需要实例化该类,然后我需要在该类中运行一个特定的函数。基本上,我们使用像PHP这样的语言来运行shell命令。这是我的python类(lighting.py):

#!/usr/bin/python

from phue import Bridge
from pprint import pprint
import time
import logging;logging.basicConfig()

class OfficeLights(object):

    #Basically Python's constructor
    def __init__(self):
        self.ip = 'xx.xx.xx.xx'
        self.username = 'xxxxx'
        self.lightInterface = Bridge(self.ip, self.username) 
        self.lightInterface.connect()
        self.lightInterface.get_api()
        self.lightInterface.create_group('Office', [1,2,3,4])
        self.cycles = 15 
        self.period = 1 
        self.evvDev = 'http://dev.google.com'
        self.evvStage = 'http://staging.google.com'

    #List all the lights available to play with
    def listLights(self):
        lights = self.lightInterface.lights

        for l in lights:
            print(l.name)

    #Generic strobe function
    def strobe(self, hue, cycles):
        for x in range(0, cycles):
            self.lightInterface.set_group(1, 'on', True)
            self.lightInterface.set_group(1, 'hue', hue)
            self.lightInterface.set_group(1, 'bri', 254)
            time.sleep(self.period)
            self.lightInterface.set_group(1, 'on', False)
            time.sleep(self.period)

    #Flashing funtions, to be executed on actions
    def flashRed(self):
        self.strobe(0, self.cycles)

    def flashGreen(self):
        self.strobe(25500, self.cycles)

    def flashPurple(self):
        self.strobe(46920, self.cycles)

    def flashPink(self):
        self.strobe(56100, self.cycles)

    #Check if a website is up/down based on https status headers
    def is_website_online(self, host):
        import httplib2
        h = httplib2.Http()
        resp = h.request(host, 'HEAD')
        return int(resp[0]['status']) < 400

    #Check EVV sites for up/down
    def check_evv_sites(self):
        if(self.is_website_online(self.evvDev) is not True):
            self.flashRed()
        if(self.is_website_online(self.evvStage) is not True):
            self.flashRed()
        else:
            self.flashGreen()

我正在尝试从终端运行命令,但我只得到“OfficeLights未定义”的错误&#39;?不确定我还需要做什么?

python -c 'import lighting; lights = OfficeLights(); lights.flashPurple();'

2 个答案:

答案 0 :(得分:2)

测试样本:

import mypackage.mymodule

您可以选择from mypackage.mymodule import myclasspython -c 'from lighting import OfficeLights; lights = OfficeLights(); lights.flashPurple();'

tree

答案 1 :(得分:0)

确保引用导入的模块或使用上一个答案中列出的from方法。

python -c 'import lighting; lights = lighting.OfficeLights(); lights.flashPurple();'

此外,模块需要位于项目路径中,或者需要从包含模块的同一目录发出命令。