robotframework-dynamodbsqllibrary


Namerobotframework-dynamodbsqllibrary JSON
Version 0.3.0 PyPI version JSON
download
home_pagehttps://github.com/rickypc/robotframework-dynamodbsqllibrary
SummaryAn Amazon AWS DynamoDB big data testing library for Robot Framework with SQL-like DSL
upload_time2023-01-19 19:20:30
maintainer
docs_urlNone
authorRichard Huang
requires_python
licenseAGPL 3
keywords robot framework testing automation bigdata amazon dynamodb dynamo db nosql sql dsl json aws big data softwaretesting
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            Amazon AWS DynamoDB big data testing library for Robot Framework
================================================================

|Build| |Coverage| |Grade| |Docs| |Version| |Status| |Python| |Download| |License|

Introduction
------------

DynamoDB SQL Library is a big data testing library for `Robot Framework`_
that gives you the capability to execute scan and query operations against
multi `Amazon DynamoDB`_ sessions simultaneously using a `SQL-like`_ DSL_.

It leverages DynamoDB Query Languange (DQL_) internally to provide a `SQL-like`_ DSL_
for `Amazon DynamoDB`_.

More information about DQL queries can be found in the `DQL Queries Documentation`_.

More information about this library can be found in the `Keyword Documentation`_.

Example
'''''''

+-----------------------------+----------------+------------------------------------------------------+
| Create DynamoDB Session     | us-west-2      | label=oregon                                         |
+-----------------------------+----------------+------------------------------------------------------+
| Create DynamoDB Session     | ap-southeast-1 | label=singapore                                      |
+-----------------------------+----------------+------------------------------------------------------+
| Create DynamoDB Session     | eu-central-1   | label=frankfurt                                      |
+-----------------------------+----------------+------------------------------------------------------+
| Query DynamoDB              | oregon         | CREATE TABLE mine (id STRING HASH KEY)               |
+-----------------------------+----------------+------------------------------------------------------+
| Query DynamoDB              | singapore      | CREATE TABLE mine (id STRING HASH KEY)               |
+-----------------------------+----------------+------------------------------------------------------+
| Query DynamoDB              | frankfurt      | CREATE TABLE mine (id STRING HASH KEY)               |
+-----------------------------+----------------+------------------------------------------------------+
| DynamoDB Table Should Exist | oregon         | mine                                                 |
+-----------------------------+----------------+------------------------------------------------------+
| DynamoDB Table Should Exist | singapore      | mine                                                 |
+-----------------------------+----------------+------------------------------------------------------+
| DynamoDB Table Should Exist | frankfurt      | mine                                                 |
+-----------------------------+----------------+------------------------------------------------------+
| Query DynamoDB              | oregon         | INSERT INTO mine (id) VALUES ('oregon')              |
+-----------------------------+----------------+------------------------------------------------------+
| Query DynamoDB              | singapore      | INSERT INTO mine (id) VALUES ('singapore')           |
+-----------------------------+----------------+------------------------------------------------------+
| Query DynamoDB              | frankfurt      | INSERT INTO mine (id) VALUES ('frankfurt')           |
+-----------------------------+----------------+----------------+-------------------------------------+
| @{oregon} =                 | Query DynamoDB | oregon         | SCAN mine                           |
+-----------------------------+----------------+----------------+-------------------------------------+
| @{singapore} =              | Query DynamoDB | singapore      | SCAN mine                           |
+-----------------------------+----------------+----------------+-------------------------------------+
| @{frankfurt} =              | Query DynamoDB | frankfurt      | SCAN mine                           |
+-----------------------------+----------------+----------------+-------------------------------------+
| List And JSON String Should Be Equal         | ${oregon}      | [{"id":"oregon"}]                   |
+----------------------------------------------+----------------+-------------------------------------+
| List And JSON String Should Be Equal         | ${singapore}   | [{"id":"singapore"}]                |
+----------------------------------------------+----------------+-------------------------------------+
| List And JSON String Should Be Equal         | ${frankfurt}   | [{"id":"frankfurt"}]                |
+----------------------------------------------+----------------+-------------------------------------+
| Delete All Dynamodb Sessions                                                                        |
+-----------------------------------------------------------------------------------------------------+

