Metadata-Version: 2.1
Name: Trello-Wrapper
Version: 0.0.4
Summary: A Python Wrapper around the Trello API
Home-page: https://github.com/Rtsil/Trello-Wrapper
Author: Rtsil
Author-email: rtsilavotahina@gmail.com
Keywords: trello,wrapper,api
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
License-File: LICENSE

TRELLO-WRAPPER
==============

.. image:: https://img.shields.io/badge/Made%20with-Python-blue.svg
   :target: https://www.python.org/

A Wrapper around the Trello API

Installation
------------

.. code-block:: bash

    pip install Trello-Wrapper

Usage
-----

1. Obtain your Trello API key and token by following the instructions on the `Trello Developer site <https://developer.atlassian.com/cloud/trello/guides/rest-api/api-introduction/>`_.

2. Import the Trello-Wrapper class and create an instance with your API key and token:

.. code-block:: python

    from Trello_Wrapper import Trello
    trello = Trello(api_key=YOUR_API_KEY, token=YOUR_TOKEN)

3. Use the available methods to interact with Trello resources. For example, to get all boards:

.. code-block:: python

    boards = trello.Boards()
    print(boards.get_all_boards()) 

Refer to the documentation within the Trello_Wrapper class for more available methods and their usage.

Contributing
------------

Contributions are welcome! If you find any issues or have suggestions for improvements, please `open an issue <https://github.com/Rtsil/Trello-Wrapper/issues>`_ or `submit a pull request <https://github.com/Rtsil/Trello-Wrapper/pulls>`_.

Authors
-------

Tsilavo Tahina R.

- Mail: rtsilavotahina@gmail.com
- Github: https://github.com/Rtsil
- Gitlab: https://gitlab.com/tsilavotahina
