Python Package: Installation
Installing the Python Client
You can install the Python package via pip:
BASHpip install levangie-labs-api
The package automatically pulls in its required dependencies like requests
and websockets
.
Quick Test
After installation, verify it by importing the client:
PYTHONfrom levangie_labs_api import MiddlewareClient client = MiddlewareClient( base_url="https://api.levangie-laboratories.com", api_key="YOUR_API_KEY" ) print("Client instantiated successfully!")
If no errors occur, you're good to go.