Skip to main content

Idea pipeline

Filter by idea status

767 Ideas

Apresentando PipefySDK: Simplificando a Integração com a API do Pipefy para DesenvolvedoresNew

Olá Comunidade Pipefy,  Estou animado para apresentar o PipefySDK, um SDK em Python projetado para simplificar a integração com a API do Pipefy.Este SDK fornece um conjunto de métodos para gerenciar cartões, campos, anexos e muito mais, sem a necessidade de interagir diretamente com consultas e mutações GraphQL. Por que PipefySDK?Como desenvolvedores, muitas vezes enfrentamos o desafio de integrar APIs que exigem um entendimento profundo do GraphQL. Embora o GraphQL seja poderoso, pode ser intimidador para aqueles que são novos nele. O PipefySDK abstrai a complexidade do GraphQL, proporcionando uma maneira mais intuitiva e Pythonica de interagir com a API do Pipefy.  Principais Recursos Instalação Fácil: Instale o SDK usando pip ou poetry. Inicialização Simples: Inicialize o SDK com seu token e URL do Pipefy. Métodos Abrangentes: Use métodos predefinidos para gerenciar cartões, campos, anexos e mais. Tratamento de Erros: Tratamento de erros embutido para problemas comuns da API.InstalaçãoVocê pode instalar o PipefySDK usando pip:pip install pipefysdkOu usando poetry:poetry add pipefysdkUsoAqui está um exemplo rápido de como usar o PipefySDK:from pipefysdk import PipefySDKtoken = "your_token" # Você não precisa incluir "Bearer"url = "https://api.pipefy.com/graphql"pipefy_sdk = PipefySDK(token=token, url=url)# Obter informações do cartãocard_info = pipefy_sdk.get_card_info(card_id=12345)print(card_info)# Atualizar um campo específico do cartãoresponse = pipefy_sdk.update_single_card_field(card_id="12345", field_id="field_id", new_value="new_value")print(response)Como o PipefySDK Pode AjudarNovos Desenvolvedores: Comece rapidamente com o Pipefy sem precisar aprender GraphQL. Produtividade: Foque em construir funcionalidades em vez de lidar com as complexidades da API. Contribuições da Comunidade: Aberto a contribuições, tornando-o um projeto colaborativo.ContribuindoContribuições são bem-vindas! Se você tiver sugestões, problemas ou quiser contribuir, por favor, abra uma issue ou envie um pull request no nosso repositório itallominatti/PipefySDK ou no pypi pipefysdk · PyPI

Introducing PipefySDK: Simplifying Pipefy API Integration for DevelopersNew

Hello Pipefy Community,  I am excited to introduce PipefySDK, a Python SDK designed to simplify the integration with the Pipefy API. This SDK provides a set of methods to manage cards, fields, attachments, and more, without the need to directly interact with GraphQL queries and mutations.  Why PipefySDK?As developers, we often face the challenge of integrating with APIs that require a deep understanding of GraphQL. While GraphQL is powerful, it can be daunting for those who are new to it. PipefySDK abstracts away the complexity of GraphQL, providing a more intuitive and Pythonic way to interact with the Pipefy API.  Key FeaturesEasy Installation: Install the SDK using pip or poetry. Simple Initialization: Initialize the SDK with your Pipefy token and URL. Comprehensive Methods: Use predefined methods to manage cards, fields, attachments, and more. Error Handling: Built-in error handling for common API issues.InstallationYou can install PipefySDK using pip:pip install pipefysdkOr using poetry:poetry add pipefysdkUsageHere is a quick example of how to use PipefySDK:from pipefysdk import PipefySDKtoken = "your_token" # You don't need to include "Bearer"url = "https://api.pipefy.com/graphql"pipefy_sdk = PipefySDK(token=token, url=url)# Get card informationcard_info = pipefy_sdk.get_card_info(card_id=12345)print(card_info)# Update a single card fieldresponse = pipefy_sdk.update_single_card_field(card_id="12345", field_id="field_id", new_value="new_value")print(response)Contributing Contributions are welcome! If you have any suggestions, issues, or would like to contribute, please open an issue or submit a pull request on ourgithub: https://github.com/itallominatti/pipefysdkpypi: pipefysdk · PyPI