We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 258e662 commit eee3cc5Copy full SHA for eee3cc5
README.md
@@ -76,7 +76,11 @@ pip install surrealdb
76
```
77
78
Alternatively, you can use install it using [Poetry](https://python-poetry.org/)
79
-
+```
80
+poetry add surrealdb
81
82
+### Connect to SurrealDB
83
+Create a new surreal.py file and add the following code to try out some basic operations using the SurrealDB SDK.
84
```python
85
from surrealdb import Surreal
86
@@ -132,4 +136,4 @@ if __name__ == "__main__":
132
136
import asyncio
133
137
134
138
asyncio.run(main())
135
-```
139
0 commit comments