Skip to content

Instantly share code, notes, and snippets.

@apetresc
Created August 13, 2012 20:39
Show Gist options
  • Select an option

  • Save apetresc/3343947 to your computer and use it in GitHub Desktop.

Select an option

Save apetresc/3343947 to your computer and use it in GitHub Desktop.
Boto comparison
>>> import boto
>>> boto.__version__
'2.3.0'
>>> db = boto.connect_dynamodb()
>>> t = db.get_table("RoutingTable")
>>> t.scan()
<generator object scan at 0x1cedfa0>
>>> import boto
>>> boto.__version__
'2.5.2'
>>> db = boto.connect_dynamodb()
>>> t = db.get_table("RoutingTable")
>>> t.scan()
<boto.dynamodb.layer2.TableGenerator instance at 0x3019908>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment