Yes, it is possible to include custom Python components in your low-code connector. The Low Code Connector Development Kit (CDK) is a declarative framework that allows you to describe the connector using a YAML schema without writing Python code. However, it's flexible enough to include custom Python components in conjunction with this method if necessary. This can be useful for scenarios where you need to perform additional processing on the data, such as unzipping API request data. You can find more information about this in the [Low Code Connector Development Kit (CDK) documentation](
https://docs.airbyte.com/connector-development/config-based/low-code-cdk-overview). Please note that while the Low Code CDK provides a simplified way to create connectors, it may not cover all use cases. If you find that you need more flexibility or features that are not available in the Low Code CDK or the Connector Builder, you may want to consider using the Python CDK. The Python CDK provides the most flexibility to developers, but it also requires the most code and maintenance. You can find more information about the Python CDK in the [Python CDK documentation](
https://docs.airbyte.com/connector-development/cdk-python/basic-concepts).