Config and Credentials File
'''''''''''''''''''''''''''

Set up config file in default location:

- ~/.aws/config (Linux/Mac)
- %USERPROFILE%\\.aws\\config (Windows)

.. code-block:: ini

    [default]
    region = us-east-1

Set up credentials file in default location:

- ~/.aws/credentials (Linux/Mac)
- %USERPROFILE%\\.aws\\credentials (Windows)

.. code-block:: ini

    [default]
    aws_access_key_id = YOUR_KEY
    aws_secret_access_key = YOUR_SECRET

    [another_profile]
    aws_access_key_id = ANOTHER_KEY
    aws_secret_access_key = ANOTHER_SECRET
    region = us-west-1

Installation
------------

Using ``pip``
'''''''''''''

The recommended installation method is using pip_:

.. code:: bash

    pip install robotframework-dynamodbsqllibrary

The main benefit of using ``pip`` is that it automatically installs all
dependencies needed by the library. Other nice features are easy upgrading
and support for un-installation:

.. code:: bash

    pip install --upgrade robotframework-dynamodbsqllibrary
    pip uninstall robotframework-dynamodbsqllibrary

Notice that using ``--upgrade`` above updates both the library and all
its dependencies to the latest version. If you want, you can also install
a specific version or upgrade only the dql_ package used by the library:

.. code:: bash

    pip install robotframework-dynamodbsqllibrary==x.x.x
    pip install --upgrade dql
    pip install dql==x.x.x

Proxy configuration
'''''''''''''''''''

If you are behind a proxy, you can use ``--proxy`` command line option
or set ``http_proxy`` and/or ``https_proxy`` environment variables to
configure ``pip`` to use it. If you are behind an authenticating NTLM proxy,
you may want to consider installing CNTML_ to handle communicating with it.

For more information about ``--proxy`` option and using pip with proxies
in general see:

- http://pip-installer.org/en/latest/usage.html
- http://stackoverflow.com/questions/9698557/how-to-use-pip-on-windows-behind-an-authenticating-proxy
- http://stackoverflow.com/questions/14149422/using-pip-behind-a-proxy

Manual installation
'''''''''''''''''''

If you do not have network connection or cannot make proxy to work, you need
to resort to manual installation. This requires installing both the library
and its dependencies yourself.

- Make sure you have `Robot Framework installed`_.

- Download source distributions (``*.tar.gz``) for the library and its dependencies:

  - https://pypi.python.org/pypi/robotframework-dynamodbsqllibrary
  - https://pypi.python.org/pypi/dql

- Download PGP signatures (``*.tar.gz.asc``) for signed packages.

- Find each public key used to sign the package:

.. code:: bash

    gpg --keyserver pgp.mit.edu --search-keys D1406DE7

- Select the number from the list to import the public key

- Verify the package against its PGP signature:

.. code:: bash

    gpg --verify robotframework-dynamodbsqllibrary-x.x.x.tar.gz.asc robotframework-dynamodbsqllibrary-x.x.x.tar.gz

- Extract each source distribution to a temporary location.

- Go to each created directory from the command line and install each project using:

.. code:: bash

       python setup.py install

If you are on Windows, and there are Windows installers available for
certain projects, you can use them instead of source distributions.
Just download 32bit or 64bit installer depending on your system,
double-click it, and follow the instructions.

Directory Layout
----------------

doc/
    `Keyword documentation`_

src/
    Python source code

test/
     Test files

     atest/
           `Robot Framework`_ acceptance test

     utest/
           Python unit test

Usage
-----

To write tests with Robot Framework and DynamoDB SQL Library,
DynamoDB SQL Library must be imported into your Robot test suite.
See `Robot Framework User Guide`_ for more information.

More information about Robot Framework standard libraries and built-in tools
can be found in the `Robot Framework Documentation`_.

Building Keyword Documentation
------------------------------

The `Keyword Documentation`_ can be found online, if you need to generate the keyword documentation, run:

.. code:: bash

    make doc

Run Unit Tests, Acceptance Tests, and Test Coverage Report
----------------------------------------------------------

Test the testing library, talking about dogfooding, let's run:

.. code:: bash

    make test

Contributing
------------

If you would like to contribute code to DynamoDB SQL Library repository, you can do so through GitHub by forking the repository and sending a pull request.

If you do not agree to `Contribution Agreement`_, do not contribute any code to DynamoDB SQL Library repository.

When 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.

That's it! Thank you for your contribution!

License
-------

Copyright (c) 2014 - 2023 Richard Huang.

This library is free software, licensed under: `GNU Affero General Public License (AGPL-3.0)`_.

Documentation and other similar content are provided under `Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License`_.

.. _Amazon DynamoDB: https://goo.gl/C4yE9H
.. _Contribution Agreement: CONTRIBUTING.md 
.. _CNTML: http://goo.gl/ukiwSO
.. _Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License: http://goo.gl/SNw73V
.. _dql: https://goo.gl/n43Il4
.. _DQL Queries Documentation: https://goo.gl/RRKSeK
.. _DSL: https://goo.gl/P1fhzc
.. _DynamoDB SQL Library CLA: https://goo.gl/forms/ttduh4g7Nt
.. _GNU Affero General Public License (AGPL-3.0): http://goo.gl/LOMJeU
.. _Keyword Documentation: https://goo.gl/xPJK6j
.. _pip: http://goo.gl/jlJCPE
.. _Robot Framework: http://goo.gl/lES6WM
.. _Robot Framework Documentation: http://goo.gl/zy53tf
.. _Robot Framework installed: https://goo.gl/PFbWqM
.. _Robot Framework User Guide: http://goo.gl/Q7dfPB
.. _SQL-like: https://goo.gl/RRKSeK
.. |Build| image:: https://img.shields.io/travis/rickypc/robotframework-dynamodbsqllibrary.svg
    :target: https://goo.gl/vBT1y2
    :alt: Build Status
.. |Coverage| image:: https://img.shields.io/codecov/c/github/rickypc/robotframework-dynamodbsqllibrary.svg
    :target: https://goo.gl/anBeKH
    :alt: Code Coverage
.. |Grade| image:: https://img.shields.io/codacy/242f6dae492b4d168d6a4f4a9d5f1fc0.svg
    :target: https://goo.gl/XZ7Tqg
    :alt: Code Grade
.. |Docs| image:: https://img.shields.io/badge/docs-latest-brightgreen.svg
    :target: https://goo.gl/xPJK6j
    :alt: Keyword Documentation
.. |Version| image:: https://img.shields.io/pypi/v/robotframework-dynamodbsqllibrary.svg
    :target: https://goo.gl/kOsXOU
    :alt: Package Version
.. |Status| image:: https://img.shields.io/pypi/status/robotframework-dynamodbsqllibrary.svg
    :target: https://goo.gl/kOsXOU
    :alt: Development Status
.. |Python| image:: https://img.shields.io/pypi/pyversions/robotframework-dynamodbsqllibrary.svg
    :target: https://goo.gl/sXzgao
    :alt: Python Version
.. |Download| image:: https://img.shields.io/pypi/dm/robotframework-dynamodbsqllibrary.svg
    :target: https://goo.gl/kOsXOU
    :alt: Monthly Download
.. |License| image:: https://img.shields.io/pypi/l/robotframework-dynamodbsqllibrary.svg
    :target: http://goo.gl/LOMJeU
    :alt: License

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/rickypc/robotframework-dynamodbsqllibrary",
    "name": "robotframework-dynamodbsqllibrary",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "robot framework testing automation bigdata amazon dynamodb dynamo db nosql sql dsl json aws big data softwaretesting",
    "author": "Richard Huang",
    "author_email": "rickypc@users.noreply.github.com",
    "download_url": "https://files.pythonhosted.org/packages/e9/d6/5297edf57a0f4d3d88d0c5bcdb549c2d6324d8276276d7f49b5050f4c982/robotframework-dynamodbsqllibrary-0.3.0.tar.gz",
    "platform": "any",
    "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\nDynamoDB SQL Library 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 DynamoDB SQL Library,\nDynamoDB SQL Library 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 repository, you can do so through GitHub by forking the repository and sending a pull request.\n\nIf you do not agree to `Contribution Agreement`_, do not contribute any code to DynamoDB SQL Library repository.\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\nThat's it! Thank you for your contribution!\n\nLicense\n-------\n\nCopyright (c) 2014 - 2023 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.. _Contribution Agreement: CONTRIBUTING.md \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\n",
    "bugtrack_url": null,
    "license": "AGPL 3",
    "summary": "An Amazon AWS DynamoDB big data testing library for Robot Framework with SQL-like DSL",
    "version": "0.3.0",
    "split_keywords": [
        "robot",
        "framework",
        "testing",
        "automation",
        "bigdata",
        "amazon",
        "dynamodb",
        "dynamo",
        "db",
        "nosql",
        "sql",
        "dsl",
        "json",
        "aws",
        "big",
        "data",
        "softwaretesting"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9d65297edf57a0f4d3d88d0c5bcdb549c2d6324d8276276d7f49b5050f4c982",
                "md5": "1c7c5ef2130463b1fd5d198d77ff73da",
                "sha256": "74ac8583f829f508ffdd373ed46950351e0b4caf74b818496ecec467dd8e902a"
            },
            "downloads": -1,
            "filename": "robotframework-dynamodbsqllibrary-0.3.0.tar.gz",
            "has_sig": true,
            "md5_digest": "1c7c5ef2130463b1fd5d198d77ff73da",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 78504,
            "upload_time": "2023-01-19T19:20:30",
            "upload_time_iso_8601": "2023-01-19T19:20:30.810762Z",
            "url": "https://files.pythonhosted.org/packages/e9/d6/5297edf57a0f4d3d88d0c5bcdb549c2d6324d8276276d7f49b5050f4c982/robotframework-dynamodbsqllibrary-0.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-19 19:20:30",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "rickypc",
    "github_project": "robotframework-dynamodbsqllibrary",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "lcname": "robotframework-dynamodbsqllibrary"
}
        
Elapsed time: 0.03864s