
Security News
Static vs. Runtime Reachability: Insights from Latio’s On the Record Podcast
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
The purpose of microcdt
is to be the smallest practical client
library for accessing Cloudant/CouchDB databases. It’s neither fully
featured, nor complete in its API surface cover (nor is it intended to
be).
It caters for the most basic operations, such as creating and deleting databases, reading, creating, deleting, and updating documents, and listing all documents in a database.
It also has rudimentary support for bulk operations.
The Cloudant class subclasses requests.Session
, so any API endpoint
not implemented directly can always be called using
Cloudant.get|put|post|request
.
.. code:: python
from microcdt import Cloudant
db = 'mydatabase'
cdt = Cloudant('https://account.cloudant.com')
cdt.auth = (USERNAME, PASSWORD)
cdt.create_database(db)
result = cdt.create_doc(db, {'name': 'adam'})
cdt.delete_database(db)
FAQs
A microscopic client library for accessing Cloudant databases
We found that microcdt demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.