Retrieve data from PostgreSQL
connection_string
query
batch_size
from neumai.DataConnectors import PostgresConnector from neumai.Shared import Selector postgres_connector = PostgresConnector( connection_string = "postgresql://postgres:<password>@<host>:<port>/postgres", query = """ Select * From "TableName"; """ )
Was this page helpful?