Metadata-Version: 2.4
Name: student-bluebook
Version: 2.0.1
Summary: Blue Book generates AI-powered multiple-choice questions for any exam or certification
License-File: LICENSE
Author: Ilya Smut
Author-email: ilya.smut.off.g@gmail.com
Requires-Python: >=3.10
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: bleach (>=6.3.0,<7.0.0)
Requires-Dist: click (>=8.3.1,<9.0.0)
Requires-Dist: flask (==3.1.1)
Requires-Dist: flask-session (>=0.8.0,<0.9.0)
Requires-Dist: google-genai (>=1.62.0,<2.0.0)
Requires-Dist: jinja2 (==3.1.6)
Requires-Dist: pydantic (>=2.12.5,<3.0.0)
Requires-Dist: sqlmodel (>=0.0.24,<0.0.25)
Project-URL: Documentation, https://github.com/ilya-smut/blue-book/wiki
Project-URL: Homepage, https://student-bluebook.notion.site/
Project-URL: Repository, https://github.com/ilya-smut/blue-book
Description-Content-Type: text/markdown

![Bluebook Logo](https://github.com/ilya-smut/blue-book/blob/main/bluebook/static/images/book.png?raw=true)
# Blue Book
![demo-gif](https://github.com/ilya-smut/blue-book/blob/main/examples/videos/bluebook.gif?raw=true)

Blue Book is a web application that generates AI-powered multiple-choice questions for **any exam or certification**. It ships with a built-in preset for **CompTIA Security+**, but you can add any exam you need via the **Exam Constructor**. Powered by Google's Gemini API, it provides instant feedback, detailed explanations, and personalized study recommendations.

[Project's Homepage](https://student-bluebook.notion.site/)

## Features

### Question Generation & Review
- Generate multiple-choice questions for any exam using Gemini AI.
- Focus generation on specific topics or objectives with **additional requests**.
- Submit answers and receive immediate feedback with detailed explanations per choice.
- Get personalized study recommendations based on your answers.

### Exam Management
- Ships with a built-in **CompTIA Security+** preset.
- Add custom exams for *any* certification or subject using the **Exam Constructor**.
- Seamlessly switch between exams — each exam maintains its own isolated state.

### Custom Prompts
- Build and manage **custom prompt templates** via the Prompt Builder.
- Use anchor-based templates to control exactly how questions are generated.
- Select from your saved prompts when generating questions.

### File Attachments
- Upload reference files (study guides, notes, etc.) to a local cache.
- Sync files to Gemini remote storage for AI-powered context.
- Attach specific files to exams — attached files are included as context during question generation.

### Persistence & State
- **SQLite database** stores all saved questions, topics, exams and prompts.
- **Server-side sessions** ensure state is preserved without cookie size limits.
- Save individual questions for later revision.
- Save and reuse custom topics per exam.
- State is automatically saved and restored when switching between exams.


## Tech Stack

| Layer | Technology |
|-------|-----------|
| Backend | Python 3.10+, Flask 3, Click CLI |
| AI | Google Gemini API (`google-genai`) |
| Database | SQLite via SQLModel |
| Validation | Pydantic v2 |
| Templating | Jinja2 |
| Sessions | Flask-Session (server-side filesystem) |
| Sanitization | Bleach |
| Container | Multi-stage Docker build (Python 3.13 Alpine) |


## Installation

### Docker (recommended)

Run with a pre-built image:
```sh
docker run -d -p 5000:5000 --platform linux/amd64 ilyasmut/student-bluebook
```

Or build from source with Docker Compose:
```sh
git clone https://github.com/ilya-smut/blue-book
cd blue-book/
docker compose up -d
```

### pip / pipx

```sh
pip install student-bluebook
```

```sh
pipx install student-bluebook
```

## Usage

Start the application:
```sh
bluebook start
```

Start in debug mode (verbose logging):
```sh
bluebook start --debug
```

The app will be available at **http://localhost:5000**. On first launch, you'll be prompted to enter your [Gemini API key](https://aistudio.google.com/apikey).

For a full walkthrough of the interface, see the [wiki](https://github.com/ilya-smut/blue-book/wiki).

## Disclaimer

Blue Book is an independent study tool and is not affiliated with, endorsed by, or sponsored by CompTIA or any other certification body. All certification names are trademarks of their respective owners.
You can purchase official CompTIA study materials at their [official website](https://www.comptia.org/).

All questions are generated by third-party AI models (Google Gemini). The author of this application has no control over how these models were trained or what content they produce. Generated questions are intended as study aids and should not be treated as official exam material.

Please don't sue me.

## Contributing
If you'd like to contribute to Blue Book, feel free to submit a pull request or open an issue.

## License
This project is licensed under the GPLv3.

## Contact
For any questions or feedback, feel free to reach out.

