├── .gitignore ├── LICENSE ├── README.md ├── cognito └── serverless.yml ├── dispatcher.py ├── lib ├── cachetools-2.0.0.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── metadata.json │ └── top_level.txt ├── cachetools │ ├── __init__.py │ ├── abc.py │ ├── cache.py │ ├── func.py │ ├── keys.py │ ├── lfu.py │ ├── lru.py │ ├── rr.py │ └── ttl.py ├── common.py ├── dynamo_sessions.py ├── pyaes-1.6.0.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── metadata.json │ └── top_level.txt └── pyaes │ ├── __init__.py │ ├── aes.py │ ├── blockfeeder.py │ └── util.py ├── scripts ├── call_gw ├── decrypt-message ├── purge-all-queues └── remove-all ├── serverless.yml ├── session_manager.py ├── session_update.py ├── sqs_sender.py ├── test ├── common.py ├── test_high_volume.py ├── test_sessions.py ├── test_user_message_api.py └── testenv.py ├── user_history_adder.py └── user_message_api.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/README.md -------------------------------------------------------------------------------- /cognito/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/cognito/serverless.yml -------------------------------------------------------------------------------- /dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/dispatcher.py -------------------------------------------------------------------------------- /lib/cachetools-2.0.0.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/cachetools-2.0.0.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /lib/cachetools-2.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lib/cachetools-2.0.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/cachetools-2.0.0.dist-info/METADATA -------------------------------------------------------------------------------- /lib/cachetools-2.0.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/cachetools-2.0.0.dist-info/RECORD -------------------------------------------------------------------------------- /lib/cachetools-2.0.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/cachetools-2.0.0.dist-info/WHEEL -------------------------------------------------------------------------------- /lib/cachetools-2.0.0.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/cachetools-2.0.0.dist-info/metadata.json -------------------------------------------------------------------------------- /lib/cachetools-2.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | cachetools 2 | -------------------------------------------------------------------------------- /lib/cachetools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/cachetools/__init__.py -------------------------------------------------------------------------------- /lib/cachetools/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/cachetools/abc.py -------------------------------------------------------------------------------- /lib/cachetools/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/cachetools/cache.py -------------------------------------------------------------------------------- /lib/cachetools/func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/cachetools/func.py -------------------------------------------------------------------------------- /lib/cachetools/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/cachetools/keys.py -------------------------------------------------------------------------------- /lib/cachetools/lfu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/cachetools/lfu.py -------------------------------------------------------------------------------- /lib/cachetools/lru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/cachetools/lru.py -------------------------------------------------------------------------------- /lib/cachetools/rr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/cachetools/rr.py -------------------------------------------------------------------------------- /lib/cachetools/ttl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/cachetools/ttl.py -------------------------------------------------------------------------------- /lib/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/common.py -------------------------------------------------------------------------------- /lib/dynamo_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/dynamo_sessions.py -------------------------------------------------------------------------------- /lib/pyaes-1.6.0.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/pyaes-1.6.0.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /lib/pyaes-1.6.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lib/pyaes-1.6.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/pyaes-1.6.0.dist-info/METADATA -------------------------------------------------------------------------------- /lib/pyaes-1.6.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/pyaes-1.6.0.dist-info/RECORD -------------------------------------------------------------------------------- /lib/pyaes-1.6.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.29.0) 3 | Root-Is-Purelib: true 4 | Tag: cp27-none-any 5 | 6 | -------------------------------------------------------------------------------- /lib/pyaes-1.6.0.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/pyaes-1.6.0.dist-info/metadata.json -------------------------------------------------------------------------------- /lib/pyaes-1.6.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pyaes 2 | -------------------------------------------------------------------------------- /lib/pyaes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/pyaes/__init__.py -------------------------------------------------------------------------------- /lib/pyaes/aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/pyaes/aes.py -------------------------------------------------------------------------------- /lib/pyaes/blockfeeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/pyaes/blockfeeder.py -------------------------------------------------------------------------------- /lib/pyaes/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/lib/pyaes/util.py -------------------------------------------------------------------------------- /scripts/call_gw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/scripts/call_gw -------------------------------------------------------------------------------- /scripts/decrypt-message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/scripts/decrypt-message -------------------------------------------------------------------------------- /scripts/purge-all-queues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/scripts/purge-all-queues -------------------------------------------------------------------------------- /scripts/remove-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/scripts/remove-all -------------------------------------------------------------------------------- /serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/serverless.yml -------------------------------------------------------------------------------- /session_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/session_manager.py -------------------------------------------------------------------------------- /session_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/session_update.py -------------------------------------------------------------------------------- /sqs_sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/sqs_sender.py -------------------------------------------------------------------------------- /test/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/test/common.py -------------------------------------------------------------------------------- /test/test_high_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/test/test_high_volume.py -------------------------------------------------------------------------------- /test/test_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/test/test_sessions.py -------------------------------------------------------------------------------- /test/test_user_message_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/test/test_user_message_api.py -------------------------------------------------------------------------------- /test/testenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/test/testenv.py -------------------------------------------------------------------------------- /user_history_adder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/user_history_adder.py -------------------------------------------------------------------------------- /user_message_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReutersMedia/sqs-browser-events/HEAD/user_message_api.py --------------------------------------------------------------------------------