Skip to main content

A Python library for interacting with the Itaú UY bank API

Project description

Itaú UY API

A Python library for interacting with the Itaú Uruguay bank API.

Installation

To install the package with all its dependencies to your local environment:

pip install .

For development, sync your venv with uv:

uv sync --all-extras --dev

Usage

from itau_uy_api import ItauAPI
import os
from dotenv import load_dotenv

# Load environment variables
load_dotenv()

# Initialize the API
api = ItauAPI(os.environ['ITAU_USER_ID'], os.environ['ITAU_PASSWORD'])

# Login
api.login()

# Get account information
for account in api.accounts:
    print(f"Account Type: {account['type']}")
    print(f"Balance: {account['balance']} {account['currency']}")

# Get transactions for the current month
from datetime import datetime
current_month = datetime.now().month
current_year = datetime.now().year
transactions = api.get_month(api.accounts[0]['hash'], current_month, current_year)

# Get credit card transactions
credit_transactions = api.get_credit_card_transactions()

Development

To set up the development environment:

  1. Ensure you have uv installed and are running Python >= 3.12

  2. Clone the repository and cd into it

  3. Sync the virtual environment, installing dependencies with uv sync

  4. Create a .env file in the root directory with the following content:

    ITAU_USER_ID=your_user_id
    ITAU_PASSWORD=your_password_base64_encoded
    

    Replace your_user_id and your_password with your actual Itau credentials, password should be encoded in base64.

  5. Run tests:

    uv run pytest
    
  6. Run linters and formatters:

    uv run black .
    uv run pflake8
    uv run mypy .
    

Note: Make sure to never commit your .env file to version control as it contains sensitive information.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch: git checkout -b feature/AmazingFeature
  3. Commit your changes: git commit -m 'Add some AmazingFeature'
  4. Push to the branch: git push origin feature/AmazingFeature
  5. Open a pull request

License

This project is licensed under the MIT License. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

itau_uy_api-0.6.0.tar.gz (19.5 kB view hashes)

Uploaded Source

Built Distribution

itau_uy_api-0.6.0-py3-none-any.whl (8.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page