从终端运行python函数

2024-10-01 15:49:24 发布

您现在位置:Python中文网/ 问答频道 /正文

我有一个很好的python类,我需要实例化这个类,然后我需要在这个类中运行一个特定的函数。基本上,我们使用PHP这样的语言来运行shell命令。这是我的python类(照明.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 is not defined”?不知道我还需要做什么?在

^{pr2}$

Tags: importselftimeisondefgroupwebsite
2条回答

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

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

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

试验样品:

└> cat hello.py
class Hello:
    def hello(self):
        print "hello"

└> python -c 'from hello import Hello; h= Hello(); h.hello()'
hello

└> python -c 'import hello; h= hello.Hello(); h.hello()'
hello

您可以选择import mypackage.mymodulefrom mypackage.mymodule import myclass

^{pr2}$

相关问题 更多 >

    热门问题