Skip to content

Chunkstore API Reference

Bryant Moscon edited this page Sep 30, 2016 · 28 revisions

write(self, symbol, item, chunker=DateChunker(), **kwargs)
    Writes data from item to symbol in the database
  
    Parameters
    ----------
    symbol: str
        the symbol that will be used to reference the written data
    item: Dataframe or Series
        the data to write the database
    chunker: Object of type Chunker
        A chunker that chunks the data in item
    kwargs:
        optional keyword args that are passed to the chunker. Includes:
        chunk_size:
            used by chunker to break data into discrete chunks.
            see specific chunkers for more information about this param.
Clone this wiki locally