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
My apologies if this is the wrong place to file an issue. I use BigQuery to grab statistics, and one thing I noticed is Windows 11 never appears in the data. This can be seen with this query as en example:
SELECT REGEXP_EXTRACT(details.python, r"[0-9]+\.[0-9]+") AS python_version,
file.versionAS file_version,
details.distro.name as distro_name,
details.distro.version as distro_version,
details.system.name as system_name,
details.system.release as system_release,
timestampas time_stamp,
country_code as countrycode,
COUNT(*) AS num_downloads,
FROM`bigquery-public-data.pypi.file_downloads`WHEREfile.project="pip"anddetails.system.name='Windows'anddetails.system.release='11'ANDDATE(timestamp)
BETWEEN DATE_TRUNC(DATE_SUB(CURRENT_DATE(), INTERVAL 1 DAY), DAY)
ANDCURRENT_DATE()
GROUP BY`python_version`, `countrycode`, `file_version`, `distro_name`, `distro_version`, `system_name`, `system_release`, `time_stamp`ORDER BY`num_downloads`DESC
This happens with any project. Is it something that I'm doing wrong?
The text was updated successfully, but these errors were encountered:
Hello!
My apologies if this is the wrong place to file an issue. I use BigQuery to grab statistics, and one thing I noticed is Windows 11 never appears in the data. This can be seen with this query as en example:
This happens with any project. Is it something that I'm doing wrong?
The text was updated successfully, but these errors were encountered: