|
1 | | -# sqlite_rx |
| 1 | +# sqlite_rx |
2 | 2 | [](https://pypi.python.org/pypi/sqlite-rx) [](https://github.com/aosingh/sqlite_rx/actions) [](https://pepy.tech/project/sqlite-rx) |
3 | 3 |
|
4 | 4 |
|
5 | | -[](https://www.python.org/downloads/release/python-380/) |
6 | | -[]((https://www.python.org/downloads/release/python-390/)) |
7 | 5 | [](https://www.python.org/downloads/release/python-3100/) |
8 | 6 | [](https://www.python.org/downloads/release/python-3110/) |
9 | 7 | [](https://www.python.org/downloads/release/python-3120/) |
| 8 | +[](https://www.python.org/downloads/release/python-3130/) |
| 9 | +[](https://www.python.org/downloads/release/python-3140/) |
10 | 10 |
|
11 | | - |
12 | | -[](https://www.pypy.org/download.html) |
13 | | -[](https://www.pypy.org/download.html) |
| 11 | +[](https://www.pypy.org/download.html) |
| 12 | +[](https://www.pypy.org/download.html) |
14 | 13 |
|
15 | 14 |
|
16 | 15 | #### For documentation, usage and examples refer [https://aosingh.github.io/sqlite_rx/](https://aosingh.github.io/sqlite_rx/) |
17 | 16 |
|
18 | 17 | # Introduction |
19 | 18 |
|
20 | | -[SQLite](https://www.sqlite.org/index.html) is a lightweight database written in C. |
| 19 | +[SQLite](https://www.sqlite.org/index.html) is a lightweight database written in C. |
21 | 20 | Python has in-built support to interact with the database (locally) which is either stored on disk or in memory. |
22 | 21 |
|
23 | 22 | With `sqlite_rx`, clients should be able to communicate with an `SQLiteServer` in a fast, simple and secure manner and execute queries remotely. |
@@ -47,10 +46,10 @@ from sqlite_rx.server import SQLiteServer |
47 | 46 |
|
48 | 47 | def main(): |
49 | 48 |
|
50 | | - # database is a path-like object giving the pathname |
51 | | - # of the database file to be opened. |
52 | | - |
53 | | - # You can use ":memory:" to open a database connection to a database |
| 49 | + # database is a path-like object giving the pathname |
| 50 | + # of the database file to be opened. |
| 51 | + |
| 52 | + # You can use ":memory:" to open a database connection to a database |
54 | 53 | # that resides in RAM instead of on disk |
55 | 54 |
|
56 | 55 | server = SQLiteServer(database=":memory:", |
@@ -85,4 +84,3 @@ with client: |
85 | 84 |
|
86 | 85 | {'error': None, 'items': []} |
87 | 86 | ``` |
88 | | - |
0 commit comments