Skip to main content

CARTO Python package for data scientists

Project description

https://travis-ci.org/CartoDB/cartoframes.svg https://img.shields.io/badge/pypi-v1.0b6-orange

A Python package for integrating CARTO maps, analysis, and data services into data science workflows.

Python data analysis workflows often rely on the de facto standards pandas and Jupyter notebooks. Integrating CARTO into this workflow saves data scientists time and energy by not having to export datasets as files or retain multiple copies of the data. Instead, CARTOframes give the ability to communicate reproducible analysis while providing the ability to gain from CARTO’s services like hosted, dynamic or static maps and Data Observatory augmentation.

Try it Out

  • Stable (v0.10.1): stable

  • Beta (v1.0b6): beta

  • Latest (develop branch): develop

If you do not have an API key, you can still use cartoframes for creating maps locally.

The example context only provides read access, so not all cartoframes features are available. For full access, Start a free 14 day trial or get free access with a GitHub Student Developer Pack.

Features

  • Create interactive maps from pandas DataFrames (CARTO account not required)

  • Publish interactive maps to CARTO’s platform

  • Write and read pandas DataFrames to/from CARTO tables and queries

  • Create customizable, interactive CARTO maps in a Jupyter notebook using DataFrames or hosted data

  • Augment your data with CARTO’s Data Observatory

  • Use CARTO for cloud-based analysis

Common Uses

  • Visualize spatial data programmatically as matplotlib images, as notebook-embedded interactive maps, or published map visualizations

  • Perform cloud-based spatial data processing using CARTO’s analysis tools

  • Extract, transform, and Load (ETL) data using the Python ecosystem for getting data into and out of CARTO

  • Data Services integrations using CARTO’s Location Data Streams

More info

Install Instructions

To install cartoframes on your machine, do the following to install the latest version:

$ pip install cartoframes

To install the 1.0b6 beta version:

$ pip install cartoframes==1.0b6

cartoframes is continuously tested on Python versions 2.7, 3.5, 3.6, and 3.7. It is recommended to use cartoframes in Jupyter Notebooks (pip install jupyter). See the example usage section below or notebooks in the examples directory for using cartoframes in that environment.

Example usage

Data workflow

Get table from CARTO, make changes in pandas, sync updates with CARTO:

from cartoframes import CartoDataFrame
from cartoframes.auth import set_default_credentials

# set your credentials
set_default_credentials(
    username='your_user_name',
    api_key='your API key'
)

# read a table from your CARTO account
cdf = CartoDataFrame.from_carto('brooklyn_poverty_census_tracts')

# perform operations on you dataframe
cdf['poverty_per_pop'] = cdf['poverty_count'] / cdf['total_population']

# update CARTO table with all changes from this session
cdf.to_carto(
    table_name='brooklyn_poverty_census_tracts',
    if_exists='replace'
)

Map workflow

Render Interactive Maps

Interactive vector maps can be created programmatically in CARTOframes. In addition to hosted tables and queries, these maps can also display geographic information in pandas DataFrames and geopandas GeoDataFrames. This means that these maps do not need to be tied to a CARTO account (i.e., no need for an API key).

from cartoframes.viz import Map
from cartoframes.viz.helpers import color_continuous_layer
from cartoframes.auth import set_default_credentials

set_default_credentials('cartoframes')

# display map in a notebook
Map(color_continuous_layer('brooklyn_poverty', 'poverty_per_pop'))

Publish map to CARTO

from cartoframes.viz import Map
from cartoframes.viz.helpers import color_continuous_layer
from cartoframes.auth import set_default_credentials

set_default_credentials(
    base_url='https://your_user_name.carto.com',
    api_key='your api key'
)

# display map in a notebook
bk_map = Map(color_continuous_layer('brooklyn_poverty', 'poverty_per_pop'))
bk_map.publish('Brooklyn Poverty')

This will publish a map like this one.

CARTO Credential Management

Typical usage

The most common way to input credentials into cartoframes is through the set_default_credentials method, as below. Replace {your_user_name} with your CARTO username and {your_api_key} with your API key, which you can find at https://{your_user_name}.carto.com/your_apps.

from cartoframes.auth import set_default_credentials

set_default_credentials(
    filepath='your_creds_file.json'
)

# or

set_default_credentials(
    username='{your_user_name}',
    api_key='{your_api_key}'
)

When the data we’re going to use is public, we don’t need the api_key parameter, it’s automatically set to default_public:

from cartoframes.auth import set_default_credentials

set_default_credentials('your_user_name')

You can also set your credentials using the base_url parameter:

from cartoframes.auth import set_default_credentials

set_default_credentials(
    base_url='https://{your_user_name}.carto.com',
    api_key='{your_api_key}'
)

Save/update credentials for later use

from cartoframes.auth import Credentials

credentials = Credentials('{your_user_name}', '{your_api_key}')
credentials.save('path/file/creds.json')  # save credentials for later use (not dependent on Python session)

Once you save your credentials, you can get started in future sessions more quickly:

from cartoframes.auth import Credentials
credentials = Credentials.from_file('path/file/creds.json')  # automatically loads credentials if previously saved

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cartoframes-1.0b6.tar.gz (138.8 kB view hashes)

Uploaded Source

Built Distribution

cartoframes-1.0b6-py2.py3-none-any.whl (278.2 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page