本文整理汇总了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
示例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()