Created
March 18, 2017 15:47
-
-
Save jihunchoi/a05a9ed37a3096cffef80bdc7fee31bc to your computer and use it in GitHub Desktop.
Remove all experiments in a PyCrayon server.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""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