Datalab API examples: https://github.com/googledatalab/datalab/blob/f52335fe7bc596aa63f61230717c473caf6047de/dev/notebooks/Cloud%20Storage%20-%20Reading%20and%20Writing%20Files.ipynb
items=shared_bucket.items()
keys=map(lambdaitem: item.key, items)
keys
What it is the equivalent in gcloud-python?
items=shared_bucket.list_blobs()
keys= ['/'.join(item.id.split('/')[1:-1]) foriteminitems]
Datalab API examples: https://github.com/googledatalab/datalab/blob/f52335fe7bc596aa63f61230717c473caf6047de/dev/notebooks/Cloud%20Storage%20-%20Reading%20and%20Writing%20Files.ipynb
What it is the equivalent in gcloud-python?