Metadata-Version: 2.1
Name: intake
Version: 0.6.0
Summary: Data load and catalog system
Home-page: https://github.com/intake/intake
Maintainer: Martin Durant
Maintainer-email: mdurant@anaconda.com
License: BSD
Description: # Intake: A general interface for loading data
        
        ![Logo](https://github.com/intake/intake/raw/master/logo-small.png)
        
        [![Build Status](https://travis-ci.org/intake/intake.svg?branch=master)](https://travis-ci.org/intake/intake)
        [![Coverage Status](https://coveralls.io/repos/github/intake/intake/badge.svg?branch=master)](https://coveralls.io/github/intake/intake?branch=master)
        [![Documentation Status](https://readthedocs.org/projects/intake/badge/?version=latest)](http://intake.readthedocs.io/en/latest/?badge=latest)
        [![Join the chat at https://gitter.im/ContinuumIO/intake](https://badges.gitter.im/ContinuumIO/intake.svg)](https://gitter.im/ContinuumIO/intake?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
        
        
        Intake is a lightweight set of tools for loading and sharing data in data science projects.
        Intake helps you:
        
        * Load data from a variety of formats (see the [current list of known plugins](http://intake.readthedocs.io/en/latest/plugin-directory.html)) into containers you already know, like Pandas dataframes, Python lists, NumPy arrays, and more.
        * Convert boilerplate data loading code into reusable Intake plugins
        * Describe data sets in catalog files for easy reuse and sharing between projects and with others.
        * Share catalog information (and data sets) over the network with the Intake server
        
        Documentation is available at [Read the Docs](http://intake.readthedocs.io/en/latest).
        
        Status of intake and related packages is available at [Status Dashboard](https://intake.github.io/status)
        
        Weekly news about this repo and other related projects can be found on the
        [wiki](https://github.com/intake/intake/wiki/Community-News) 
        
        Install
        -------
        
        Recommended method using conda:
        ```bash
        conda install -c conda-forge intake
        ```
        
        You can also install using `pip`, in which case you have a choice as to how many of the optional
        dependencies you install, with the simplest having least requirements
        
        ```bash
        pip install intake
        ```
        
        and additional sections `[server]`, `[plot]` and `[dataframe]`, or to include everything:
        
        ```bash
        pip install intake[complete]
        ```
        
        Note that you may well need specific drivers and other plugins, which usually have additional 
        dependencies of their own. 
        
        Development
        -----------
         * Create development Python environment, ideally with `conda`. The requirements can be found in the
           recipe in the `conda/` directory of this repo or in the sister 
           [feedstock](https://github.com/conda-forge/intake-feedstock)
         * Install using `pip install -e .[complete]`
         * Add `pytest` to the environment to be able to run tests
         * Create a fork on github to be able to submit PRs.
         * We respect, but do not enforce, pep8 standards; all new code should be covered by tests.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: server
Provides-Extra: plot
Provides-Extra: dataframe
Provides-Extra: complete
