Metadata-Version: 2.1
Name: checkify
Version: 0.4
Summary: Python package that utilizes the GPT API to check for errors in code and explain the code.
Home-page: https://github.com/aditya0072001/checkify
Author: Tripathi Aditya Prakash
Project-URL: Download Statistics, https://pepy.tech/project/checkify/month
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
Requires-Dist: openai

# checkify
[![Downloads](https://pepy.tech/badge/checkify/month)](https://pepy.tech/project/checkify)
checkify is a Python package that utilizes the GPT API to check for errors in code and explain the code.

## Installation

You can install checkify using pip:

pip install checkify


## Usage

To use checkify, import the `check_code` function from the `code_checker` module:

```python
from checkify.code_checker import check_code

code = """
def greet(name):
    print("Hello, " + name)

greet("John")
"""

explanation = check_code(code)
print(explanation)
