Skip to content

Instantly share code, notes, and snippets.

@jihunchoi
Created March 18, 2017 15:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jihunchoi/a05a9ed37a3096cffef80bdc7fee31bc to your computer and use it in GitHub Desktop.
Save jihunchoi/a05a9ed37a3096cffef80bdc7fee31bc to your computer and use it in GitHub Desktop.
Remove all experiments in a PyCrayon server.
"""Clean all experiments in a PyCrayon server."""
from pycrayon import CrayonClient
def main():
client = CrayonClient()
client.remove_all_experiments()
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment