gpt4 book ai didi

google-bigquery - 来自 github 的订阅者名称

转载 作者:行者123 更新时间:2023-12-01 23:46:34 24 4
gpt4 key购买 nike

我正在试验大查询。到目前为止,我已经能够获得观看过存储库的人数。是否可以获取已观看存储库的订阅者的用户名?

谢谢

最佳答案

您可以使用事件获取存储库的参与者登录名。从 2015 年 1 月 1 日开始的事件文件是从 Events API 记录的。

SELECT actor.login FROM (
TABLE_DATE_RANGE
( [githubarchive:day.events_]
, TIMESTAMP('2015-01-01')
, TIMESTAMP('2015-03-01') )
)
where type='WatchEvent' and repo.name = 'ptrofimov/beanstalk_console'

对于 2014 年的事件

SELECT actor FROM (
TABLE_QUERY([githubarchive:month],
'REGEXP_MATCH(table_id, r"^20140\d")'
))
WHERE type = 'WatchEvent' and repository_name='beanstalk_console' and repository_owner='ptrofimov'

关于google-bigquery - 来自 github 的订阅者名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28860719/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com