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
""" | |
To install | |
conda create -n dask-tutorial python=3.7 anaconda | |
conda activate dask-tutorial | |
conda install dask | |
conda install -c conda-forge dask-jobqueue | |
""" | |
import dask | |
import time |
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
from enum import Enum # for enum34, or the stdlib version | |
Animal = Enum('Animal', 'ant bee cat dog') | |
class Animal2(Enum): | |
ant = 1 | |
bee = 2 | |
cat = 3 | |
dog = 4 | |