{"id":34086504,"url":"https://github.com/yoggys/unbelievaboat","last_synced_at":"2026-03-17T20:14:15.049Z","repository":{"id":177875518,"uuid":"661038397","full_name":"yoggys/unbelievaboat","owner":"yoggys","description":"UnbelievaBoat API Python Wrapper.","archived":false,"fork":false,"pushed_at":"2025-10-16T03:54:32.000Z","size":114,"stargazers_count":6,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-12-16T16:19:12.408Z","etag":null,"topics":["api","async","asyncio","bot","discord","python","python3","unbelievaboat","wrapper"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/unbelievaboat/","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/yoggys.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-07-01T15:41:43.000Z","updated_at":"2025-10-16T03:54:28.000Z","dependencies_parsed_at":"2024-10-18T20:44:32.422Z","dependency_job_id":"41c496ce-cd53-435e-a85d-ed4aa79cf2b0","html_url":"https://github.com/yoggys/unbelievaboat","commit_stats":null,"previous_names":["yoggys/unbelievaboat"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yoggys/unbelievaboat","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yoggys%2Funbelievaboat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yoggys%2Funbelievaboat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yoggys%2Funbelievaboat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yoggys%2Funbelievaboat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yoggys","download_url":"https://codeload.github.com/yoggys/unbelievaboat/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yoggys%2Funbelievaboat/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30630336,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-17T17:32:55.572Z","status":"ssl_error","status_checked_at":"2026-03-17T17:32:38.732Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["api","async","asyncio","bot","discord","python","python3","unbelievaboat","wrapper"],"created_at":"2025-12-14T13:29:18.893Z","updated_at":"2026-03-17T20:14:15.044Z","avatar_url":"https://github.com/yoggys.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# UnbelievaBoat API Python Wrapper\n\n[![Discord Server](https://img.shields.io/discord/746360067632136222?label=discord\u0026style=for-the-badge\u0026logo=discord\u0026color=5865F2\u0026logoColor=white)](https://dc.yoggies.dev/)\n[![Python Version](https://img.shields.io/badge/python-3.8+-blue.svg?style=for-the-badge\u0026logo=python\u0026logoColor=white)](https://www.python.org/downloads/release/python-380/)\n[![PyPI Version](https://img.shields.io/pypi/v/unbelievaboat.svg?style=for-the-badge\u0026color=yellowgreen\u0026logo=pypi\u0026logoColor=white)](https://pypi.org/project/unbelievaboat/)\n[![PyPI Downloads](https://img.shields.io/pypi/dm/unbelievaboat?style=for-the-badge\u0026color=blueviolet\u0026logo=pypi\u0026logoColor=white)](https://pypi.org/project/unbelievaboat/)\n\nThis is a Python wrapper for the UnbelievaBoat API, which provides access to the UnbelievaBoat Discord bot functionality. It allows you to interact with the API endpoints to retrieve guild information, user balances, leaderboard data, and more.\n\n## Installation\n\nYou can install the UnbelievaBoat API Python wrapper using pip. Open your terminal and run the following command:\n\n```shell\npip install unbelievaboat\n```\n\n## Usage\n\nHere's an example of how to use the UnbelievaBoat API Python wrapper to interact with the UnbelievaBoat API:\n\n```python\nfrom unbelievaboat import Client\nimport asyncio\n\n\nasync def main() -\u003e None:\n    # Initialize the client with your API token\n    client = Client(\"your-api-token\")\n    \n    guild_id = ...\n    user_id = ...\n\n    # Retrieve guild information\n    guild = await client.get_guild(guild_id)\n    print(guild)\n\n    # Retrieve user balance\n    user = await guild.get_user_balance(user_id)\n    print(user)\n    \n    # Set or update user balance\n    await user.set(bank=100)\n    await user.update(bank=-100)\n    print(user)\n\n    # Close the client session\n    await client.close()\n    \n    # You can also use async context manager\n    async with Client(\"your-api-token\") as client:\n        leaderboard = await client.get_guild_leaderboard(guild_id)\n        print(leaderboard)\n        \n        \nasyncio.run(main())\n```\n\nReplace `\"your-api-token\"` with your actual API token. You can obtain an API token by logging into the UnbelievaBoat dashboard and generating a token for your bot.\n\nPlease note that the above example demonstrates a basic usage scenario. You can explore other available methods in the `Client` class to interact with different API endpoints. You can also find more examples in the [examples](https://github.com/yoggys/unbelievaboat/tree/main/examples) directory. For more information about the UnbelievaBoat API (data/params), please refer to the [official documentation](https://unbelievaboat-api.readme.io/reference/).\n\n## Requirements\n\n- Python 3.8+\n\n## Contributing\n\nContributions are welcome! If you encounter any issues or have suggestions for improvements, please open an issue or submit a pull request on the [GitHub repository](https://github.com/yoggys/unbelievaboat).\n\n## License\n\nThis project is licensed under the [MIT License](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyoggys%2Funbelievaboat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyoggys%2Funbelievaboat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyoggys%2Funbelievaboat/lists"}