如何按月份而不是日期筛选现有查询集

时间:2019-10-08 09:35:14

标签: python django django-views chart.js django-queryset

我有一个查询集,其中显示了当月每一天的关注者数量。

enter image description here

观看次数:

git config --global http.https://domain.com.proxy http://proxyUsername:proxyPassword@proxy.server.com:port

数据集:

context["brandtwitterFollowerCounts"] = (
    TwitterFollowerCount.objects.filter(
        twitter_account=self.object.twitter_account, followers__gt=0
    )
    .distinct("created__date")
    .order_by("created__date")
)
context["brandTwitterFollowCreated"] = [
    i.created.strftime("%d %m") for i in context["brandtwitterFollowerCounts"]
]
context["brandTwitterFollowers"] = [
    i.followers for i in context["brandtwitterFollowerCounts"]

我现在想按月过滤。因此,由于当前有3个月(08、09、10),因此该图表应仅显示3个数据点。抱歉,如果这没有道理,我不确定最好的解释方式是什么。

0 个答案:

没有答案