hi everyone. i have some basic questions about Air...
# ask-community-for-troubleshooting
j
hi everyone. i have some basic questions about Airbyte CDK. I'm planning to write my own custom source connectors in Python 1. After I have written the connector, how do I package it up so that my instance of AirByte is able to use it? Assume I will deploy Airbyte in GKE. Do I point my Airbyte deployment to a custom Git repo somewhere? or do I have to include all my custom python code into my GKE cluster? 2. For the next_page_token: assume I want to implement paging, how do I do this? I will need a previous-page value to get the next-page value. Or is this the wrong way to think about it? Wouldn't next_page_token return a value depending on what the current page is? I see the function
next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]:
these parameters. How do I get the current page? Is it in the
response
parameter? What is the format of this parameter? How do I access values / variables / parameters in it? 3. What is
primary_key
at https://docs.airbyte.com/connector-development/tutorials/cdk-tutorial-python-http/declare-schema for?