本文整理汇总了Python中boris.reporting.core.make_key函数的典型用法代码示例。如果您正苦于以下问题:Python make_key函数的具体用法?Python make_key怎么用?Python make_key使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了make_key函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_data
def get_data(self):
return [
(aggregation.title, [
aggregation.get_val(make_key((('town', town.pk),))) for town in self.towns
] + [aggregation.get_val(make_key((('grouping_constant', 1),)))]
) for aggregation in self.aggregations
]
开发者ID:jinkt,项目名称:BorIS,代码行数:7,代码来源:monthly_stats.py示例2: get_data
def get_data(self):
return [
(aggregation.title, [
aggregation.get_val(
make_key((('year', self.year), ('town', town.pk)))
) for town in self.columns
] + [aggregation.get_val(make_key((('year', self.year),)))]) for aggregation in self.aggregations
]
开发者ID:fragaria,项目名称:BorIS,代码行数:8,代码来源:yearly_stats.py示例3: get_sum
def get_sum(self, aggregation, month):
return aggregation.get_val(make_key((('month', month),)))
开发者ID:jinkt,项目名称:BorIS,代码行数:2,代码来源:monthly_stats.py示例4: get_sum
def get_sum(self, aggregation):
return aggregation.get_val(make_key((('year', self.year),)))
开发者ID:fragaria,项目名称:BorIS,代码行数:2,代码来源:yearly_stats.py示例5: test_all_approaches
def test_all_approaches(self):
aggregation = AllApproaches(self.report)
key = make_key({'month': 11, 'town': self.town1.pk})
tools.assert_equals(aggregation.get_val(key), 5)
开发者ID:fragaria,项目名称:BorIS,代码行数:4,代码来源:test_reports.py本文标签属性:
示例:示例的拼音
代码:代码大全可复制
Python:python菜鸟教程