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


Python Application.description方法代码示例

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


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

示例1: _get_application_from_row

# 需要导入模块: from application import Application [as 别名]
# 或者: from application.Application import description [as 别名]
    def _get_application_from_row(self, row):

        if not row:
            return None

        application = Application()

        application.vendor_id = row[ApplicationColumn.VendorId]
        application.vendor_name = row[ApplicationColumn.VendorName]
        application.name = row[ApplicationColumn.Name]
        application.description = row[ApplicationColumn.Description]
        application.version = row[ApplicationColumn.Version]
        application.urls = self._string_to_urls(row[ApplicationColumn.Urls])
        application.file_size = row[ApplicationColumn.FileSize]
        application.support_url = row[ApplicationColumn.SupportURL]

        application.vendor_severity = row[ApplicationColumn.VendorSeverity]
        application.toppatch_severity = row[ApplicationColumn.TopPatchSeverity]

        application.install_date = row[ApplicationColumn.InstallDate]
        application.release_date = row[ApplicationColumn.ReleaseDate]

        application.installed = bool(row[ApplicationColumn.Installed])

        return application
开发者ID:,项目名称:,代码行数:27,代码来源:

示例2: application

# 需要导入模块: from application import Application [as 别名]
# 或者: from application.Application import description [as 别名]
res1 = db.execute_commit("INSERT INTO application (name, description) VALUES ('test1', 'coolbeanz')")
pp.pprint(res1)
res2 = db.execute_commit("INSERT INTO application (name, description) VALUES ('test2', 'cooliojeans')")
pp.pprint(res2)
#res3 = db.execute_select("SELECT * FROM test WHERE id = 1")
#pp.pprint(res3)
#res4 = db.execute_select("SELECT * FROM test WHERE id = 2")
#pp.pprint(res4)
#res4 = db.execute_select("SELECT * FROM test WHERE id = 2")
#pp.pprint(res4)



app = Application()
app.name = 'hi'
app.description = 'lol!'
app.links = 'cool!'

app.save()
print('Saved SERIAL id', app.id)

newapp = Application.load(app.id)
print('Loaded id', newapp.id, newapp)
newapp.name = 'yo'
newapp.save()

newerapp = Application.load(app.id)
print('Loaded id again', newapp.id, newerapp)
print(newerapp.name)

db.close()
开发者ID:cfebs,项目名称:keybinder,代码行数:33,代码来源:test.py


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