Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
This is the Python driver for Amazon Quantum Ledger Database (QLDB), which allows Python developers to write software that makes use of Amazon QLDB.
For getting started with the driver, see Python and Amazon QLDB.
See Accessing Amazon QLDB for information on connecting to AWS.
Pyqldb 2.x requires Python 3.4 or later.
Pyqldb 3.x requires Python 3.6 or later.
Please see the link below for more detail to install Python:
Please see the Quickstart guide for the Amazon QLDB Driver for Python.
First, install the driver using pip:
pip install pyqldb
Then from a Python interpreter, call the driver and specify the ledger name:
from pyqldb.driver.qldb_driver import QldbDriver
qldb_driver = QldbDriver(ledger_name='test-ledger')
for table in qldb_driver.list_tables():
print(table)
Assuming that you have Python and virtualenv
installed, set up your environment and installed the dependencies
like this instead of the pip install pyqldb
defined above:
$ git clone https://github.com/awslabs/amazon-qldb-driver-python
$ cd amazon-qldb-driver-python
$ virtualenv venv
...
$ . venv/bin/activate
$ pip install -r requirements.txt
$ pip install -e .
You can run the unit tests with this command:
$ pytest --cov-report term-missing --cov=pyqldb tests/unit
You can run the integration tests with this command:
$ pytest tests/integration
Sphinx is used for documentation. You can generate HTML locally with the following:
$ pip install -r requirements-docs.txt
$ pip install -e .
$ cd docs
$ make html
Please use these community resources for getting help.
If you encounter a bug with the Amazon QLDB Python Driver, we would like to hear about it. Please search the existing issues and see if others are also experiencing the issue before opening a new issue. When opening a new issue, we will need the version of Amazon QLDB Python Driver, Python language version, and OS you're using. Please also include reproduction case for the issue when appropriate.
The GitHub issues are intended for bug reports and feature requests. For help and questions with using Amazon QLDB Python Driver, please make use of the resources listed in the Getting Help section. Keeping the list of open issues lean will help us respond in a timely manner.
This library is licensed under the Apache 2.0 License.
FAQs
Python driver for Amazon QLDB
We found that pyqldb demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.