Skip to main content

No project description provided

Project description

Pyrevolut: A Revolut Business API Wrapper

pyrevolut is an un-official wrapper around the Revolut Business API.

Installation

pip install TO-BE-DEFINED

Usage

Basic Usage

from pyrevolut.client import Client

CREDS_JSON_LOC = "path/to/creds.json"

client = Client(
    creds_loc=CREDS_JSON_LOC,
    sandbox=True,
)

# Initialize the client
client.open()

# List all accounts for the authenticated user
accounts = client.Accounts.get_all_accounts()

# Close the client
client.close()

# You can also use the client as a context manager
with Client(
    creds_loc=CREDS_JSON_LOC,
    sandbox=True
) as client:
    accounts = client.Accounts.get_all_accounts()

Advanced Usage

It is possible to use the client library asynchronously by using the AsyncClient object.

import asyncio
from pyrevolut.client import AsyncClient

CREDS_JSON_LOC = "path/to/creds.json"

client = AsyncClient(
    creds_loc=CREDS_JSON_LOC,
    sandbox=True,
)

# Run without context manager
async def run():
    await client.open() 
    accounts = await client.Accounts.get_all_accounts()
    await client.close() 
    return accounts

# Run with context manager
async def run_context_manager():
    async with client:
        accounts = await client.Accounts.get_all_accounts() 
    return accounts

# List all accounts for the authenticated user
accounts = asyncio.run(run())
accounts_context_manager = asyncio.run(run_context_manager())

Authentication

In order to make use of the Revolut Business API, you will need to go through several steps to authenticate your application. The basic guide can be found here. We have provided a simple CLI tool to help you generate the necessary credentials. This tool follows the steps outlined in the guide.

pyrevolut auth-manual

Alternatively, you can use call the CLI via Python.

python -m pyrevolut auth-manual

Upon completion, you will have a .json file that you can use to authenticate your application.

API Support Status

The SDK currently supports the following APIs:

  • Accounts
    • Retrieve all accounts
    • Retrieve an account
    • Retrieve account's full bank details
  • Cards (Live only)
    • Retrieve a list of cards
    • Create a card
    • Retrieve card details
    • Update card details
    • Terminate a card
    • Freeze a card
    • Unfreeze a card
    • Retrieve sensitive card details
  • Counterparties
    • Retrieve a list of counterparties
    • Retrieve a counterparty
    • Delete a counterparty
    • Create a counterparty (Personal)
    • Create a counterparty (Business)
    • Validate an account name (CoP)
  • Foreign exchange
    • Get an exchange rate
    • Exchange money
  • Payment drafts
    • Retrieve all payments drafts
    • Create a payment draft
    • Retrieve a payment draft
    • Delete a payment draft
  • Payout links
    • Retrieve a list of payout links
    • Retrieve a payout link
    • Create a payout link
    • Cancel a payout link
  • Simulations (Sandbox only)
    • Simulate a transfer state update
    • Simulate an account top-up
  • Team members (Live only)
    • Retrieve a list of team members
    • Invite a new memebr to your business
    • Retrieve team roles
  • Transactions
    • Retrieve a list of transactions
    • Retrieve a transaction
  • Transfers
    • Move money between your accounts
    • Create a transfer to another account
    • Get transfer reasons
  • Webhooks (v2)
    • Create a new webhook
    • Retrieve a list of webhooks
    • Retrieve a webhook
    • Update a webhook
    • Delete a webhook
    • Rotate a webhook signing secret
    • Retrieve a list of failed webhook events

Contributing

In order to facilitate a streamlined development process, we have a few guidelines that we would like to follow. Please refer to the CONTRIBUTING.md file for more information.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Disclaimer: pyrevolut is an un-official API wrapper. It is in no way endorsed by or affiliated with Revolut or any associated organization. Make sure to read and understand the terms of service of the underlying API before using this package. The authors accept no responsiblity for any damage that might stem from use of this package.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyrevolut-0.6.0.tar.gz (67.8 kB view details)

Uploaded Source

Built Distribution

pyrevolut-0.6.0-py3-none-any.whl (157.8 kB view details)

Uploaded Python 3

File details

Details for the file pyrevolut-0.6.0.tar.gz.

File metadata

  • Download URL: pyrevolut-0.6.0.tar.gz
  • Upload date:
  • Size: 67.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.11.9 Linux/6.5.0-1021-azure

File hashes

Hashes for pyrevolut-0.6.0.tar.gz
Algorithm Hash digest
SHA256 03da5a4d1a9c959feeb1ad8a812bd4ba88fd1765ac810f2617512b340a1749b3
MD5 93eb1d9d7baeb22a1977585faf5144c3
BLAKE2b-256 3ccdfe3b19c18876b5a29c927351a64107cece716798bc9183cfe7bb51e0d998

See more details on using hashes here.

File details

Details for the file pyrevolut-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: pyrevolut-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 157.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.11.9 Linux/6.5.0-1021-azure

File hashes

Hashes for pyrevolut-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d34556edfaebc5372056a9b2a17afbcb345e69fdb2a7f9f9324ff683f0d328ab
MD5 179fb86f1649e17381fe1321828f6190
BLAKE2b-256 b4923bec56073d99c3ccab130d4fdb02c2b71f0847a2aff3ead599d6f6f72a31

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page