issue_comments
3 rows where author_association = "MEMBER", issue = 323017930 and user = 1217238 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- Feature/pickle rasterio · 3 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
395647556 | https://github.com/pydata/xarray/pull/2131#issuecomment-395647556 | https://api.github.com/repos/pydata/xarray/issues/2131 | MDEyOklzc3VlQ29tbWVudDM5NTY0NzU1Ng== | shoyer 1217238 | 2018-06-08T05:00:59Z | 2018-06-08T05:00:59Z | MEMBER | v0.10.7 is out |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Feature/pickle rasterio 323017930 | |
395534752 | https://github.com/pydata/xarray/pull/2131#issuecomment-395534752 | https://api.github.com/repos/pydata/xarray/issues/2131 | MDEyOklzc3VlQ29tbWVudDM5NTUzNDc1Mg== | shoyer 1217238 | 2018-06-07T19:18:55Z | 2018-06-07T19:18:55Z | MEMBER | @rsignell-usgs Sure, though |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Feature/pickle rasterio 323017930 | |
389298331 | https://github.com/pydata/xarray/pull/2131#issuecomment-389298331 | https://api.github.com/repos/pydata/xarray/issues/2131 | MDEyOklzc3VlQ29tbWVudDM4OTI5ODMzMQ== | shoyer 1217238 | 2018-05-15T20:14:06Z | 2018-05-15T20:14:06Z | MEMBER | Thinking about this a little more, maybe we should consolidate pickling with autoclosing into a single, composable wrapper class. Usage would look something like: ```python wrapper = FileWrapper(netCDF4.Dataset, path, mode='r', autoclose=False, kwargs=kwargs) with wrapper: # will close/open wrapped file with wrapper.acquire() as ds: # context manager is dummy, simply returning the open file object ... # do stuff with ds, a netCDF4.Dataset instance or could write wrapper.close() instead of using the context managerwrapper = FileWrapper(netCDF4.Dataset, path, mode='r', autoclose=True, kwargs=kwargs) with wrapper: # explicit opening/closing the wrapper is a no-op if autoclose=True with wrapper.acquire() as ds: # context manager opens/closes file # if file is already open, it's a no-op ... # do stuff with ds, a netCDF4.Dataset instance ``` We could then expose Eventually, we might even change the default for |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Feature/pickle rasterio 323017930 |
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