### Setting up PocketBase Superuser and Server (Shell) Source: https://github.com/thijsmie/pocketbase/blob/main/examples/README.md This snippet provides shell commands to initialize the PocketBase database, create a superuser account with specified credentials (test@example.com, test), and then start the PocketBase server on port 8123. This setup is a prerequisite for running the Python examples. ```sh # note: you cannot create an superuser before having run the server at least once to init the database pocketbase serve --http=127.0.0.1:8123 # ctrl-c pocketbase superuser create test@example.com test pocketbase serve --http=127.0.0.1:8123 ``` -------------------------------- ### Installing pocketbase-async Python SDK Source: https://github.com/thijsmie/pocketbase/blob/main/README.md This snippet demonstrates how to install the `pocketbase-async` Python package. Users can choose between `pip` for standard Python environments or `poetry` for projects managed with Poetry. The package requires Python 3.11 or newer. ```Bash pip install pocketbase-async # or if you use poetry poetry add pocketbase-async ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.