Skip to content

Instantly share code, notes, and snippets.

@kidig
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kidig/7d4e25d528de11e27c18 to your computer and use it in GitHub Desktop.
Save kidig/7d4e25d528de11e27c18 to your computer and use it in GitHub Desktop.
Example for the python shovel.
from shovel import task
@task
def hello(name):
print "Hello, %s!" % name
@task
def kwargs(**kwargs):
print "Kwargs: %s" % kwargs
'''
Для запуска используем:
> shovel hello username
Hello, username!
> shovel kwargs --name 123 --val bar
{name: '123', val: 'bar'}
'''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment