Skip to content

Instantly share code, notes, and snippets.

@egemenyildiz
egemenyildiz / clonebb.py
Last active June 29, 2016 07:07
clone back-up all projects from a bitbucket team/account
#!/usr/bin/python
# -*- coding: utf-8 -*-
import json
import argparse
import getpass
import subprocess
import base64
import urllib2
"""
@egemenyildiz
egemenyildiz / remove_pyc.sh
Created July 6, 2015 14:54
remove compiled python files
find . -name "*.pyc" -exec rm -rf {} \;