当前位置: 首页>>代码示例>>Python>>正文


Python App.start方法代码示例

本文整理汇总了Python中app.App.start方法的典型用法代码示例。如果您正苦于以下问题:Python App.start方法的具体用法?Python App.start怎么用?Python App.start使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在app.App的用法示例。


在下文中一共展示了App.start方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: App

# 需要导入模块: from app import App [as 别名]
# 或者: from app.App import start [as 别名]
#!/usr/bin/python

from app import App

app = App()

app.start()
开发者ID:Kimbsy,项目名称:feed-me,代码行数:9,代码来源:feed-me.py

示例2: input

# 需要导入模块: from app import App [as 别名]
# 或者: from app.App import start [as 别名]
user = input("Username [%s]: " % getpass.getuser())
if not user:
    user = getpass.getuser()

#get password
password = getpass.getpass()
#creates a connection string
connection_string = ''+user+'/'+password+'@gwynne.cs.ualberta.ca:1521/CRS'

#attempts to connect
try:
    connection = cx_Oracle.connect(connection_string)
    #initalize App
    app = App()
    #Start the application and pass in connection
    app.start(connection)
    #Any time the app exists, the connection automatically closes
    connection.close()
except cx_Oracle.DatabaseError as exc:
    #Anytime there's an error in App it exists and enter here.
    error, = exc.args
    if error.code == 955:
        print("Table already exists")
    elif error.code == 1017:
        print("Invalid Credentials")
    else:
        print(sys.stderr, "Oracle code: ", error.code)
        print(sys.stderr, "Oracle message: ", error.message)


开发者ID:b26,项目名称:Airline-Bookings-CLI,代码行数:30,代码来源:main.py

示例3: _parse_args

# 需要导入模块: from app import App [as 别名]
# 或者: from app.App import start [as 别名]
import argparse
from app import App


def _parse_args(args=None):
    """Parse command line arguments, provide usage help to users."""

    parser = argparse.ArgumentParser(
        description="Monitors websites' status"
    )

    parser.add_argument(
        "--poll_seconds",
        required=False,
        help="Override website status polling interval globally.",
        type=int
    )

    return parser.parse_args(args)


if __name__ == "__main__":
    args = _parse_args()
    app = App()
    app.start(args)
开发者ID:lietu,项目名称:pywebstatmon,代码行数:27,代码来源:pywebstatmon.py

示例4: main

# 需要导入模块: from app import App [as 别名]
# 或者: from app.App import start [as 别名]
def main():
    app = App()
    app.start()
开发者ID:SCOTPAUL,项目名称:shift-calc,代码行数:5,代码来源:main.py


注:本文中的app.App.start方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。