Skip to content

Instantly share code, notes, and snippets.

@bsnux
Created February 26, 2014 20:23
Show Gist options
  • Save bsnux/9237730 to your computer and use it in GitHub Desktop.
Save bsnux/9237730 to your computer and use it in GitHub Desktop.
Deleting *.pyc files
@task
def del_pyc():
"""
Delete *.pyc of your project
"""
local('find . -name \*.pyc | xargs rm')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment