forked from ShinNoNoir/mturkweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
47 lines (27 loc) · 1.13 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Readme
==============================================================================
The mturkweb package is a simple Amazon Mechanical Turk (AMT) library for
retrieving information about batches that were created in the AMT web interface.
Usage
------------------------------------------------------------------------------
The mturkweb package provides an MTurkWebSession class which can be used to
retrieve information about batches. An instance of this class is created
by calling the login function with the credentials of a Mechanical Turk
requester account.
Example usage:
::
import mturkweb
session = mturkweb.login('[email protected]', 'password')
batches = session.get_batches()
for status in batches:
print status
print '-' * 76
for batch in batches[status]:
print '%s\t%s' % (batch.geturl(), batch.name)
print
print
Installation
------------------------------------------------------------------------------
This package can be installed using `pip`:
::
pip install https://github.com/ShinNoNoir/mturkweb/archive/master.zip