You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider this README as a getting started guide. For detailed documentation refer [https://aosingh.github.io/sqlite_rx/](https://aosingh.github.io/sqlite_rx/)
9
+
Consider this README as a getting started guide.
10
+
11
+
For detailed documentation refer [https://aosingh.github.io/sqlite_rx/](https://aosingh.github.io/sqlite_rx/)
10
12
11
13
# Introduction
12
14
@@ -27,7 +29,7 @@ Key Features
27
29
# Install
28
30
29
31
```commandline
30
-
pip install sqlite_rx
32
+
pip install -U sqlite_rx
31
33
```
32
34
33
35
## Supported OS
@@ -39,11 +41,13 @@ pip install sqlite_rx
39
41
- CPython 3.6, 3.7, 3.8, 3.9
40
42
- PyPy3.6
41
43
44
+
42
45
# Server
43
46
44
47
`SQLiteServer` runs in a single thread and follows an event-driven concurrency model (using `tornado's` event loop) which minimizes the cost of concurrent client connections. Following snippet shows how you can start the server process.
45
48
46
49
```python
50
+
# server.py
47
51
from sqlite_rx.server import SQLiteServer
48
52
49
53
defmain():
@@ -64,6 +68,7 @@ if __name__ == '__main__':
64
68
65
69
```
66
70
71
+
67
72
# Client
68
73
69
74
The following snippet shows how you can instantiate an `SQLiteClient` and execute a simple `CREATE TABLE` query.
0 commit comments