{"id":22403314,"url":"https://github.com/springload/eway-rapid-python","last_synced_at":"2025-07-31T16:31:48.292Z","repository":{"id":57427362,"uuid":"59623260","full_name":"springload/eway-rapid-python","owner":"springload","description":"Python client implementation for eWAY Rapid API v3","archived":false,"fork":false,"pushed_at":"2018-05-28T02:56:42.000Z","size":498,"stargazers_count":3,"open_issues_count":1,"forks_count":2,"subscribers_count":21,"default_branch":"master","last_synced_at":"2024-11-21T17:57:05.108Z","etag":null,"topics":["eway","python","rapid"],"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/springload.png","metadata":{"files":{"readme":"README.md","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":"2016-05-25T02:08:52.000Z","updated_at":"2024-01-30T11:23:35.000Z","dependencies_parsed_at":"2022-09-19T06:40:16.126Z","dependency_job_id":null,"html_url":"https://github.com/springload/eway-rapid-python","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/springload%2Feway-rapid-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/springload%2Feway-rapid-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/springload%2Feway-rapid-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/springload%2Feway-rapid-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/springload","download_url":"https://codeload.github.com/springload/eway-rapid-python/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228267806,"owners_count":17893841,"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":["eway","python","rapid"],"created_at":"2024-12-05T09:16:48.311Z","updated_at":"2024-12-05T09:16:49.150Z","avatar_url":"https://github.com/springload.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# eway-rapid-python\nPython client implementation for eWAY Rapid API v3\n\n# Installation\n\n```bash\npip install eway-rapid-python\n```\n\n# API parts implementation status:\n\n```\n  + = Implemented\n  - = To be implemented in future versions\n```\n\n * + `Transparent Redirect`\n * - `Direct Connection`\n * - `Responsive Shared Page`\n * - `Refunds`\n * - `Transaction Query`\n * - `Pre-Auth`\n * - `Token Payments`\n * - `Settlement Search`\n * - `Recurring Payments`\n \n\n\n# Rapid API v3\n\nRapid API documentation: https://eway.io/api-v3\n\n# Basic usage\n\n```python\nfrom eway.rapid.client import RestClient\nfrom eway.rapid.endpoint import SandboxEndpoint\nfrom eway.rapid.model import Payment, RequestMethod, TransactionType\nfrom eway.rapid.payment_method.transparent_redirect import TransparentRedirect, CreateAccessCodeRequest\n\npayment_method = TransparentRedirect(RestClient('api-key', 'api-password', SandboxEndpoint()))\n\n# response is eway.rapid.payment_method.transparent_redirect.response.AccessCodeResponse\nresponse = payment_method.create_access_code(CreateAccessCodeRequest(\n    Payment(4200, 'AUD'),\n    RequestMethod.ProcessPayment,\n    TransactionType.Purchase,\n    'https://localhost/'\n))\n\nprint(response.to_json())\n\n# ... here client performs form submit in his browser\n\n# transaction is eway.rapid.payment_method.transparent_redirect.response.TransactionInfo\ntransaction = payment_method.request_transaction_result(response.AccessCode)\n\nprint(transaction.to_json())\n```\n\nFor more complete example have a look at [Transparent Redirect tests](./tests/transparent_redirect.py) and the [Snippets](https://github.com/springload/eway-rapid-python/wiki#snippets) section of the wiki.\n\n# Testing\n\n```bash\npython -m unittest tests\n```\n\n\n# License\n\nThe MIT License (MIT). Please see [License File](LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspringload%2Feway-rapid-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspringload%2Feway-rapid-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspringload%2Feway-rapid-python/lists"}