Metadata-Version: 2.1
Name: LeetCode-problem-info
Version: 0.0.1
Summary: A python package to get metadata of LeetCode problems
Home-page: https://github.com/Mo-Shakib/Leetcode-python-package
Author: Mohammad Shakib
Author-email: mo.shakib.official@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/Mo-Shakib/Leetcode-python-package/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# LeetCode Problem Info

Get information of LeetCode problems

## Instructions

1. Install:

```
pip install Leetcode-problem-info
```

2. import
```python
from LeetCode_problem_info import problem_info
```
initialize drive object to get problem data
```python
drive = problem_info.Get_Info()
```
Get problem title using problem ```id```
```python
drive.problem_title(id)
```
##### Get problem details by entering problem id
```python
drive.problem_details(id)
```
Output: ```['Two Sum', '45.20%', 'Easy']```

Get problem ```url``` by entering problem id
```python
drive.problem_url(id)
```


