Skip to content

Commit 4189e53

Browse files
committed
initial commit
0 parents  commit 4189e53

83 files changed

Lines changed: 11059 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
amalgamation
2+
build

LICENSE

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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.

MANIFEST.in

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
include MANIFEST.in
2+
include LICENSE
3+
include cross_bdist_wininst.py
4+
include doc/*.txt
5+
include doc/includes/sqlite3/*.py
6+
include doc/sphinx/*
7+
include doc/sphinx/.static/.keepme
8+
include src/*.h

PKG-INFO

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
Metadata-Version: 1.0
2+
Name: pysqlite
3+
Version: 2.6.3
4+
Summary: DB-API 2.0 interface for SQLite 3.x
5+
Home-page: http://pysqlite.googlecode.com/
6+
Author: Gerhard Haering
7+
Author-email: gh@ghaering.de
8+
License: zlib/libpng license
9+
Download-URL: http://code.google.com/p/pysqlite/downloads/list
10+
Description: Python interface to SQLite 3
11+
12+
pysqlite is an interface to the SQLite 3.x embedded relational database engine.
13+
It is almost fully compliant with the Python database API version 2.0 also
14+
exposes the unique features of SQLite.
15+
Platform: ALL
16+
Classifier: Development Status :: 5 - Production/Stable
17+
Classifier: Intended Audience :: Developers
18+
Classifier: License :: OSI Approved :: zlib/libpng License
19+
Classifier: Operating System :: MacOS :: MacOS X
20+
Classifier: Operating System :: Microsoft :: Windows
21+
Classifier: Operating System :: POSIX
22+
Classifier: Programming Language :: C
23+
Classifier: Programming Language :: Python
24+
Classifier: Topic :: Database :: Database Engines/Servers
25+
Classifier: Topic :: Software Development :: Libraries :: Python Modules

README.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
pysqlcipher
2+
===========
3+
4+
this library is an experimental fork of pysqlite,
5+
and is statically linked against sqlcipher.
6+
7+
Original code (c) 2004-2007 Gerhard Häring
8+
SQLCipher (c) 2013 Kali Kaneko
9+
10+
It uses a sqlcipher amalgamation, see https://www.sqlite.org/amalgamation.html
11+

0 commit comments

Comments
 (0)