Metadata-Version: 2.4
Name: aoc-data
Version: 0.0.1
Summary: Real data to test your Advent of Code solutions
Project-URL: Changelog, https://github.com/bsoyka/aoc-data/releases
Project-URL: Source, https://github.com/bsoyka/aoc-data
Author-email: Ben Soyka <hello@bsoyka.me>
License-File: LICENSE
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# aoc-data

> Real data to test your Advent of Code solutions

This package provides an example set of inputs and outputs to test
your [Advent of Code](https://adventofcode.com/) solutions against.

It's one thing to know your code happens to spit out the correct answers given your own
assigned input for an AoC puzzle.
This project prevents coincidences by allowing you to test your code against several
inputs.

> [!WARNING]
> This project is in development, and its features are not yet stable.

[![PyPI - Downloads](https://img.shields.io/pypi/dm/aoc-data)](https://pypi.org/project/aoc-data/)
[![Supported Versions](https://img.shields.io/pypi/pyversions/aoc-data.svg)](https://pypi.org/project/aoc-data)
[![Testing Status](https://img.shields.io/github/actions/workflow/status/bsoyka/aoc-data/test.yml?branch=main&label=tests)](https://github.com/bsoyka/aoc-data/actions?query=workflow%3A%22Test+with+pytest%22)
[![License](https://img.shields.io/pypi/l/aoc-data)](https://github.com/bsoyka/aoc-data/blob/master/LICENSE)
[![Version](https://img.shields.io/pypi/v/aoc-data?label=latest)](https://pypi.org/project/aoc-data)
[![GitHub Repo stars](https://img.shields.io/github/stars/bsoyka/aoc-data)](https://github.com/bsoyka/aoc-data)

## Installation

aoc-data is [available on PyPI](https://pypi.org/project/advent-of-code-ocr/).
Install it with your preferred package manager:

```sh
$ uv add aoc-data
$ pip install aoc-data
```

aoc-data officially supports Python 3.9+.

---

Advent of Code is a registered trademark of Eric K Wastl in the United States. This
project is not affiliated with nor endorsed by Advent of Code.
