Skip to content

Instantly share code, notes, and snippets.

View caioiglesias's full-sized avatar
🦁
Focusing

Caio Iglesias caioiglesias

🦁
Focusing
View GitHub Profile
@caioiglesias
caioiglesias / gist:5dd2680e13f4e9044e58
Last active August 29, 2015 14:04
Pipeline Simple
class GrandGrandSon(base_handler.PipelineBase):
def run(self):
return 'big family'
class GrandSon(base_handler.PipelineBase):
def run(self):
yield GrandGrandSon()