gitextract_6mcqg6lx/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ ├── feature_request.yml │ │ └── question.yml │ └── workflows/ │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CODING_GUIDELINES.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── SUPPORT.md ├── docs/ │ ├── config/ │ │ ├── config.html │ │ ├── index.html │ │ └── request_options.html │ ├── core/ │ │ ├── index.html │ │ └── mp_base.html │ ├── http/ │ │ ├── http_client.html │ │ └── index.html │ ├── index.html │ ├── resources/ │ │ ├── advanced_payment.html │ │ ├── card.html │ │ ├── card_token.html │ │ ├── customer.html │ │ ├── disbursement_refund.html │ │ ├── identification_type.html │ │ ├── index.html │ │ ├── merchant_order.html │ │ ├── payment.html │ │ ├── payment_methods.html │ │ ├── preapproval.html │ │ ├── preference.html │ │ ├── refund.html │ │ └── user.html │ └── sdk.html ├── mercadopago/ │ ├── __init__.py │ ├── config/ │ │ ├── __init__.py │ │ ├── config.py │ │ └── request_options.py │ ├── core/ │ │ ├── __init__.py │ │ └── mp_base.py │ ├── examples/ │ │ ├── order/ │ │ │ ├── cancel_order.py │ │ │ ├── capture_order.py │ │ │ ├── create_order.py │ │ │ ├── create_transaction.py │ │ │ ├── delete_transaction.py │ │ │ ├── get_order.py │ │ │ ├── process_order.py │ │ │ ├── refund_partial.py │ │ │ ├── refund_total.py │ │ │ └── update_transaction.py │ │ └── preference/ │ │ └── create_preference.py │ ├── http/ │ │ ├── __init__.py │ │ └── http_client.py │ ├── resources/ │ │ ├── __init__.py │ │ ├── advanced_payment.py │ │ ├── card.py │ │ ├── card_token.py │ │ ├── chargeback.py │ │ ├── customer.py │ │ ├── disbursement_refund.py │ │ ├── identification_type.py │ │ ├── merchant_order.py │ │ ├── order.py │ │ ├── payment.py │ │ ├── payment_methods.py │ │ ├── plan.py │ │ ├── preapproval.py │ │ ├── preference.py │ │ ├── refund.py │ │ ├── subscription.py │ │ └── user.py │ └── sdk.py ├── pyproject.toml ├── setup.cfg └── tests/ ├── .pylintrc ├── __init__.py ├── test_advanced_payment.py ├── test_card.py ├── test_card_token.py ├── test_chargeback.py ├── test_customer.py ├── test_identification_type.py ├── test_merchant_order.py ├── test_order.py ├── test_payment.py ├── test_payment_methods.py ├── test_plan.py ├── test_preapproval.py ├── test_preference.py ├── test_subscription.py └── test_user.py