Odo Documentation

odo Documentation

Release 0.5.0+26.g55cec3c Matthew Rocklin

August 11, 2016

1 Example 2 Contents

Contents

3 5

i

ii

odo Documentation, Release 0.5.0+26.g55cec3c

odo takes two arguments, a source and a target for a data transfer. >>> from odo import odo >>> odo(source, target) # load source into target It efficiently migrates data from the source to the target through a network of conversions.

Contents

1

odo Documentation, Release 0.5.0+26.g55cec3c

2

Contents

CHAPTER 1

Example

>>> from odo import odo >>> import pandas as pd

>>> odo('accounts.csv', pd.DataFrame)

name balance

0 Alice

100

1

Bob

200

2 Charlie

300

# Load csv file into DataFrame

>>> # Load CSV file into Hive database >>> odo('accounts.csv', 'hive://user:password@hostname/db::accounts')

3

odo Documentation, Release 0.5.0+26.g55cec3c

4

Chapter 1. Example

................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download