home / github

Menu
  • GraphQL API
  • Search all tables

commits

Table actions
  • GraphQL API for commits

2 rows where author = 23487320 and repo = 13221727 sorted by author_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: author_date (date), committer_date (date)

repo 1

  • xarray · 2 ✖

author 1

  • weiji14 · 2 ✖
sha message author_date ▲ committer_date raw_author raw_committer repo author committer
ea9b3a53cbc4a99af4241e660731d5f395d253d7 Reset file pointer to 0 when reading file stream (#7304) * Reset file pointer to 0 when reading file stream Instead of raising a ValueError about the file pointer not being at the start of the file, reset the file pointer automatically to zero, and warn that the pointer has been reset. * Expect warning rather than ValueError for test_open_twice Fixes the `Failed: DID NOT RAISE <class 'ValueError'>` * Remove checks for errors raised in test_open_fileobj The ValueError and RuntimeWarning isn't raised anymore. * Fix typo form -> from * Add changelog entry for bugfix * Remove warning about resetting file pointer to zero File pointer is reset to zero after reading the magic byte number anyway, so should be ok not to warn about this. 2022-12-01T16:18:22Z 2022-12-01T16:18:22Z Wei Ji 8cff2dcfaf8d786a961d5c90749c62ed7daaa008 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f xarray 13221727 weiji14 23487320 web-flow 19864447
5654aee927586c2dcbc3f34d674ed5c9646326c1 Xarray open_mfdataset with engine Zarr (#4187) * create def for multiple zarr files and added commentary/definition, which matches almost exactly that of ``xr.open_mfdatasets``, but withou ``engine`` * just as with ``xr.open_mfdatasets``, identify the paths as local directory paths/strings * added error if no path * finished copying similar code from `xr.open_mfdatasets` * remove blank lines * fixed typo * added ``xr.open_mzarr()`` to the list of available modules to call * imported missing function * imported missing glob * imported function from backend.api * imported function to facilitate mzarr * correctly imported functions from core to mzarr * imported to use on open_mzarr * removed lock and autoclose since not taken by ``open_zarr`` * fixed typo * class is not needed since zarr stores don`t remain open * removed old behavior * set default * listed open_mzarr * removed unused imported function * imported Path - hadn`t before * remove unncessesary comments * modified comments * isorted zarr * isorted * erased open_mzarr. Added capability to open_dataset to open zarr files * removed imported but unused * comment to `zarr` engine * added chunking code from `open_zarr` * remove import `open_mzarr`` * removed `open_mzarr`` from top-level-function * missing return in nested function * moved outside of nested function, had touble with reading before assignement * added missing argument associated with zarr stores, onto the definition of open_dataset * isort zarr.py * removed blank lines, fixed typo on `chunks` * removed imported but unused * restored conditional for `auto` * removed imported but unused `dask.array` * added capabilities for file_or_obj to be a mutablemapper such as `fsspec.get_mapper`, and thus compatible with `intake-xarray` * moved to a different conditional since file_or_obj is a mutablemapping, not a str, path or AbstractDataStore * isort api.py * restored the option fo… 2020-09-22T05:40:30Z 2020-09-22T05:40:30Z Wei Ji 8cff2dcfaf8d786a961d5c90749c62ed7daaa008 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f xarray 13221727 weiji14 23487320 web-flow 19864447

Advanced export

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

CSV options:

CREATE TABLE [commits] (
   [sha] TEXT PRIMARY KEY,
   [message] TEXT,
   [author_date] TEXT,
   [committer_date] TEXT,
   [raw_author] TEXT REFERENCES [raw_authors]([id]),
   [raw_committer] TEXT REFERENCES [raw_authors]([id]),
   [repo] INTEGER REFERENCES [repos]([id]),
   [author] INTEGER REFERENCES [users]([id]),
   [committer] INTEGER REFERENCES [users]([id])
);
CREATE INDEX [idx_commits_committer]
    ON [commits] ([committer]);
CREATE INDEX [idx_commits_author]
    ON [commits] ([author]);
CREATE INDEX [idx_commits_repo]
    ON [commits] ([repo]);
CREATE INDEX [idx_commits_raw_committer]
    ON [commits] ([raw_committer]);
CREATE INDEX [idx_commits_raw_author]
    ON [commits] ([raw_author]);
Powered by Datasette · Queries took 45.612ms · About: xarray-datasette