Skip to content

Commit

Permalink
Merge branch 'master' of github.com:tylertreat/BigQuery-Python
Browse files Browse the repository at this point in the history
  • Loading branch information
tylertreat-wf committed May 7, 2014
2 parents 6255c5c + 2a331b7 commit f8eb806
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,7 @@ There is also functionality for retrieving tables that are associated with a Goo
from datetime import datetime, timedelta
range_end = datetime.utcnow()
range_start = range_end - timedelta(weeks=12)
tables = client.get_tables('dataset', 'appid',
calendar.timegm(range_start.timetuple()),
calendar.timegm(range_end.timetuple()))
tables = client.get_tables('dataset', 'appid', range_start, range_end)
```

# Inserting Data
Expand Down

0 comments on commit f8eb806

Please sign in to comment.