├── .coveragerc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── README.rst ├── examples ├── credentials │ ├── __init__.py │ └── credentials.py ├── default │ ├── carnet │ │ ├── cancel_carnet.py │ │ ├── cancel_parcel.py │ │ ├── create_carnet.py │ │ ├── create_carnet_history.py │ │ ├── detail_carnet.py │ │ ├── resend_carnet.py │ │ ├── resend_parcel.py │ │ ├── settle_carnet.py │ │ ├── settle_carnet_parcel.py │ │ ├── update_carnet_metadata.py │ │ └── update_parcel.py │ ├── charge │ │ ├── banking_billet.py │ │ ├── cancel_charge.py │ │ ├── charge_link.py │ │ ├── create_charge.py │ │ ├── create_charge_balance_sheet.py │ │ ├── create_charge_history.py │ │ ├── create_charge_onestep.py │ │ ├── create_charge_onestep_billet_marketplace.py │ │ ├── create_charge_onestep_card_marketplace.py │ │ ├── create_charge_onestep_creditCard.py │ │ ├── credit_card.py │ │ ├── detail_charge.py │ │ ├── one_step_link.py │ │ ├── pay_charge_billet.py │ │ ├── pay_charge_card.py │ │ ├── resend_billet.py │ │ ├── resend_charge_link.py │ │ ├── settle_charge.py │ │ ├── update_billet.py │ │ ├── update_charge_link.py │ │ └── update_charge_metadata.py │ ├── notification │ │ └── get_notification.py │ ├── others │ │ └── get_installments.py │ └── subscription │ │ ├── cancel_subscription.py │ │ ├── create_plan.py │ │ ├── create_subscription.py │ │ ├── create_subscription_history.py │ │ ├── delete_plan.py │ │ ├── detail_subscription.py │ │ ├── get_plans.py │ │ ├── one_step_subscription.py │ │ ├── one_step_subscription_link.py │ │ ├── pay_subscription.py │ │ ├── resend_subscription_charge.py │ │ ├── update_plan.py │ │ └── update_subscription_metadata.py ├── gn │ ├── account │ │ ├── pix_list_balance.py │ │ ├── pix_list_settings.py │ │ └── pix_update_settings.py │ ├── key │ │ ├── pix_create_evp.py │ │ ├── pix_delete_evp.py │ │ └── pix_list_evp.py │ └── report │ │ ├── create_report.py │ │ └── detail_report.py ├── open-finance │ ├── of_detail_settings.py │ ├── of_list_participants.py │ ├── of_list_pix_payment.py │ ├── of_start_pix_payment.py │ └── of_update_settings.py ├── payments │ ├── pay_detail_bar_code.py │ ├── pay_detail_payment.py │ ├── pay_list_payments.py │ └── pay_request_bar_code.py └── pix │ ├── charge │ ├── pix_create_charge.py │ ├── pix_create_immediate_charge.py │ ├── pix_detail_charge.py │ ├── pix_list_charges.py │ └── pix_update_charge.py │ ├── cobv │ ├── pix_create_due_charge.py │ ├── pix_detail_due_charge.py │ ├── pix_list_due_charges.py │ └── pix_update_due_charge.py │ ├── location │ ├── pix_generate_QRCode.py │ ├── pix_location_create.py │ ├── pix_location_delete_txid.py │ ├── pix_location_get.py │ └── pix_location_list.py │ ├── pix │ ├── pix_detail.py │ ├── pix_devolution.py │ ├── pix_devolution_get.py │ ├── pix_received_list.py │ ├── pix_send.py │ └── pix_send_list.py │ └── webhook │ ├── pix_config_webhook.py │ ├── pix_delete_webhook.py │ ├── pix_get_webhook.py │ └── pix_list_webhook.py ├── gerencianet ├── __init__.py ├── constants.py ├── endpoints.py ├── exceptions.py ├── gerencianet.py └── version.py ├── requirements.txt ├── setup.cfg ├── setup.py └── test ├── __init__.py └── test_gerencianet.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/README.rst -------------------------------------------------------------------------------- /examples/credentials/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/credentials/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/credentials/credentials.py -------------------------------------------------------------------------------- /examples/default/carnet/cancel_carnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/carnet/cancel_carnet.py -------------------------------------------------------------------------------- /examples/default/carnet/cancel_parcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/carnet/cancel_parcel.py -------------------------------------------------------------------------------- /examples/default/carnet/create_carnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/carnet/create_carnet.py -------------------------------------------------------------------------------- /examples/default/carnet/create_carnet_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/carnet/create_carnet_history.py -------------------------------------------------------------------------------- /examples/default/carnet/detail_carnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/carnet/detail_carnet.py -------------------------------------------------------------------------------- /examples/default/carnet/resend_carnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/carnet/resend_carnet.py -------------------------------------------------------------------------------- /examples/default/carnet/resend_parcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/carnet/resend_parcel.py -------------------------------------------------------------------------------- /examples/default/carnet/settle_carnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/carnet/settle_carnet.py -------------------------------------------------------------------------------- /examples/default/carnet/settle_carnet_parcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/carnet/settle_carnet_parcel.py -------------------------------------------------------------------------------- /examples/default/carnet/update_carnet_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/carnet/update_carnet_metadata.py -------------------------------------------------------------------------------- /examples/default/carnet/update_parcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/carnet/update_parcel.py -------------------------------------------------------------------------------- /examples/default/charge/banking_billet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/banking_billet.py -------------------------------------------------------------------------------- /examples/default/charge/cancel_charge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/cancel_charge.py -------------------------------------------------------------------------------- /examples/default/charge/charge_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/charge_link.py -------------------------------------------------------------------------------- /examples/default/charge/create_charge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/create_charge.py -------------------------------------------------------------------------------- /examples/default/charge/create_charge_balance_sheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/create_charge_balance_sheet.py -------------------------------------------------------------------------------- /examples/default/charge/create_charge_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/create_charge_history.py -------------------------------------------------------------------------------- /examples/default/charge/create_charge_onestep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/create_charge_onestep.py -------------------------------------------------------------------------------- /examples/default/charge/create_charge_onestep_billet_marketplace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/create_charge_onestep_billet_marketplace.py -------------------------------------------------------------------------------- /examples/default/charge/create_charge_onestep_card_marketplace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/create_charge_onestep_card_marketplace.py -------------------------------------------------------------------------------- /examples/default/charge/create_charge_onestep_creditCard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/create_charge_onestep_creditCard.py -------------------------------------------------------------------------------- /examples/default/charge/credit_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/credit_card.py -------------------------------------------------------------------------------- /examples/default/charge/detail_charge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/detail_charge.py -------------------------------------------------------------------------------- /examples/default/charge/one_step_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/one_step_link.py -------------------------------------------------------------------------------- /examples/default/charge/pay_charge_billet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/pay_charge_billet.py -------------------------------------------------------------------------------- /examples/default/charge/pay_charge_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/pay_charge_card.py -------------------------------------------------------------------------------- /examples/default/charge/resend_billet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/resend_billet.py -------------------------------------------------------------------------------- /examples/default/charge/resend_charge_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/resend_charge_link.py -------------------------------------------------------------------------------- /examples/default/charge/settle_charge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/settle_charge.py -------------------------------------------------------------------------------- /examples/default/charge/update_billet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/update_billet.py -------------------------------------------------------------------------------- /examples/default/charge/update_charge_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/update_charge_link.py -------------------------------------------------------------------------------- /examples/default/charge/update_charge_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/charge/update_charge_metadata.py -------------------------------------------------------------------------------- /examples/default/notification/get_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/notification/get_notification.py -------------------------------------------------------------------------------- /examples/default/others/get_installments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/others/get_installments.py -------------------------------------------------------------------------------- /examples/default/subscription/cancel_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/subscription/cancel_subscription.py -------------------------------------------------------------------------------- /examples/default/subscription/create_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/subscription/create_plan.py -------------------------------------------------------------------------------- /examples/default/subscription/create_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/subscription/create_subscription.py -------------------------------------------------------------------------------- /examples/default/subscription/create_subscription_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/subscription/create_subscription_history.py -------------------------------------------------------------------------------- /examples/default/subscription/delete_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/subscription/delete_plan.py -------------------------------------------------------------------------------- /examples/default/subscription/detail_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/subscription/detail_subscription.py -------------------------------------------------------------------------------- /examples/default/subscription/get_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/subscription/get_plans.py -------------------------------------------------------------------------------- /examples/default/subscription/one_step_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/subscription/one_step_subscription.py -------------------------------------------------------------------------------- /examples/default/subscription/one_step_subscription_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/subscription/one_step_subscription_link.py -------------------------------------------------------------------------------- /examples/default/subscription/pay_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/subscription/pay_subscription.py -------------------------------------------------------------------------------- /examples/default/subscription/resend_subscription_charge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/subscription/resend_subscription_charge.py -------------------------------------------------------------------------------- /examples/default/subscription/update_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/subscription/update_plan.py -------------------------------------------------------------------------------- /examples/default/subscription/update_subscription_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/default/subscription/update_subscription_metadata.py -------------------------------------------------------------------------------- /examples/gn/account/pix_list_balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/gn/account/pix_list_balance.py -------------------------------------------------------------------------------- /examples/gn/account/pix_list_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/gn/account/pix_list_settings.py -------------------------------------------------------------------------------- /examples/gn/account/pix_update_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/gn/account/pix_update_settings.py -------------------------------------------------------------------------------- /examples/gn/key/pix_create_evp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/gn/key/pix_create_evp.py -------------------------------------------------------------------------------- /examples/gn/key/pix_delete_evp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/gn/key/pix_delete_evp.py -------------------------------------------------------------------------------- /examples/gn/key/pix_list_evp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/gn/key/pix_list_evp.py -------------------------------------------------------------------------------- /examples/gn/report/create_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/gn/report/create_report.py -------------------------------------------------------------------------------- /examples/gn/report/detail_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/gn/report/detail_report.py -------------------------------------------------------------------------------- /examples/open-finance/of_detail_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/open-finance/of_detail_settings.py -------------------------------------------------------------------------------- /examples/open-finance/of_list_participants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/open-finance/of_list_participants.py -------------------------------------------------------------------------------- /examples/open-finance/of_list_pix_payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/open-finance/of_list_pix_payment.py -------------------------------------------------------------------------------- /examples/open-finance/of_start_pix_payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/open-finance/of_start_pix_payment.py -------------------------------------------------------------------------------- /examples/open-finance/of_update_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/open-finance/of_update_settings.py -------------------------------------------------------------------------------- /examples/payments/pay_detail_bar_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/payments/pay_detail_bar_code.py -------------------------------------------------------------------------------- /examples/payments/pay_detail_payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/payments/pay_detail_payment.py -------------------------------------------------------------------------------- /examples/payments/pay_list_payments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/payments/pay_list_payments.py -------------------------------------------------------------------------------- /examples/payments/pay_request_bar_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/payments/pay_request_bar_code.py -------------------------------------------------------------------------------- /examples/pix/charge/pix_create_charge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/charge/pix_create_charge.py -------------------------------------------------------------------------------- /examples/pix/charge/pix_create_immediate_charge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/charge/pix_create_immediate_charge.py -------------------------------------------------------------------------------- /examples/pix/charge/pix_detail_charge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/charge/pix_detail_charge.py -------------------------------------------------------------------------------- /examples/pix/charge/pix_list_charges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/charge/pix_list_charges.py -------------------------------------------------------------------------------- /examples/pix/charge/pix_update_charge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/charge/pix_update_charge.py -------------------------------------------------------------------------------- /examples/pix/cobv/pix_create_due_charge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/cobv/pix_create_due_charge.py -------------------------------------------------------------------------------- /examples/pix/cobv/pix_detail_due_charge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/cobv/pix_detail_due_charge.py -------------------------------------------------------------------------------- /examples/pix/cobv/pix_list_due_charges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/cobv/pix_list_due_charges.py -------------------------------------------------------------------------------- /examples/pix/cobv/pix_update_due_charge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/cobv/pix_update_due_charge.py -------------------------------------------------------------------------------- /examples/pix/location/pix_generate_QRCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/location/pix_generate_QRCode.py -------------------------------------------------------------------------------- /examples/pix/location/pix_location_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/location/pix_location_create.py -------------------------------------------------------------------------------- /examples/pix/location/pix_location_delete_txid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/location/pix_location_delete_txid.py -------------------------------------------------------------------------------- /examples/pix/location/pix_location_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/location/pix_location_get.py -------------------------------------------------------------------------------- /examples/pix/location/pix_location_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/location/pix_location_list.py -------------------------------------------------------------------------------- /examples/pix/pix/pix_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/pix/pix_detail.py -------------------------------------------------------------------------------- /examples/pix/pix/pix_devolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/pix/pix_devolution.py -------------------------------------------------------------------------------- /examples/pix/pix/pix_devolution_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/pix/pix_devolution_get.py -------------------------------------------------------------------------------- /examples/pix/pix/pix_received_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/pix/pix_received_list.py -------------------------------------------------------------------------------- /examples/pix/pix/pix_send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/pix/pix_send.py -------------------------------------------------------------------------------- /examples/pix/pix/pix_send_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/pix/pix_send_list.py -------------------------------------------------------------------------------- /examples/pix/webhook/pix_config_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/webhook/pix_config_webhook.py -------------------------------------------------------------------------------- /examples/pix/webhook/pix_delete_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/webhook/pix_delete_webhook.py -------------------------------------------------------------------------------- /examples/pix/webhook/pix_get_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/webhook/pix_get_webhook.py -------------------------------------------------------------------------------- /examples/pix/webhook/pix_list_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/examples/pix/webhook/pix_list_webhook.py -------------------------------------------------------------------------------- /gerencianet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/gerencianet/__init__.py -------------------------------------------------------------------------------- /gerencianet/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/gerencianet/constants.py -------------------------------------------------------------------------------- /gerencianet/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/gerencianet/endpoints.py -------------------------------------------------------------------------------- /gerencianet/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/gerencianet/exceptions.py -------------------------------------------------------------------------------- /gerencianet/gerencianet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/gerencianet/gerencianet.py -------------------------------------------------------------------------------- /gerencianet/version.py: -------------------------------------------------------------------------------- 1 | # encoding: utf-8 2 | 3 | VERSION = '3.0.0' 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pytest==6.2.3 2 | responses==0.13.2 3 | requests>=2.28.1 4 | six>=1.9.0 5 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | 4 | [metadata] 5 | description-file = README.md 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /test/test_gerencianet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerencianet/gn-api-sdk-python/HEAD/test/test_gerencianet.py --------------------------------------------------------------------------------