Example:
(Using django as an example)
SELECT
COUNT(*) AS downloads,
FORMAT_TIMESTAMP("%Y-%m-%d", timestamp) AS date_str
FROM
`the-psf.pypi.downloads*`
WHERE
_TABLE_SUFFIX BETWEEN '20170130' AND '20180704' AND
file.project = 'django'
GROUP BY
date_str
ORDER BY
date_str