Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yisuschrist/codewars-api-py

Effortlessly interact with Codewars API using a Python wrapper
https://github.com/yisuschrist/codewars-api-py

api codewars codewars-api python

Last synced: about 11 hours ago
JSON representation

Effortlessly interact with Codewars API using a Python wrapper

Awesome Lists containing this project

README

        



   


   


   


Tests Passing   


GitHub pull requests   


License

![Alt](https://repobeats.axiom.co/api/embed/6e5f320fd75dd7170566db66f681c5e4ef85db9b.svg "Repobeats analytics image")

Effortlessly interact with the Codewars API using this Python wrapper. Simplify user, challenge, and leaderboard data retrieval, making integration seamless for your projects.

Table of Contents

- [Features](#features)
- [Getting Started](#getting-started)
- [Documentation](#documentation)
- [Contributing](#contributing)
- [License](#license)

## Features

- **User Information:** Retrieve detailed user information including username, honor, skills, ranks, and completed challenges.
- **Completed Challenges:** Get a list of challenges completed by a user, including details like challenge name, completion date, and programming languages used.
- **Authored Challenges:** List challenges authored by a specific user with information on ranks, tags, and available languages.
- **Code Challenge Details:** Obtain detailed information about a specific code challenge, including its name, description, tags, and user statistics.

## Getting Started

1. Install the package:

```bash
pip install codewars-api-py
```

2. Use the wrapper in your Python script:

```python
from codewars_api_py import CodewarsAPI

# Initialize the Codewars API wrapper
codewars_api = CodewarsAPI()

# Example: Get user information
user_info = codewars_api.get_user("some_user")
print(user_info)

# Example: List completed challenges
completed_challenges = codewars_api.list_completed_challenges("some_user")
print(completed_challenges)
```

## Documentation

For detailed information on available methods and usage, refer to the [Codewars API Wrapper Documentation](https://dev.codewars.com).

## Contributing

Contributions are welcome! Please check the [Contributing Guidelines](https://github.com/YisusChrist/.github/blob/main/CONTRIBUTING.md) for more details.

## License

This project is licensed under the GPL V3 License - see the [LICENSE](LICENSE) file for details.