Server : LiteSpeed System : Linux in-mum-web1333.main-hosting.eu 4.18.0-553.37.1.lve.el8.x86_64 #1 SMP Mon Feb 10 22:45:17 UTC 2025 x86_64 User : u141265441 ( 141265441) PHP Version : 8.4.3 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail Directory : /proc/self/root/opt/gsutil/gslib/vendored/boto/tests/mturk/ |
import os
import functools
live_connection = False
mturk_host = 'mechanicalturk.sandbox.amazonaws.com'
external_url = 'http://www.example.com/'
SetHostMTurkConnection = None
def config_environment():
global SetHostMTurkConnection
try:
local = os.path.join(os.path.dirname(__file__), 'local.py')
execfile(local)
except:
pass
if live_connection:
#TODO: you must set the auth credentials to something valid
from boto.mturk.connection import MTurkConnection
else:
# Here the credentials must be set, but it doesn't matter what
# they're set to.
os.environ.setdefault('AWS_ACCESS_KEY_ID', 'foo')
os.environ.setdefault('AWS_SECRET_ACCESS_KEY', 'bar')
from mocks import MTurkConnection
SetHostMTurkConnection = functools.partial(MTurkConnection, host=mturk_host)