home / content

releases

2 rows where repo = 245670670

✎ View and edit SQL

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
24317927 https://github.com/simonw/fec-to-sqlite/releases/tag/0.1 simonw 9599 MDc6UmVsZWFzZTI0MzE3OTI3 0.1 master 0.1 0 0 2020-03-07T16:58:00Z 2020-03-07T18:22:03Z First working version fec-to-sqlite 245670670    
24317932 https://github.com/simonw/fec-to-sqlite/releases/tag/0.2 simonw 9599 MDc6UmVsZWFzZTI0MzE3OTMy 0.2 master 0.2 0 0 2020-03-07T18:21:40Z 2020-03-07T18:22:58Z Switched to parsing iteratively, so huge filings start showing up in the database straight away while the command is running. Progress bars are now shown for each individual filing. #1 fec-to-sqlite 245670670    

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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]);
Powered by Datasette · Queries took 21.563ms