{ "info": { "author": "Richard Huang", "author_email": "rickypc@users.noreply.github.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Affero General Public License v3", "Programming Language :: Python :: 2.7", "Topic :: Software Development :: Testing" ], "description": "Amazon AWS DynamoDB big data testing library for Robot Framework\n================================================================\n\n|Build| |Coverage| |Grade| |Docs| |Version| |Status| |Python| |Download| |License|\n\nIntroduction\n------------\n\nDynamoDBSQLibrary is a big data testing library for `Robot Framework`_\nthat gives you the capability to execute scan and query operations against\nmulti `Amazon DynamoDB`_ sessions simultaneously using a `SQL-like`_ DSL_.\n\nIt leverages DynamoDB Query Languange (DQL_) internally to provide a `SQL-like`_ DSL_\nfor `Amazon DynamoDB`_.\n\nMore information about DQL queries can be found in the `DQL Queries Documentation`_.\n\nMore information about this library can be found in the `Keyword Documentation`_.\n\nExample\n'''''''\n\n+-----------------------------+----------------+------------------------------------------------------+\n| Create DynamoDB Session | us-west-2 | label=oregon |\n+-----------------------------+----------------+------------------------------------------------------+\n| Create DynamoDB Session | ap-southeast-1 | label=singapore |\n+-----------------------------+----------------+------------------------------------------------------+\n| Create DynamoDB Session | eu-central-1 | label=frankfurt |\n+-----------------------------+----------------+------------------------------------------------------+\n| Query DynamoDB | oregon | CREATE TABLE mine (id STRING HASH KEY) |\n+-----------------------------+----------------+------------------------------------------------------+\n| Query DynamoDB | singapore | CREATE TABLE mine (id STRING HASH KEY) |\n+-----------------------------+----------------+------------------------------------------------------+\n| Query DynamoDB | frankfurt | CREATE TABLE mine (id STRING HASH KEY) |\n+-----------------------------+----------------+------------------------------------------------------+\n| DynamoDB Table Should Exist | oregon | mine |\n+-----------------------------+----------------+------------------------------------------------------+\n| DynamoDB Table Should Exist | singapore | mine |\n+-----------------------------+----------------+------------------------------------------------------+\n| DynamoDB Table Should Exist | frankfurt | mine |\n+-----------------------------+----------------+------------------------------------------------------+\n| Query DynamoDB | oregon | INSERT INTO mine (id) VALUES ('oregon') |\n+-----------------------------+----------------+------------------------------------------------------+\n| Query DynamoDB | singapore | INSERT INTO mine (id) VALUES ('singapore') |\n+-----------------------------+----------------+------------------------------------------------------+\n| Query DynamoDB | frankfurt | INSERT INTO mine (id) VALUES ('frankfurt') |\n+-----------------------------+----------------+----------------+-------------------------------------+\n| @{oregon} = | Query DynamoDB | oregon | SCAN mine |\n+-----------------------------+----------------+----------------+-------------------------------------+\n| @{singapore} = | Query DynamoDB | singapore | SCAN mine |\n+-----------------------------+----------------+----------------+-------------------------------------+\n| @{frankfurt} = | Query DynamoDB | frankfurt | SCAN mine |\n+-----------------------------+----------------+----------------+-------------------------------------+\n| List And JSON String Should Be Equal | ${oregon} | [{\"id\":\"oregon\"}] |\n+----------------------------------------------+----------------+-------------------------------------+\n| List And JSON String Should Be Equal | ${singapore} | [{\"id\":\"singapore\"}] |\n+----------------------------------------------+----------------+-------------------------------------+\n| List And JSON String Should Be Equal | ${frankfurt} | [{\"id\":\"frankfurt\"}] |\n+----------------------------------------------+----------------+-------------------------------------+\n| Delete All Dynamodb Sessions |\n+-----------------------------------------------------------------------------------------------------+\n\nConfig and Credentials File\n'''''''''''''''''''''''''''\n\nSet up config file in default location:\n\n- ~/.aws/config (Linux/Mac)\n- %USERPROFILE%\\.aws\\config (Windows)\n\n.. code-block:: ini\n\n [default]\n region = us-east-1\n\nSet up credentials file in default location:\n\n- ~/.aws/credentials (Linux/Mac)\n- %USERPROFILE%\\.aws\\credentials (Windows)\n\n.. code-block:: ini\n\n [default]\n aws_access_key_id = YOUR_KEY\n aws_secret_access_key = YOUR_SECRET\n\n [another_profile]\n aws_access_key_id = ANOTHER_KEY\n aws_secret_access_key = ANOTHER_SECRET\n region = us-west-1\n\nInstallation\n------------\n\nUsing ``pip``\n'''''''''''''\n\nThe recommended installation method is using pip_:\n\n.. code:: bash\n\n pip install robotframework-dynamodbsqllibrary\n\nThe main benefit of using ``pip`` is that it automatically installs all\ndependencies needed by the library. Other nice features are easy upgrading\nand support for un-installation:\n\n.. code:: bash\n\n pip install --upgrade robotframework-dynamodbsqllibrary\n pip uninstall robotframework-dynamodbsqllibrary\n\nNotice that using ``--upgrade`` above updates both the library and all\nits dependencies to the latest version. If you want, you can also install\na specific version or upgrade only the dql_ package used by the library:\n\n.. code:: bash\n\n pip install robotframework-dynamodbsqllibrary==x.x.x\n pip install --upgrade dql\n pip install dql==x.x.x\n\nProxy configuration\n'''''''''''''''''''\n\nIf you are behind a proxy, you can use ``--proxy`` command line option\nor set ``http_proxy`` and/or ``https_proxy`` environment variables to\nconfigure ``pip`` to use it. If you are behind an authenticating NTLM proxy,\nyou may want to consider installing CNTML_ to handle communicating with it.\n\nFor more information about ``--proxy`` option and using pip with proxies\nin general see:\n\n- http://pip-installer.org/en/latest/usage.html\n- http://stackoverflow.com/questions/9698557/how-to-use-pip-on-windows-behind-an-authenticating-proxy\n- http://stackoverflow.com/questions/14149422/using-pip-behind-a-proxy\n\nManual installation\n'''''''''''''''''''\n\nIf you do not have network connection or cannot make proxy to work, you need\nto resort to manual installation. This requires installing both the library\nand its dependencies yourself.\n\n- Make sure you have `Robot Framework installed`_.\n\n- Download source distributions (``*.tar.gz``) for the library and its dependencies:\n\n - https://pypi.python.org/pypi/robotframework-dynamodbsqllibrary\n - https://pypi.python.org/pypi/dql\n\n- Download PGP signatures (``*.tar.gz.asc``) for signed packages.\n\n- Find each public key used to sign the package:\n\n.. code:: bash\n\n gpg --keyserver pgp.mit.edu --search-keys D1406DE7\n\n- Select the number from the list to import the public key\n\n- Verify the package against its PGP signature:\n\n.. code:: bash\n\n gpg --verify robotframework-dynamodbsqllibrary-x.x.x.tar.gz.asc robotframework-dynamodbsqllibrary-x.x.x.tar.gz\n\n- Extract each source distribution to a temporary location.\n\n- Go to each created directory from the command line and install each project using:\n\n.. code:: bash\n\n python setup.py install\n\nIf you are on Windows, and there are Windows installers available for\ncertain projects, you can use them instead of source distributions.\nJust download 32bit or 64bit installer depending on your system,\ndouble-click it, and follow the instructions.\n\nDirectory Layout\n----------------\n\ndoc/\n `Keyword documentation`_\n\nsrc/\n Python source code\n\ntest/\n Test files\n\n atest/\n `Robot Framework`_ acceptance test\n\n utest/\n Python unit test\n\nUsage\n-----\n\nTo write tests with Robot Framework and DynamoDBSQLLibrary,\nDynamoDBSQLLibrary must be imported into your Robot test suite.\nSee `Robot Framework User Guide`_ for more information.\n\nMore information about Robot Framework standard libraries and built-in tools\ncan be found in the `Robot Framework Documentation`_.\n\nBuilding Keyword Documentation\n------------------------------\n\nThe `Keyword Documentation`_ can be found online, if you need to generate the keyword documentation, run:\n\n.. code:: bash\n\n make doc\n\nRun Unit Tests, Acceptance Tests, and Test Coverage Report\n----------------------------------------------------------\n\nTest the testing library, talking about dogfooding, let's run:\n\n.. code:: bash\n\n make test\n\nContributing\n------------\n\nIf you would like to contribute code to DynamoDB SQL Library project you can do so through GitHub by forking the repository and sending a pull request.\n\nWhen submitting code, please make every effort to follow existing conventions and style in order to keep the code as readable as possible. Please also include appropriate test cases.\n\nBefore your code can be accepted into the project you must also sign the `DynamoDB SQL Library CLA`_ (Individual Contributor License Agreement).\n\nThat's it! Thank you for your contribution!\n\nLicense\n-------\n\nCopyright (c) 2014 - 2015 Richard Huang.\n\nThis library is free software, licensed under: `GNU Affero General Public License (AGPL-3.0)`_.\n\nDocumentation and other similar content are provided under `Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License`_.\n\n.. _Amazon DynamoDB: https://goo.gl/C4yE9H\n.. _CNTML: http://goo.gl/ukiwSO\n.. _Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License: http://goo.gl/SNw73V\n.. _dql: https://goo.gl/n43Il4\n.. _DQL Queries Documentation: https://goo.gl/RRKSeK\n.. _DSL: https://goo.gl/P1fhzc\n.. _DynamoDB SQL Library CLA: https://goo.gl/forms/ttduh4g7Nt\n.. _GNU Affero General Public License (AGPL-3.0): http://goo.gl/LOMJeU\n.. _Keyword Documentation: https://goo.gl/xPJK6j\n.. _pip: http://goo.gl/jlJCPE\n.. _Robot Framework: http://goo.gl/lES6WM\n.. _Robot Framework Documentation: http://goo.gl/zy53tf\n.. _Robot Framework installed: https://goo.gl/PFbWqM\n.. _Robot Framework User Guide: http://goo.gl/Q7dfPB\n.. _SQL-like: https://goo.gl/RRKSeK\n.. |Build| image:: https://img.shields.io/travis/rickypc/robotframework-dynamodbsqllibrary.svg\n :target: https://goo.gl/vBT1y2\n :alt: Build Status\n.. |Coverage| image:: https://img.shields.io/codecov/c/github/rickypc/robotframework-dynamodbsqllibrary.svg\n :target: https://goo.gl/anBeKH\n :alt: Code Coverage\n.. |Grade| image:: https://img.shields.io/codacy/242f6dae492b4d168d6a4f4a9d5f1fc0.svg\n :target: https://goo.gl/XZ7Tqg\n :alt: Code Grade\n.. |Docs| image:: https://img.shields.io/badge/docs-latest-brightgreen.svg\n :target: https://goo.gl/xPJK6j\n :alt: Keyword Documentation\n.. |Version| image:: https://img.shields.io/pypi/v/robotframework-dynamodbsqllibrary.svg\n :target: https://goo.gl/kOsXOU\n :alt: Package Version\n.. |Status| image:: https://img.shields.io/pypi/status/robotframework-dynamodbsqllibrary.svg\n :target: https://goo.gl/kOsXOU\n :alt: Development Status\n.. |Python| image:: https://img.shields.io/pypi/pyversions/robotframework-dynamodbsqllibrary.svg\n :target: https://goo.gl/sXzgao\n :alt: Python Version\n.. |Download| image:: https://img.shields.io/pypi/dm/robotframework-dynamodbsqllibrary.svg\n :target: https://goo.gl/kOsXOU\n :alt: Monthly Download\n.. |License| image:: https://img.shields.io/pypi/l/robotframework-dynamodbsqllibrary.svg\n :target: http://goo.gl/LOMJeU\n :alt: License", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/rickypc/robotframework-dynamodbsqllibrary", "keywords": "robot framework testing automation bigdata amazon dynamodb dynamo db nosql sql dsl json aws big data softwaretesting", "license": "AGPL 3", "maintainer": null, "maintainer_email": null, "name": "robotframework-dynamodbsqllibrary", "package_url": "https://pypi.org/project/robotframework-dynamodbsqllibrary/", "platform": "any", "project_url": "https://pypi.org/project/robotframework-dynamodbsqllibrary/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/rickypc/robotframework-dynamodbsqllibrary" }, "release_url": "https://pypi.org/project/robotframework-dynamodbsqllibrary/0.2.1/", "requires_dist": null, "requires_python": null, "summary": "An Amazon AWS DynamoDB big data testing library for Robot Framework with SQL-like DSL", "version": "0.2.1" }, "last_serial": 1720321, "releases": { "0.0.12": [ { "comment_text": "", "digests": { "md5": "ef8d9bb2bd5055f3959c893ae6c5e16d", "sha256": "7bc55c0b82686697e38afce7ff518f390ff0f8cf504ff04a703cbe788dc6bce2" }, "downloads": -1, "filename": "robotframework-dynamodbsqllibrary-0.0.12.tar.gz", "has_sig": true, "md5_digest": "ef8d9bb2bd5055f3959c893ae6c5e16d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68154, "upload_time": "2015-07-22T08:14:22", "url": "https://files.pythonhosted.org/packages/cd/70/24d3dcb740b3efd5a4b18397ea93da79512d5c545980af1f9e5861302dcc/robotframework-dynamodbsqllibrary-0.0.12.tar.gz" }, { "comment_text": "", "digests": { "md5": "9f20b7fa3f1c9c9d8d5c65196c2a476f", "sha256": "ff8eb2c0c6fea88c9da8e2424b4f5ffbce7450846556ea793b7724a666e19a8e" }, "downloads": -1, "filename": "robotframework-dynamodbsqllibrary-0.0.12.zip", "has_sig": true, "md5_digest": "9f20b7fa3f1c9c9d8d5c65196c2a476f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82216, "upload_time": "2015-07-22T08:14:33", "url": "https://files.pythonhosted.org/packages/6a/54/4516f23c6dd613d9e7dc3528c5917d1dff168086b42b3904be82879f6dfe/robotframework-dynamodbsqllibrary-0.0.12.zip" } ], "0.0.13": [ { "comment_text": "", "digests": { "md5": "a53de17d1aa654e12e8d82a626c87a7c", "sha256": "72cd1b7ff432be3d9136f073b93bf7ec81cc58aefdd5d39a6136a284d83b3e0d" }, "downloads": -1, "filename": "robotframework-dynamodbsqllibrary-0.0.13.tar.gz", "has_sig": true, "md5_digest": "a53de17d1aa654e12e8d82a626c87a7c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68286, "upload_time": "2015-07-23T05:05:37", "url": "https://files.pythonhosted.org/packages/8e/fa/57d93bcd912f354f968f6a0a90c58fb572f643369cedd172e1a06696e30f/robotframework-dynamodbsqllibrary-0.0.13.tar.gz" }, { "comment_text": "", "digests": { "md5": "d6eb57065c691a786041c51cad0e19fc", "sha256": "ba943846b227c2f156b1cf64bc35626e5c6f8871509da53aaa7d487be7d88d3d" }, "downloads": -1, "filename": "robotframework-dynamodbsqllibrary-0.0.13.zip", "has_sig": true, "md5_digest": "d6eb57065c691a786041c51cad0e19fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82461, "upload_time": "2015-07-23T05:05:45", "url": "https://files.pythonhosted.org/packages/80/5c/35e865647e6786e3f8174f8d65f8027a2aa0aae6fb1786101346eaf2a03b/robotframework-dynamodbsqllibrary-0.0.13.zip" } ], "0.0.14": [ { "comment_text": "", "digests": { "md5": "a032fe0cb6a1bfba725565187c0f01a8", "sha256": "a735d933045f2e495b38862e467af876b8ae102bb7760e31ef0eef9edfa4b3f7" }, "downloads": -1, "filename": "robotframework-dynamodbsqllibrary-0.0.14.tar.gz", "has_sig": true, "md5_digest": "a032fe0cb6a1bfba725565187c0f01a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68888, "upload_time": "2015-07-30T03:13:41", "url": "https://files.pythonhosted.org/packages/d9/f8/65666bcda2d4bee510c2327d9baef626c3d4b9458e3ff5df8c62cef541de/robotframework-dynamodbsqllibrary-0.0.14.tar.gz" }, { "comment_text": "", "digests": { "md5": "0216342b6ac00f8037e67296cfe3c420", "sha256": "a08b7a2c2c0b217e0ecc388e5fe59c27aa6b6c71b41c1f7f85ed905655a95056" }, "downloads": -1, "filename": "robotframework-dynamodbsqllibrary-0.0.14.zip", "has_sig": true, "md5_digest": "0216342b6ac00f8037e67296cfe3c420", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83294, "upload_time": "2015-07-30T03:13:48", "url": "https://files.pythonhosted.org/packages/6a/b2/437b2303024ddcb5972bdb653beea9a41099cc58f2b7dc9d6587a74f3f00/robotframework-dynamodbsqllibrary-0.0.14.zip" } ], "0.0.15": [ { "comment_text": "", "digests": { "md5": "94b49f045403469a2848cb3880b2a81e", "sha256": "3e728d00230fc02eafe9f82f54a37ff39ebf92ebd3aa2e17c255d7035583b990" }, "downloads": -1, "filename": "robotframework-dynamodbsqllibrary-0.0.15.tar.gz", "has_sig": true, "md5_digest": "94b49f045403469a2848cb3880b2a81e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69016, "upload_time": "2015-07-31T07:59:21", "url": "https://files.pythonhosted.org/packages/96/c9/37a832c0ab86f51dfd2437abd9d766bd1d14db3745a9298dc6233649696d/robotframework-dynamodbsqllibrary-0.0.15.tar.gz" }, { "comment_text": "", "digests": { "md5": "a3c90e3ac3cee2db22473d6150265746", "sha256": "67cf3c6895082c9197d8680cc2d7a009617a0101ae90d505fc8b4d7c736815ce" }, "downloads": -1, "filename": "robotframework-dynamodbsqllibrary-0.0.15.zip", "has_sig": true, "md5_digest": "a3c90e3ac3cee2db22473d6150265746", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83448, "upload_time": "2015-07-31T07:59:29", "url": "https://files.pythonhosted.org/packages/5a/b1/a9dc04b70b6a4c619deacd8ad9c6aff2e182430458eee86e8474eecd989d/robotframework-dynamodbsqllibrary-0.0.15.zip" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "02e6439f683055258af9dc48af1f3846", "sha256": "c04ab26ece1e04916c9332881c5a5fa15f0cf6589119b7d035ebc1601e834777" }, "downloads": -1, "filename": "robotframework-dynamodbsqllibrary-0.1.2.tar.gz", "has_sig": true, "md5_digest": "02e6439f683055258af9dc48af1f3846", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70956, "upload_time": "2015-08-02T06:08:31", "url": "https://files.pythonhosted.org/packages/a1/8b/e2c85d175cb878266edcc08728c2645999bcd1c3f6f074d61c806d3fb248/robotframework-dynamodbsqllibrary-0.1.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "7ec17d09b175ae13228c029ca56eae43", "sha256": "874abc39e6af9428b21e2fcf7e94f94de858a125ad7ae013f3f6dd2e0e47dcaf" }, "downloads": -1, "filename": "robotframework-dynamodbsqllibrary-0.1.2.zip", "has_sig": true, "md5_digest": "7ec17d09b175ae13228c029ca56eae43", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85861, "upload_time": "2015-08-02T06:08:39", "url": "https://files.pythonhosted.org/packages/bc/b5/ff1507a7494731fd8ea5dead1b0dce05429833dfd5cdc1d17400fc449830/robotframework-dynamodbsqllibrary-0.1.2.zip" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "a12eda5058825d0c7744ea8638b6ad31", "sha256": "4d99a50e8091f78898b0276f82c75042fa356881917201d89c57dee80960d8a8" }, "downloads": -1, "filename": "robotframework-dynamodbsqllibrary-0.2.0.tar.gz", "has_sig": true, "md5_digest": "a12eda5058825d0c7744ea8638b6ad31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72367, "upload_time": "2015-08-03T03:39:57", "url": "https://files.pythonhosted.org/packages/f4/83/5df9d66fc88ebb01624b9d6ccd77413d44778fa2d1f4d7fb43ce4951ef05/robotframework-dynamodbsqllibrary-0.2.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "f6a9018fdf1fa2a36e667fbfe8eff021", "sha256": "0ba778e174ce90b2db49683ae8f6920a88c31ecc3003c40bb0458897bf37858c" }, "downloads": -1, "filename": "robotframework-dynamodbsqllibrary-0.2.0.zip", "has_sig": true, "md5_digest": "f6a9018fdf1fa2a36e667fbfe8eff021", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 87201, "upload_time": "2015-08-03T03:40:05", "url": "https://files.pythonhosted.org/packages/e3/8d/d53cf591b0581e8f662408e2a7ae7cf465ce841ed27c774e044c0daad51c/robotframework-dynamodbsqllibrary-0.2.0.zip" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "e89c29b2f499e2243010140b6ab073bd", "sha256": "feaad7aee390b628b990c9e51c0433c939b8e310867dd4366786ec2e21f5c0d3" }, "downloads": -1, "filename": "robotframework-dynamodbsqllibrary-0.2.1.tar.gz", "has_sig": true, "md5_digest": "e89c29b2f499e2243010140b6ab073bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73557, "upload_time": "2015-08-22T04:23:56", "url": "https://files.pythonhosted.org/packages/54/8f/41f5f47c9f8d6e11842a14461623e54a0b745d16593b4c8a63c40a3a9188/robotframework-dynamodbsqllibrary-0.2.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "a6c419b449ac1c09b0c6ac5d2c070f0b", "sha256": "d1d501c61fc7851e09b50b4aad38612267b9a09c761c405a167664b25a9329ac" }, "downloads": -1, "filename": "robotframework-dynamodbsqllibrary-0.2.1.zip", "has_sig": true, "md5_digest": "a6c419b449ac1c09b0c6ac5d2c070f0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 88986, "upload_time": "2015-08-22T04:24:04", "url": "https://files.pythonhosted.org/packages/23/5a/7902d8036aa98f25b9b517b74b0e76e5cc2f181ec759298308ef8e4b6902/robotframework-dynamodbsqllibrary-0.2.1.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e89c29b2f499e2243010140b6ab073bd", "sha256": "feaad7aee390b628b990c9e51c0433c939b8e310867dd4366786ec2e21f5c0d3" }, "downloads": -1, "filename": "robotframework-dynamodbsqllibrary-0.2.1.tar.gz", "has_sig": true, "md5_digest": "e89c29b2f499e2243010140b6ab073bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73557, "upload_time": "2015-08-22T04:23:56", "url": "https://files.pythonhosted.org/packages/54/8f/41f5f47c9f8d6e11842a14461623e54a0b745d16593b4c8a63c40a3a9188/robotframework-dynamodbsqllibrary-0.2.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "a6c419b449ac1c09b0c6ac5d2c070f0b", "sha256": "d1d501c61fc7851e09b50b4aad38612267b9a09c761c405a167664b25a9329ac" }, "downloads": -1, "filename": "robotframework-dynamodbsqllibrary-0.2.1.zip", "has_sig": true, "md5_digest": "a6c419b449ac1c09b0c6ac5d2c070f0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 88986, "upload_time": "2015-08-22T04:24:04", "url": "https://files.pythonhosted.org/packages/23/5a/7902d8036aa98f25b9b517b74b0e76e5cc2f181ec759298308ef8e4b6902/robotframework-dynamodbsqllibrary-0.2.1.zip" } ] }