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
*[UnQLite's C API](http://unqlite.symisc.net/c_api.html)
32
32
33
-
If you like UnQLite, you might also want to check out [Vedis](http://vedis.symisc.net), an embedded key/value database modeled after Redis (python bindings: [vedis-python](http://vedis-python.readthedocs.org)).
33
+
If you like UnQLite, you might also want to check out [Vedis](http://vedis.symisc.net), an embedded key/value database modeled after Redis (python bindings: [vedis-python](https://vedis-python.readthedocs.io)).
34
34
35
35
## Installation
36
36
@@ -40,7 +40,7 @@ You can install unqlite using `pip`.
40
40
41
41
## Basic usage
42
42
43
-
Below is a sample interactive console session designed to show some of the basic features and functionality of the unqlite-python library. Also check out the [full API documentation](http://unqlite-python.readthedocs.org/en/latest/api.html).
43
+
Below is a sample interactive console session designed to show some of the basic features and functionality of the unqlite-python library. Also check out the [full API documentation](https://unqlite-python.readthedocs.io/en/latest/api.html).
44
44
45
45
To begin, instantiate an ``UnQLite`` object. You can specify either the path to a database file, or use UnQLite as an in-memory database.
46
46
@@ -107,7 +107,7 @@ k2 => 2XXXX
107
107
[('k0', '0'), ('k1', '1')]
108
108
```
109
109
110
-
There are many different ways of interacting with cursors, which are described in the [Cursor API documentation](http://unqlite-python.readthedocs.org/en/latest/api.html#Cursor).
110
+
There are many different ways of interacting with cursors, which are described in the [Cursor API documentation](https://unqlite-python.readthedocs.io/en/latest/api.html#Cursor).
111
111
112
112
### Document store features
113
113
@@ -141,7 +141,7 @@ True
141
141
142
142
This is just a taste of what is possible with Jx9. In the near future I may add some wrappers around common Jx9 collection operations, but for now hopefully it is not too difficult to work with.
143
143
144
-
More information can be found in the [VM API documentation](http://unqlite-python.readthedocs.org/en/latest/api.html#VM).
144
+
More information can be found in the [VM API documentation](https://unqlite-python.readthedocs.io/en/latest/api.html#VM).
Copy file name to clipboardExpand all lines: docs/index.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ The source code for unqlite-python is `hosted on GitHub <https://github.com/cole
37
37
If you encounter any bugs in the library, please `open an issue <https://github.com/coleifer/unqlite-python/issues/new>`_, including a description of the bug and any related traceback.
38
38
39
39
.. note::
40
-
If you like UnQLite, you might also want to check out `Vedis <http://vedis.symisc.net>`_, an embedded key/value database modeled after Redis (python bindings: `vedis-python <http://vedis-python.readthedocs.org>`_).
40
+
If you like UnQLite, you might also want to check out `Vedis <http://vedis.symisc.net>`_, an embedded key/value database modeled after Redis (python bindings: `vedis-python <https://vedis-python.readthedocs.io>`_).
Copy file name to clipboardExpand all lines: docs/quickstart.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
Quick-start
4
4
===========
5
5
6
-
Below is a sample interactive console session designed to show some of the basic features and functionality of the unqlite-python library. Also check out the `full API documentation <http://unqlite-python.readthedocs.org/en/latest/api.html>`_.
6
+
Below is a sample interactive console session designed to show some of the basic features and functionality of the unqlite-python library. Also check out the `full API documentation <https://unqlite-python.readthedocs.io/en/latest/api.html>`_.
7
7
8
8
To begin, instantiate an :py:class:`UnQLite` object. You can specify either the path to a database file, or use UnQLite as an in-memory database.
0 commit comments