Skip to content

saucelabs/py-confluent

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

py-confluent

Language Latest Release Last Commit

Simple Python library wrapping the Confluent Cloud CLI v3

Installation

pip install py-confluent-cli

Usage example

Setup your Confluent Cloud credentials in environment variables:

export CONFLUENT_CLOUD_EMAIL=...
export CONFLUENT_CLOUD_PASSWORD=...

Login and execute action:

import confluent
confluent.login()
confluent.list_clusters()
confluent.create_topic("myTopic", "myCluster")

Documentation:

confluent.login()

Logs in to Confluent Cloud account enabling usage of confluent.

confluent.logut()

Logs out from Confluent Cloud account.

confluent.list_envs()

Lists all available Confluent Cloud environments.

confluent.list_clusters()

Lists all available clusters.

confluent.use_env(name: str)

Start using environment by given name.

confluent.use_cluster(name: str)

Start using cluster by given name.

confluent.create_topic(
    name: str,
    cluster: str,
    number_of_partitions: int = 3,
    config: Optional[Dict] = None)

Creates topic with given name on a given cluster. Number of partitions can be provided. Config can be provided to fulfill the need of less used parameters: https://docs.confluent.io/confluent-cli/current/overview.html

confluent.delete_topic(name: str, cluster: str)

Deletes topic with given name on a given cluster.

confluent.create_service_account(name: str, description: str)

Creates a service account with a given name and description.

confluent.list_service_accounts()

Lists all available service accounts

confluent.delete_service_account(name: str)

Deletes a service account by name.

confluent.create_topic_acl(
    service_account: str,
    topic: str,
    operation: str,
    prefix: bool = False)

Creates an ACL for a service account to perform given operation a topic. Operation might be e.g. READ, WRITE, DESCRIBE Set prefix=True if you want to give access to a family of topics.

confluent.delete_topic_acl(
    service_account: str,
    topic: str,
    operation: str,
    prefix: bool = False)

Deletes operation's ACL for a service account to a topic.

confluent.create_consumer_group_acl(
    service_account: str,
    consumer_group: str,
    operation: str,
    prefix: bool = False)

Creates ACL for a consumer group like create_topic_acl for topic.

confluent.delete_consumer_group_acl(
    service_account: str,
    consumer_group: str,
    operation: str,
    prefix: bool = False)

Deletes operation's ACL for a service account to a consumer group.

Contributing

We would love to have outside contributors chiming in supporting us finishing this. Please have a look at our contribution guidelines.

About

Simple Python library wrapping the Confluent Cloud CLI v2

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages