Skip to content

Commit e91f383

Browse files
committed
Merge pull request pandas-dev#5941 from jreback/gbq
API: add read_gbq to top-level api, closes (GH5843)
2 parents ebd1db4 + 3153a3b commit e91f383

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

pandas/io/api.py

+1
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@
1212
from pandas.io.stata import read_stata
1313
from pandas.io.pickle import read_pickle, to_pickle
1414
from pandas.io.packers import read_msgpack, to_msgpack
15+
from pandas.io.gbq import read_gbq

pandas/io/gbq.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@
1313
import pandas as pd
1414
import numpy as np
1515

16-
from pandas import DataFrame, concat
1716
from pandas.core.common import PandasError
17+
from pandas.core.frame import DataFrame
18+
from pandas.tools.merge import concat
1819

1920
try:
2021
import bq

0 commit comments

Comments
 (0)