├── LICENSE ├── README.md ├── mturk ├── __init__.py └── mturk.py └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctrlcctrlv/mturk-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctrlcctrlv/mturk-python/HEAD/README.md -------------------------------------------------------------------------------- /mturk/__init__.py: -------------------------------------------------------------------------------- 1 | from .mturk import * 2 | -------------------------------------------------------------------------------- /mturk/mturk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctrlcctrlv/mturk-python/HEAD/mturk/mturk.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctrlcctrlv/mturk-python/HEAD/setup.py --------------------------------------------------------------------------------