Metadata-Version: 2.1
Name: scrapgpt
Version: 1.0.0
Summary: Python library for scraping ChatGPT
Author: Dusk Light
Description-Content-Type: text/markdown

# ScrapGPT

ScrapGPT is a simple yet powerful library that allows developers to easily interact with the ChatGPT by scraping the website. It provides a convenient interface to send messages to the website and receive responses, making it easy to integrate ChatGPT into your own applications.

## Getting Started

To get started, use the following simple 3 line code.

```python
from scrapgpt import ScrapGPT

# Open AI Login Credentials
EMAIL = "..."
PASSWORD = "..."

chatgpt = ScrapGPT(EMAIL, PASSWORD)
response = chatgpt.ask("How are you?")

print(response)

# As an AI language model, I don't have
# feelings or emotions, but I'm here to
# help you with any questions or information
# you need. How can I assist you today?
```
