issue_comments
1 row where author_association = "MEMBER", issue = 1641109066 and user = 5821660 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- Allow track_order to be passed to h5netcdf · 1 ✖
| id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 1484583468 | https://github.com/pydata/xarray/issues/7680#issuecomment-1484583468 | https://api.github.com/repos/pydata/xarray/issues/7680 | IC_kwDOAMm_X85YfPIs | kmuehlbauer 5821660 | 2023-03-27T06:36:46Z | 2023-03-27T06:50:55Z | MEMBER | First, I totally agree with @jhamman having For the particular use case, netcdf-c/netCDF4-python create HDF5 files (
@abunimeh As a workaround until this is sorted out you could create the file (or subgroup) using ```python import xarray as xr import h5netcdf from time import sleep ds = xr.Dataset(data_vars=dict(hello=(["x"], [1., 1., 1., 1., 1.]))) track_order = False group = "/track" with h5netcdf.File("sample1.nc", "a", track_order=track_order) as f1: if group.split("/")[-1]: f1.create_group(group) ds.to_netcdf("sample1.nc", mode="a", engine="h5netcdf", group=group) with h5netcdf.File("sample2.nc", "a", track_order=track_order) as f2: if group.split("/")[-1]: f2.create_group(group) ds.to_netcdf("sample2.nc", mode="a", engine="h5netcdf", group=group) Update: Use |
{
"total_count": 1,
"+1": 1,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Allow track_order to be passed to h5netcdf 1641109066 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [issue_comments] (
[html_url] TEXT,
[issue_url] TEXT,
[id] INTEGER PRIMARY KEY,
[node_id] TEXT,
[user] INTEGER REFERENCES [users]([id]),
[created_at] TEXT,
[updated_at] TEXT,
[author_association] TEXT,
[body] TEXT,
[reactions] TEXT,
[performed_via_github_app] TEXT,
[issue] INTEGER REFERENCES [issues]([id])
);
CREATE INDEX [idx_issue_comments_issue]
ON [issue_comments] ([issue]);
CREATE INDEX [idx_issue_comments_user]
ON [issue_comments] ([user]);
user 1