home / github

Menu
  • Search all tables
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

3 rows where issue = 164948082 and user = 10194086 sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: created_at (date), updated_at (date)

user 1

  • mathause · 3 ✖

issue 1

  • Tweaks for opening datasets · 3 ✖

author_association 1

  • MEMBER 3
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
723660214 https://github.com/pydata/xarray/pull/895#issuecomment-723660214 https://api.github.com/repos/pydata/xarray/issues/895 MDEyOklzc3VlQ29tbWVudDcyMzY2MDIxNA== mathause 10194086 2020-11-08T20:18:01Z 2020-11-08T20:18:01Z MEMBER

I am closing this as stale. Half of this OR is implemented (#2732) the other half is #1754.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Tweaks for opening datasets 164948082
459629820 https://github.com/pydata/xarray/pull/895#issuecomment-459629820 https://api.github.com/repos/pydata/xarray/issues/895 MDEyOklzc3VlQ29tbWVudDQ1OTYyOTgyMA== mathause 10194086 2019-02-01T07:16:25Z 2019-02-01T07:16:56Z MEMBER

Once #2732 is merged (#2380) the first issue from the list should be resolved. I'd still be interested to get No 2 in.Maybe it would be better to open a new PR?

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Tweaks for opening datasets 164948082
232002705 https://github.com/pydata/xarray/pull/895#issuecomment-232002705 https://api.github.com/repos/pydata/xarray/issues/895 MDEyOklzc3VlQ29tbWVudDIzMjAwMjcwNQ== mathause 10194086 2016-07-12T10:37:50Z 2016-07-12T10:37:50Z MEMBER

I like (2) - I once needed this functionality and had to infer the drop_vars.

``` def get_drop_vars(variables, ds):

if isinstance(variables, basestring):
    variables = [variables]
else:
    variables = list(variables)

# all variables
drop_var = set(ds.variables.keys())

# do not drop: coordinates, variables and time bounds
keep_var = ds.coords.keys() + variables + ['time_bounds', 'time_bnds']

drop_var.difference_update(keep_var)

return drop_var`

```

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Tweaks for opening datasets 164948082

Advanced export

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

CSV options:

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]);
Powered by Datasette · Queries took 68.707ms · About: xarray-datasette