GitHub user Xuanwo added a comment to the discussion: Add python39/310 support 
back

Here are some data from the `bigquery-public-data.pypi.file_downloads`:

```sql
SELECT
  REGEXP_EXTRACT(details.python, r'^([0-9]+\.[0-9]+)') as python_version,
  COUNT(*) as download_count
FROM `bigquery-public-data.pypi.file_downloads`
WHERE
  file.project = 'opendal'
  AND timestamp >= TIMESTAMP(DATE_SUB(CURRENT_DATE(), INTERVAL 6 MONTH))
  AND details.python IS NOT NULL
GROUP BY python_version
ORDER BY download_count DESC;
```

![image](https://github.com/user-attachments/assets/de7225d8-362f-420c-b54a-f0acd2e9b20b)


GitHub link: 
https://github.com/apache/opendal/discussions/5335#discussioncomment-11287106

----
This is an automatically sent email for [email protected].
To unsubscribe, please send an email to: [email protected]

Reply via email to