releases
3 rows where repo = 479175467
This data as json, CSV (advanced)
Suggested facets: created_at (date), published_at (date)
id ▼ | html_url | author | node_id | tag_name | target_commitish | name | draft | prerelease | created_at | published_at | body | repo | reactions | mentions_count |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
63928553 | https://github.com/simonw/pypi-to-sqlite/releases/tag/0.1 | simonw 9599 | RE_kwDOHI-jK84Dz3jp | 0.1 | main | 0.1 | 0 | 0 | 2022-04-07T23:40:43Z | 2022-04-07T23:43:55Z | - Initial release, with `pypi-to-sqlite pypi.db datasette sqlite-utils` command. [#1](https://github.com/simonw/pypi-to-sqlite/issues/1) | pypi-to-sqlite 479175467 | ||
63980827 | https://github.com/simonw/pypi-to-sqlite/releases/tag/0.2 | simonw 9599 | RE_kwDOHI-jK84D0EUb | 0.2 | main | 0.2 | 0 | 0 | 2022-04-08T14:47:07Z | 2022-04-08T14:48:21Z | - New `--prefix prefix` option for creating tables with a prefix - so `pypi-to-sqlite data.db datasette --prefix pypi_` will create tables called `pypi_packages`, `pypi_versions` and `pypi_releases`. [#6](https://github.com/simonw/pypi-to-sqlite/issues/6) | pypi-to-sqlite 479175467 | ||
63983006 | https://github.com/simonw/pypi-to-sqlite/releases/tag/0.2.2 | simonw 9599 | RE_kwDOHI-jK84D0E2e | 0.2.2 | main | 0.2.2 | 0 | 0 | 2022-04-08T15:11:36Z | 2022-04-08T15:12:05Z | - Fixed a bug where the command could not be safely run more than once against the same database file. [#7](https://github.com/simonw/pypi-to-sqlite/issues/7) | pypi-to-sqlite 479175467 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [releases] ( [html_url] TEXT, [id] INTEGER PRIMARY KEY, [author] INTEGER REFERENCES [users]([id]), [node_id] TEXT, [tag_name] TEXT, [target_commitish] TEXT, [name] TEXT, [draft] INTEGER, [prerelease] INTEGER, [created_at] TEXT, [published_at] TEXT, [body] TEXT, [repo] INTEGER REFERENCES [repos]([id]) , [reactions] TEXT, [mentions_count] INTEGER); CREATE INDEX [idx_releases_repo] ON [releases] ([repo]); CREATE INDEX [idx_releases_author] ON [releases] ([author]);