Metadata-Version: 2.1
Name: simplebardapi
Version: 1.0.0
Summary: A simpler and faster version of dsdanielpark's bardapi.
Home-page: https://github.com/Ruu3f/simplebardapi
Author: Ruu3f
License: GPLv2
Project-URL: Source, https://github.com/Ruu3f/simplebardapi
Keywords: artificial-intelligence,google-bard-api,google-bard,bard-api,google,bard,ai
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# simplebardapi
A simpler and faster version of dsdanielpark's bardapi.

## Get started:

```
python -m pip install -U simplebardapi
```

Join my [Discord server](https://discord.com/invite/UxJZMUqbsb) for live chat, support, or if you have any issues with this package.

## Support this repository:
- ⭐ **Star the project:** Star this repository. It means a lot to me! 💕
- 🎉 **Join my Discord Server:** Chat with me and others. [Join here](https://discord.com/invite/UxJZMUqbsb):

[![DiscordWidget](https://discordapp.com/api/guilds/1137347499414278204/widget.png?style=banner2)](https://discord.gg/XH6pUGkwRr)

## Example:

```python
from simplebardapi import Bard

Secure_1PSID = "yourCookieValue"
bard = Bard(Secure_1PSID)
while True:
    prompt = input("👦: ")
    try:
        resp = bard.generate_answer(prompt)["content"]
        print(f"🤖: {resp}")
    except Exception as e:
        print(f"🤖: {e}")
```
