{"id":19044207,"url":"https://github.com/ripio/ripio-client-python","last_synced_at":"2026-05-09T16:30:21.797Z","repository":{"id":65331189,"uuid":"578317235","full_name":"ripio/ripio-client-python","owner":"ripio","description":null,"archived":false,"fork":false,"pushed_at":"2023-04-23T22:09:14.000Z","size":15,"stargazers_count":0,"open_issues_count":1,"forks_count":2,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-02-03T22:49:07.308Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ripio.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":"2022-12-14T19:09:29.000Z","updated_at":"2022-12-20T18:33:05.000Z","dependencies_parsed_at":"2023-01-29T01:45:13.161Z","dependency_job_id":null,"html_url":"https://github.com/ripio/ripio-client-python","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ripio%2Fripio-client-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ripio%2Fripio-client-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ripio%2Fripio-client-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ripio%2Fripio-client-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ripio","download_url":"https://codeload.github.com/ripio/ripio-client-python/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240100558,"owners_count":19747689,"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":[],"created_at":"2024-11-08T22:45:11.710Z","updated_at":"2026-05-09T16:30:21.741Z","avatar_url":"https://github.com/ripio.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ripio Client for Python\n###  ALPHA SOFTWARE\n\n\nThis is a lightweight library that works as a client to [Ripio](https://www.ripio.com) Services\n\n## Installation\n```bash\npip install ripio-client\n```\n\n## Usage example\n```python\nfrom ripio.trade.client import Client\n\n# API key is required for user data endpoints\nclient = Client(api_key='\u003capi_key\u003e')\n\n# Get balance information\nprint(client.balance())\n\n# Create a market order\nparams = {\n\t'pair': 'BTC_USDC',\n\t'side': 'buy',\n\t'amount': 0.01,\n\t'type': 'market'\n}\nresponse = client.create_order(**params)\nprint(response)\n\n# Create a limit buy order\nparams = {\n\t'pair': 'BTC_USDC',\n\t'side': 'buy',\n\t'amount': 0.0002,\n\t'type': 'limit',\n\t'price': 27471.65\n}\nresponse = client.create_order(**params)\nprint(response)\n\n# Create a limit sell order\nparams = {\n\t'pair': 'BTC_USDC',\n\t'side': 'sell',\n\t'amount': 0.0002,\n\t'type': 'limit',\n\t'price': 27470\n}\nresponse = client.create_order(**params)\nprint(response)\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fripio%2Fripio-client-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fripio%2Fripio-client-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fripio%2Fripio-client-python/lists"}