New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

dissect.sql

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dissect.sql - pypi Package Compare versions

Comparing version
3.11
to
3.12.dev1
+3
-2
dissect.sql.egg-info/PKG-INFO

@@ -1,4 +0,4 @@

Metadata-Version: 2.2
Metadata-Version: 2.4
Name: dissect.sql
Version: 3.11
Version: 3.12.dev1
Summary: A Dissect module implementing a parsers for the SQLite database file format, commonly used by applications to store configuration data

@@ -30,2 +30,3 @@ Author-email: Dissect Team <dissect@fox-it.com>

Requires-Dist: dissect.util<4.0.dev,>=3.0.dev; extra == "dev"
Dynamic: license-file

@@ -32,0 +33,0 @@ # dissect.sql

+7
-6

@@ -87,10 +87,11 @@ from __future__ import annotations

# See https://www.sqlite.org/fileformat.html -- Record format
SERIAL_TYPES = {
0: lambda fh: None,
1: c_sqlite3.uint8,
2: c_sqlite3.uint16,
3: c_sqlite3.uint24,
4: c_sqlite3.uint32,
5: c_sqlite3.uint48,
6: c_sqlite3.uint64,
1: c_sqlite3.int8,
2: c_sqlite3.int16,
3: c_sqlite3.int24,
4: c_sqlite3.int32,
5: c_sqlite3.int48,
6: c_sqlite3.int64,
7: c_sqlite3.double,

@@ -97,0 +98,0 @@ 8: lambda fh: 0,

@@ -1,4 +0,4 @@

Metadata-Version: 2.2
Metadata-Version: 2.4
Name: dissect.sql
Version: 3.11
Version: 3.12.dev1
Summary: A Dissect module implementing a parsers for the SQLite database file format, commonly used by applications to store configuration data

@@ -30,2 +30,3 @@ Author-email: Dissect Team <dissect@fox-it.com>

Requires-Dist: dissect.util<4.0.dev,>=3.0.dev; extra == "dev"
Dynamic: license-file

@@ -32,0 +33,0 @@ # dissect.sql

@@ -102,1 +102,2 @@ [build-system]

[tool.setuptools_scm]
local_scheme = "no-local-version"

@@ -28,3 +28,3 @@ from __future__ import annotations

rows = list(table.rows())
assert len(rows) == 4
assert len(rows) == 5
assert rows[0].id == 1

@@ -42,2 +42,5 @@ assert rows[0].name == "testing"

assert rows[3].value == 4100
assert rows[4].id == 5
assert rows[4].name == "negative"
assert rows[4].value == -11644473429

@@ -44,0 +47,0 @@ assert len(rows) == len(list(table))

Sorry, the diff of this file is not supported yet