Skip to content

Commit 3a439a1

Browse files
committed
refactor: remove "experimental"
1 parent c37c412 commit 3a439a1

File tree

28 files changed

+59
-59
lines changed

28 files changed

+59
-59
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.0.55"
44
edition = "2021"
55

66
[lib]
7-
name = "libsql_experimental"
7+
name = "libsql"
88
crate-type = ["cdylib"]
99

1010
[dependencies]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
</p>
2222

2323
<p align="center">
24-
<a href="https://pypi.org/project/libsql-experimental">
25-
<img src="https://badge.fury.io/py/libsql-experimental.svg" alt="PyPI" title="PyPI" />
24+
<a href="https://pypi.org/project/libsql">
25+
<img src="https://badge.fury.io/py/libsql.svg" alt="PyPI" title="PyPI" />
2626
</a>
2727
<a href="https://discord.com/invite/4B5D7hYwub">
2828
<img src="https://dcbadge.vercel.app/api/server/4B5D7hYwub?style=flat" alt="discord activity" title="join us on discord" />

example.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import libsql_experimental
1+
import libsql
22

3-
con = libsql_experimental.connect("hello.db", sync_url="http://localhost:8080",
3+
con = libsql.connect("hello.db", sync_url="http://localhost:8080",
44
auth_token="")
55

66
con.sync()

examples/batch/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This example demonstrates how to use libSQL to execute a batch of SQL statements
55
## Install Dependencies
66

77
```bash
8-
pip install libsql-experimental
8+
pip install libsql
99
```
1010

1111
## Running

examples/batch/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import libsql_experimental as libsql
1+
import libsql
22

33
conn = libsql.connect("local.db")
44
cur = conn.cursor()

examples/encryption/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This example demonstrates how to create and use an encrypted SQLite database wit
55
## Install Dependencies
66

77
```bash
8-
pip install libsql-experimental
8+
pip install libsql
99
```
1010

1111
## Running

examples/encryption/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import libsql_experimental as libsql
1+
import libsql
22

33
# You should set the ENCRYPTION_KEY in a environment variable
44
# For demo purposes, we're using a fixed key

examples/execute_script.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
import os
55

6-
import libsql_experimental as libsql
6+
import libsql
77

88
def execute_script(conn, file_path: os.PathLike):
99
with open(file_path, 'r') as file:

examples/local/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This example demonstrates how to use libSQL with a local SQLite file.
55
## Install Dependencies
66

77
```bash
8-
pip install libsql-experimental
8+
pip install libsql
99
```
1010

1111
## Running

examples/local/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import libsql_experimental as libsql
1+
import libsql
22

33
conn = libsql.connect("local.db")
44
cur = conn.cursor()

0 commit comments

Comments
 (0)