Metadata-Version: 2.1
Name: GoogleBard
Version: 0.0.2
Summary: Reverse engineering of Google's Bard chatbot
Home-page: https://github.com/acheong08/Bard
Author: Antonio Cheong
Author-email: acheong@student.dalat.org
License: GNU General Public License v2.0
Project-URL: Bug Report, https://github.com/acheong08/Bard/issues/new
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown
License-File: LICENSE

# Bard
Reverse engineering of Google's Bard chatbot

## Authentication
Go to https://bard.google.com/

- F12 for console
- Copy the values
  - Session: `cookieStore.get("_U").then(result => console.log(result.value))` 
  - At: `window.WIZ_global_data.SNlM0e` 

```bash
$ python3 -m Bard -h
usage: Bard.py [-h] --session SESSION --at AT

options:
  -h, --help         show this help message and exit
  --session SESSION  __Secure-1PSID cookie.
  --at AT            window.WIZ_global_data.SNlM0e
```

[Developer Documentation](https://github.com/acheong08/Bard/blob/main/DOCUMENTATION.md)
