You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was using the-psf rather than the public bigquery dataset and I have noticed that there has been no data on it since Nov 22.
Here is the query I've been using.
COUNT(*) AS num_downloads,
DATE_TRUNC(DATE(timestamp), DAY) AS `day`
FROM `the-psf.pypi.file_downloads`
WHERE
DATE(timestamp)
BETWEEN DATE_SUB(CURRENT_DATE(), INTERVAL 40 DAY)
AND CURRENT_DATE()
GROUP BY `day`
ORDER BY `day` DESC
LIMIT 1
I can switch to the public dataset but I thought I should report it anyways.
The text was updated successfully, but these errors were encountered:
Thanks for the report. The thepsf dataset is deprecated and will no longer receive data. The bigquery-public-data is a drop-in replacement, please use that going forward.
I was using
the-psf
rather than the public bigquery dataset and I have noticed that there has been no data on it since Nov 22.Here is the query I've been using.
I can switch to the public dataset but I thought I should report it anyways.
The text was updated successfully, but these errors were encountered: