{"id":25296100,"url":"https://github.com/impak-finance/bankin-bridge-python","last_synced_at":"2025-10-23T17:29:22.535Z","repository":{"id":33376047,"uuid":"157924512","full_name":"impak-finance/bankin-bridge-python","owner":"impak-finance","description":"A Python module for communicating with the Bridgeapi.io API.","archived":false,"fork":false,"pushed_at":"2022-12-08T01:19:13.000Z","size":80,"stargazers_count":3,"open_issues_count":6,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-08-09T17:12:25.828Z","etag":null,"topics":["bank-account","bankin","bankin-bridge","bridge","client","pfm","python","transaction"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/impak-finance.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-11-16T21:42:49.000Z","updated_at":"2023-10-14T09:56:11.000Z","dependencies_parsed_at":"2023-01-15T00:39:32.252Z","dependency_job_id":null,"html_url":"https://github.com/impak-finance/bankin-bridge-python","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/impak-finance%2Fbankin-bridge-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/impak-finance%2Fbankin-bridge-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/impak-finance%2Fbankin-bridge-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/impak-finance%2Fbankin-bridge-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/impak-finance","download_url":"https://codeload.github.com/impak-finance/bankin-bridge-python/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238585192,"owners_count":19496436,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bank-account","bankin","bankin-bridge","bridge","client","pfm","python","transaction"],"created_at":"2025-02-13T02:55:46.176Z","updated_at":"2025-10-23T17:29:17.488Z","avatar_url":"https://github.com/impak-finance.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"bankin-bridge-python\n====================\n\n**Bankin-bridge-python** is a Python module for communicating with the\n`Bridgeapi.io API \u003chttps://docs.bridgeapi.io/\u003e`_.\n\n.. contents:: Table of Contents\n    :local:\n\nMain requirements\n-----------------\n\nPython_ 3.4+, Requests_ 2.0+.\n\nInstallation\n------------\n\nTo install Bankin Bridge, please use pip_ (or pipenv_) as follows:\n\n.. code-block:: shell\n\n    $ pip install --pre bankin-bridge\n\nBasic usage\n-----------\n\nThe first step to interact with the Bankin Bridge API interface is to initialize a ``bridge.Client``\ninstance. You'll need a client ID and client secret this initialization:\n\n.. code-block:: python\n\n    \u003e\u003e\u003e from bridge import Client\n    \u003e\u003e\u003e client = Client('\u003cCLIENT_ID\u003e', '\u003cCLIENT_SECRET\u003e')\n\nThen you can easily register a new user, authenticate them and interact with the implemented\nentities and the underlying API endpoints. Here are some examples:\n\n.. code-block:: python\n\n    \u003e\u003e\u003e client.user.create('test@example.com', '\u003cPWD\u003e')\n    {'uuid': 'c3b140ad-aa85-49ca-a254-de77de521bbf',\n     'resource_uri': '/v2/users/c3b140ad-aa85-49ca-a254-de77de521bbf',\n     'resource_type': 'user',\n     'email': 'text@example.com'}\n    \u003e\u003e\u003e client = client.user.authenticate('test@example.com', '\u003cPWD\u003e')\n    {'access_token': '\u003cACCESS_TOKEN\u003e',\n     'expires_at': '2018-11-19T17:20:33.546Z',\n     'user': {'uuid': '12f34ca5-da8c-4ac2-8882-3e428033f300',\n      'resource_uri': '/v2/users/12f34ca5-da8c-4ac2-8882-3e428033f300',\n      'resource_type': 'user',\n      'email': 'test@example.com'}}\n    \u003e\u003e\u003e client.set_access_token('\u003cACCESS_TOKEN\u003e')\n    \u003e\u003e\u003e client.item.add_url()\n    {'redirect_url': 'https://connect.bankin.com?token_uuid=fb12c345-b1ae-234a-1cc2-123456789dac'}\n    \u003e\u003e\u003e client.account.list()\n    ...\n\nAuthors\n-------\n\nimpak Finance \u003ctech@impakfinance.com\u003e.\n\nLicense\n-------\n\nMIT. See ``LICENSE`` for more details.\n\n\n.. _pip: https://github.com/pypa/pip\n.. _pipenv: https://github.com/pypa/pipenv\n.. _Python: https://www.python.org/\n.. _Requests: http://docs.python-requests.org/en/master/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimpak-finance%2Fbankin-bridge-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fimpak-finance%2Fbankin-bridge-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimpak-finance%2Fbankin-bridge-python/lists"}