---
title: "010"
description: "load remote _ with **"
date: 2020-06-07
published: false
tags:
  - data
  - python
template: hot-tip
---

load remote _data_ with **pandas**

``` python
import pandas as pd
cars_url = 'waylonwalker.com/cars.csv'
cars = pd.read_csv(cars_url)
```
