Skip to content

Instantly share code, notes, and snippets.

@jsignell
Last active July 10, 2019 21:53
Show Gist options
  • Save jsignell/03c26c793ce3fd3d3e15ca8d5a442850 to your computer and use it in GitHub Desktop.
Save jsignell/03c26c793ce3fd3d3e15ca8d5a442850 to your computer and use it in GitHub Desktop.
Intake: Basta with the Copy Pasta

Intake: Basta with the Copy Pasta

conda create --name lightning-talk intake
conda activate lightning-talk
conda install -c intake us_crime
ipython

Import intake, inspect the metadata on your data source

import intake
data = intake.cat.us_crime
data

Or just read the data to a pandas object and carry on with your life.

data.read()

Do more in the notebook

conda install -c conda-forge intake-parquet s3fs fastparquet python-snappy panel jupyter hvplot tqdm
jupyter notebook
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment