Metadata-Version: 2.1
Name: leetcode-api-wrapper
Version: 1.1.1
Summary: Python wrapper for Alfa LeetCode API
Home-page: https://github.com/harbringe/pyleetcode
Author: Aaditya Mehetre
Author-email: aadityamehetre@icloud.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.25.1


# Leetcode Python Wrapper Python Library

A Python wrapper for the Alfa LeetCode API, providing endpoints to retrieve user profiles, badges, solved problems, and more.

## Features
- Fetch user profile, badges, solved problems, and contest details.
- Query problems with filters (tags, difficulty).
- Retrieve trending discussions and daily questions.

## Installation

Install using pip:

```bash
pip install leetcode-api-wrapper
```

## Usage

```python
from LeetcodeWrapper import leetcode_Wrapper

api = leetcode_Wrapper("test_user")

# Get profile details
profile = api.get_profile()
print(profile)
```

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




