Metadata-Version: 2.1
Name: tikkie
Version: 0.1.3
Summary: An unofficial Python library for communicating with the Tikkie API
Home-page: https://gitlab.com/new10-public/python-tikkie-api
Author: New10
Author-email: pypi-admin@new10.com
License: UNKNOWN
Description: Python Tikkie API
        =================
        
        An unofficial Python library for communicating with the Tikkie API
        
        Installing
        ----------
        
        ```
        pip install tikkie
        ```
        
        Example
        -------
        
        ```python
        from decimal import Decimal
        
        from tikkie import configure, get_platforms, get_users, create_payment_request
        
        private_key = open('private_rsa.pem', 'rb').read().decode()
        configure(api_key='secret', private_key=private_key, platform_token='my-platform-token', sandbox=False)
        
        platform = get_platforms()[0]
        user = get_users()[0]
        
        rq = create_payment_request(
            user_token=user.user_token,
            bank_account_token=user.bank_accounts[0].bank_account_token,
            amount=Decimal(0.01),
            currency="EUR",
            description="Test cesar",
            external_id="123456",
            platform_token=platform.platform_token,
        )
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >= 3.6
Description-Content-Type: text/markdown
Provides-Extra: tests
