我有一个查询集,其中显示了当月每一天的关注者数量。
观看次数:
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个数据点。抱歉,如果这没有道理,我不确定最好的解释方式是什么。