pull_requests
1 row where user = 51421921
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date), closed_at (date), merged_at (date)
id ▼ | node_id | number | state | locked | title | user | body | created_at | updated_at | closed_at | merged_at | merge_commit_sha | assignee | milestone | draft | head | base | author_association | auto_merge | repo | url | merged_by |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1818325172 | PR_kwDOAMm_X85sYXC0 | 8930 | closed | 0 | Migrate formatting_html.py into xarray core | eni-awowale 51421921 | This PR migrates the `formatting_html.py` module into `xarray/core/formatting_html.py` as part of the on-going effort to merge `xarray-datatree` into `xarray`. One thing of note is that importing and setting the `OPTIONS` to `"default"` in `datatree/formatting_html.py` ([lines](https://github.com/xarray-contrib/datatree/blob/main/datatree/formatting_html.py#L13%23L15)) were moved into `xarray/core/options.py` on [#L23](https://github.com/pydata/xarray/blob/main/xarray/core/options.py#L23) and [#L49](https://github.com/pydata/xarray/blob/main/xarray/core/options.py#L49). So, I did not add them back to `xarray/core/formatting_html.py`. - [x] Completes migration step for `datatree/formating_htmls.py` https://github.com/pydata/xarray/issues/8572 - [x] Tests added - [ ] ~~User visible changes (including notable bug fixes) are documented in whats-new.rst~~ - [ ] ~~New functions/methods are listed in api.rst~~ | 2024-04-11T16:15:28Z | 2024-04-18T21:59:47Z | 2024-04-18T21:59:44Z | 2024-04-18T21:59:44Z | 5f24079ddaeb0bb16a039d091cbd48710aca4915 | 0 | ed83ad2f0fd921aa4b2c25f4d7a4aa6602855bcc | 60f3e741d463840de8409fb4c6cec41de7f7ce05 | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/8930 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [pull_requests] ( [id] INTEGER PRIMARY KEY, [node_id] TEXT, [number] INTEGER, [state] TEXT, [locked] INTEGER, [title] TEXT, [user] INTEGER REFERENCES [users]([id]), [body] TEXT, [created_at] TEXT, [updated_at] TEXT, [closed_at] TEXT, [merged_at] TEXT, [merge_commit_sha] TEXT, [assignee] INTEGER REFERENCES [users]([id]), [milestone] INTEGER REFERENCES [milestones]([id]), [draft] INTEGER, [head] TEXT, [base] TEXT, [author_association] TEXT, [auto_merge] TEXT, [repo] INTEGER REFERENCES [repos]([id]), [url] TEXT, [merged_by] INTEGER REFERENCES [users]([id]) ); CREATE INDEX [idx_pull_requests_merged_by] ON [pull_requests] ([merged_by]); CREATE INDEX [idx_pull_requests_repo] ON [pull_requests] ([repo]); CREATE INDEX [idx_pull_requests_milestone] ON [pull_requests] ([milestone]); CREATE INDEX [idx_pull_requests_assignee] ON [pull_requests] ([assignee]); CREATE INDEX [idx_pull_requests_user] ON [pull_requests] ([user]);