
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Multithreading for Sqlite, plus expression composition
This module wraps the sqlite3.connection
with thread-safe traffic manager. Here is typical usage:
from mo_sqlite import Sqlite
db = Sqlite("mydb.sqlite")
with db.transaction() as t:
t.command("insert into mytable values (1, 2, 3)")
While you may have each thread own a sqlite3.connection
to the same file, you will still get exceptions when another thread has the file locked.
This module includes a minimum experimental structure that can describe pulling deeply nested JSON documents out of a normalized database. The tactic is to shape a single query who's resultset can be easily converted to the desired JSON by Python. Read more on pulling json from a database
There are multiple normal forms, including domain key normal form, and columnar form; these have a multitude one-to-one relations, all represent the same logical schema, but differ in their access patterns to optimize for particular use cases. This module intends to hide the particular database schema from the caller; exposing just the logical schema.
This experiment compliments the mo-columns experiment, which is about pushing JSON into a database.
FAQs
Multithreading for Sqlite, plus expression composition
We found that mo-sqlite 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 Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.