1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
End User
--------
These are reference class and function definitions likely to be useful to everyone.
.. autosummary::
intake.open_catalog
intake.registry
intake.register_driver
intake.unregister_driver
intake.upload
intake.open_
intake.source.csv.CSVSource
intake.source.textfiles.TextFilesSource
intake.source.jsonfiles.JSONFileSource
intake.source.jsonfiles.JSONLinesFileSource
intake.source.npy.NPySource
intake.source.zarr.ZarrArraySource
intake.catalog.local.YAMLFileCatalog
intake.catalog.local.YAMLFilesCatalog
intake.catalog.zarr.ZarrGroupCatalog
intake.interface.gui.GUI
.. autofunction::
intake.open_catalog
.. attribute:: intake.registry
Mapping from plugin names to the DataSource classes that implement them. These are the
names that should appear in the ``driver:`` key of each source definition in a
catalog. See :doc:`plugin-directory` for more details.
.. attribute:: intake.open_
Set of functions, one for each plugin, for direct opening of a data source. The names are derived from the names of
the plugins in the registry at import time.
.. autofunction::
intake.upload
.. autoclass:: intake.interface.gui.GUI
:members:
Source classes
''''''''''''''
.. autoclass:: intake.source.csv.CSVSource
:members: __init__, discover, read_partition, read, to_dask, persist, export
.. autoclass:: intake.source.zarr.ZarrArraySource
:members: __init__, discover, read_partition, read, to_dask, persist, export
.. autoclass:: intake.source.textfiles.TextFilesSource
:members: __init__, discover, read_partition, read, to_dask, persist, export
.. autoclass:: intake.source.jsonfiles.JSONFileSource
:members: __init__, discover, read, persist, export
.. autoclass:: intake.source.jsonfiles.JSONLinesFileSource
:members: __init__, discover, read, head, persist, export
.. autoclass:: intake.source.npy.NPySource
:members: __init__, discover, read_partition, read, to_dask, persist, export
.. autoclass:: intake.catalog.local.YAMLFileCatalog
:members: __init__, reload, search, walk, persist, export
.. autoclass:: intake.catalog.local.YAMLFilesCatalog
:members: __init__, reload, search, walk, persist, export
.. autoclass:: intake.catalog.zarr.ZarrGroupCatalog
:members: __init__, reload, search, walk, persist, export, to_zarr
|