Close the HTTP session or client
def close() -> None
None
from databridge import DataBridge db = DataBridge() # Perform operations doc = db.ingest_text("Sample content") # Close the session when done db.close()
Instead of manually calling close(), you can use the DataBridge client as a context manager:
close()
from databridge import DataBridge with DataBridge() as db: doc = db.ingest_text("Sample content") # Session is automatically closed when exiting the with block