Metadata-Version: 2.1
Name: aoc-kit
Version: 0.1.2
Summary: Toolkit for advent of code
Author: Pierre Hoffmeister
Author-email: pierre.git@posteo.de
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: python-dotenv (>=0.21.0,<0.22.0)
Requires-Dist: requests (>=2.28.1,<3.0.0)
Description-Content-Type: text/markdown

# Advent Of Code kit

A supportive lib for advent of code challenges.


## Getting started

Make sure to add `AOC_TOKEN` to your .env file.
(You can find the token in your cookies when browsing on advendofcode.com)

## Example

```
from aockit import get_input

def process(data):
    return 'implement me'

data = get_input(2015, 1)
result = process(data)
print(result)
```

