fintecture


Namefintecture JSON
Version 1.3.1 PyPI version JSON
download
home_pagehttps://github.com/Fintecture/fintecture-sdk-python
SummaryPython bindings for the Fintecture API
upload_time2022-12-19 21:27:54
maintainer
docs_urlNone
authorFintecture
requires_python>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
licenseThe MIT License Copyright (c) 2018-2022 Fintecture (http://fintecture.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords fintecture api payments
VCS
bugtrack_url
requirements pytest pytest-runner urllib3 setuptools requests flask pycrypto pycryptodome cryptography
Travis-CI No Travis.
coveralls test coverage
            # Fintecture Python Library


The Fintecture Python library provides convenient access to the Fintecture API from
applications written in the Python language. It includes a pre-defined set of
classes for API resources that initialize themselves dynamically from API
responses which makes it compatible with a wide range of versions of the Fintecture
API.

## Documentation

See the [Python API docs](https://docs.fintecture.com/).


## Installation

You don't need this source code unless you want to modify the package. If you just
want to use the package, just run:

```sh
pip install --upgrade fintecture
```

Install from source with:

```sh
python setup.py install
```

### Requirements

-   Python 2.7+ or Python 3.4+ (PyPy supported)

## Usage

The library needs to be configured with your application identifier, the secret and private keys which is
available in your [Fintecture Developer Console](https://console.fintecture.com/developers).
For instance, set `fintecture.app_id` to its value:

```python
import fintecture

fintecture.app_id = "39b1597f-b7dd..."

# list application information
resp = fintecture.Application.retrieve()

attributes = resp.data.attributes

# print the description of the application
print(attributes.description)

# print if application supports AIS and PIS scope
print("Supports AIS scope: %r" % attributes.scope.ais)
print("Supports PIS scope: %r" % attributes.scope.pis)
```

<!--
# vim: set tw=79:
-->

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Fintecture/fintecture-sdk-python",
    "name": "fintecture",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
    "maintainer_email": "",
    "keywords": "fintecture api payments",
    "author": "Fintecture",
    "author_email": "contact@fintecture.com",
    "download_url": "https://files.pythonhosted.org/packages/66/2a/d33dd38e0531d8d4e74a1666c0c79bbb4a33d069b3e2fc9623dcfc241b92/fintecture-1.3.1.tar.gz",
    "platform": null,
    "description": "# Fintecture Python Library\n\n\nThe Fintecture Python library provides convenient access to the Fintecture API from\napplications written in the Python language. It includes a pre-defined set of\nclasses for API resources that initialize themselves dynamically from API\nresponses which makes it compatible with a wide range of versions of the Fintecture\nAPI.\n\n## Documentation\n\nSee the [Python API docs](https://docs.fintecture.com/).\n\n\n## Installation\n\nYou don't need this source code unless you want to modify the package. If you just\nwant to use the package, just run:\n\n```sh\npip install --upgrade fintecture\n```\n\nInstall from source with:\n\n```sh\npython setup.py install\n```\n\n### Requirements\n\n-   Python 2.7+ or Python 3.4+ (PyPy supported)\n\n## Usage\n\nThe library needs to be configured with your application identifier, the secret and private keys which is\navailable in your [Fintecture Developer Console](https://console.fintecture.com/developers).\nFor instance, set `fintecture.app_id` to its value:\n\n```python\nimport fintecture\n\nfintecture.app_id = \"39b1597f-b7dd...\"\n\n# list application information\nresp = fintecture.Application.retrieve()\n\nattributes = resp.data.attributes\n\n# print the description of the application\nprint(attributes.description)\n\n# print if application supports AIS and PIS scope\nprint(\"Supports AIS scope: %r\" % attributes.scope.ais)\nprint(\"Supports PIS scope: %r\" % attributes.scope.pis)\n```\n\n<!--\n# vim: set tw=79:\n-->\n",
    "bugtrack_url": null,
    "license": "The MIT License  Copyright (c) 2018-2022 Fintecture (http://fintecture.com)  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Python bindings for the Fintecture API",
    "version": "1.3.1",
    "split_keywords": [
        "fintecture",
        "api",
        "payments"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "028359fe21e4e67972dceead49b93265",
                "sha256": "52eb173cfbe9a50426f6fbca92232e9f550e84867bba05bfc13667682899619e"
            },
            "downloads": -1,
            "filename": "fintecture-1.3.1-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "028359fe21e4e67972dceead49b93265",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
            "size": 188544,
            "upload_time": "2022-12-19T21:27:51",
            "upload_time_iso_8601": "2022-12-19T21:27:51.882316Z",
            "url": "https://files.pythonhosted.org/packages/db/8d/3f4f5eb437f89658262cea5e4e0d1689521a2126140a48e01b5db33c7673/fintecture-1.3.1-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "be54d66d24196ade9600cca1112358ff",
                "sha256": "b36a63a621f8ad2d378204e282dcb6778395d96de4432727b30f11a5bae86d10"
            },
            "downloads": -1,
            "filename": "fintecture-1.3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "be54d66d24196ade9600cca1112358ff",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
            "size": 216537,
            "upload_time": "2022-12-19T21:27:54",
            "upload_time_iso_8601": "2022-12-19T21:27:54.553754Z",
            "url": "https://files.pythonhosted.org/packages/66/2a/d33dd38e0531d8d4e74a1666c0c79bbb4a33d069b3e2fc9623dcfc241b92/fintecture-1.3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-19 21:27:54",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "Fintecture",
    "github_project": "fintecture-sdk-python",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": false,
    "requirements": [
        {
            "name": "pytest",
            "specs": [
                [
                    "~=",
                    "7.1.2"
                ]
            ]
        },
        {
            "name": "pytest-runner",
            "specs": [
                [
                    "==",
                    "6.0.0"
                ]
            ]
        },
        {
            "name": "urllib3",
            "specs": [
                [
                    "~=",
                    "1.26.10"
                ]
            ]
        },
        {
            "name": "setuptools",
            "specs": [
                [
                    "~=",
                    "57.0.0"
                ]
            ]
        },
        {
            "name": "requests",
            "specs": [
                [
                    "~=",
                    "2.28.1"
                ]
            ]
        },
        {
            "name": "flask",
            "specs": [
                [
                    "~=",
                    "2.2.1"
                ]
            ]
        },
        {
            "name": "pycrypto",
            "specs": [
                [
                    "==",
                    "2.6.1"
                ]
            ]
        },
        {
            "name": "pycryptodome",
            "specs": [
                [
                    "==",
                    "3.15.0"
                ]
            ]
        },
        {
            "name": "cryptography",
            "specs": [
                [
                    "~=",
                    "37.0.4"
                ]
            ]
        }
    ],
    "tox": true,
    "lcname": "fintecture"
}
        
Elapsed time: 0.02277s