rotki-sqlite 2025.7.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,42 @@
1
+ Copyright (c) 2004-2007 Gerhard Häring
2
+
3
+ This software is provided 'as-is', without any express or implied warranty. In
4
+ no event will the authors be held liable for any damages arising from the use
5
+ of this software.
6
+
7
+ Permission is granted to anyone to use this software for any purpose,
8
+ including commercial applications, and to alter it and redistribute it freely,
9
+ subject to the following restrictions:
10
+
11
+ 1. The origin of this software must not be misrepresented; you must not
12
+ claim that you wrote the original software. If you use this software in
13
+ a product, an acknowledgment in the product documentation would be
14
+ appreciated but is not required.
15
+
16
+ 2. Altered source versions must be plainly marked as such, and must not be
17
+ misrepresented as being the original software.
18
+
19
+ 3. This notice may not be removed or altered from any source distribution.
20
+
21
+
22
+ MIT License
23
+
24
+ Copyright (c) 2025 Rotki Solutions GmbH
25
+
26
+ Permission is hereby granted, free of charge, to any person obtaining a copy
27
+ of this software and associated documentation files (the "Software"), to deal
28
+ in the Software without restriction, including without limitation the rights
29
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
30
+ copies of the Software, and to permit persons to whom the Software is
31
+ furnished to do so, subject to the following conditions:
32
+
33
+ The above copyright notice and this permission notice shall be included in all
34
+ copies or substantial portions of the Software.
35
+
36
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
37
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
38
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
39
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
40
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
41
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
42
+ SOFTWARE.
@@ -0,0 +1,57 @@
1
+ Metadata-Version: 2.4
2
+ Name: rotki-sqlite
3
+ Version: 2025.7.4
4
+ Summary: DB-API 2.0 interface for Sqlite 3.x
5
+ Author-email: Rotki Solutions GmbH <info@rotki.com>
6
+ License: zlib/libpng
7
+ Project-URL: Homepage, https://github.com/rotki/rotki-sqlite
8
+ Classifier: Development Status :: 4 - Beta
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: zlib/libpng License
11
+ Classifier: Operating System :: MacOS :: MacOS X
12
+ Classifier: Operating System :: Microsoft :: Windows
13
+ Classifier: Operating System :: POSIX
14
+ Classifier: Programming Language :: C
15
+ Classifier: Programming Language :: Python
16
+ Classifier: Topic :: Database :: Database Engines/Servers
17
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
18
+ Requires-Python: ==3.11.*
19
+ Description-Content-Type: text/markdown
20
+ License-File: LICENSE
21
+ Dynamic: license-file
22
+
23
+ # rsqlite3
24
+
25
+ A Python SQLite3 extension module with static SQLite build support.
26
+
27
+ ## Building
28
+
29
+ This project supports building with a statically linked SQLite library. The sqlite3.c and sqlite3.h amalgamation files are included in the repository.
30
+
31
+ ### Build with uv
32
+
33
+ To build the wheel with static SQLite using uv:
34
+
35
+ ```bash
36
+ uv build --wheel
37
+ ```
38
+
39
+ ### Build with setuptools directly
40
+
41
+ To build with the static SQLite amalgamation:
42
+
43
+ ```bash
44
+ python setup.py build_static bdist_wheel
45
+ ```
46
+
47
+ This will create a wheel file in the `dist/` directory with SQLite statically compiled into the extension.
48
+
49
+ ## Features
50
+
51
+ The static build includes the following SQLite features:
52
+ - FTS3/FTS4/FTS5 (Full Text Search)
53
+ - JSON1 extension
54
+ - RTREE (R-Tree index)
55
+ - Math functions
56
+ - Load extension support
57
+ - And more...
@@ -0,0 +1,35 @@
1
+ # rsqlite3
2
+
3
+ A Python SQLite3 extension module with static SQLite build support.
4
+
5
+ ## Building
6
+
7
+ This project supports building with a statically linked SQLite library. The sqlite3.c and sqlite3.h amalgamation files are included in the repository.
8
+
9
+ ### Build with uv
10
+
11
+ To build the wheel with static SQLite using uv:
12
+
13
+ ```bash
14
+ uv build --wheel
15
+ ```
16
+
17
+ ### Build with setuptools directly
18
+
19
+ To build with the static SQLite amalgamation:
20
+
21
+ ```bash
22
+ python setup.py build_static bdist_wheel
23
+ ```
24
+
25
+ This will create a wheel file in the `dist/` directory with SQLite statically compiled into the extension.
26
+
27
+ ## Features
28
+
29
+ The static build includes the following SQLite features:
30
+ - FTS3/FTS4/FTS5 (Full Text Search)
31
+ - JSON1 extension
32
+ - RTREE (R-Tree index)
33
+ - Math functions
34
+ - Load extension support
35
+ - And more...