https://github.com/eutro/advent-of-code-racket
Racket package for fetching Advent of Code input.
https://github.com/eutro/advent-of-code-racket
Last synced: 4 months ago
JSON representation
Racket package for fetching Advent of Code input.
- Host: GitHub
- URL: https://github.com/eutro/advent-of-code-racket
- Owner: eutro
- License: other
- Created: 2021-11-21T13:47:54.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-12-06T12:06:26.000Z (6 months ago)
- Last Synced: 2025-12-10T06:37:50.475Z (6 months ago)
- Language: Racket
- Size: 19.5 KB
- Stars: 9
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# advent-of-code
Racket package for fetching Advent of Code input.
# CLI Usage
After installing with `raco pkg install advent-of-code`:
---
```sh
raco aoc [-y year] [-d day]
```
Fetch the puzzle input for a given day.
---
```sh
raco aoc [-y year] [-d day] -a
```
Submit an answer for the given puzzle.
---
Notes:
- `year` defaults to the latest Advent of Code, if not specified.
- `day` defaults to the current day of the month, capped at 25.
- `session` is a valid `session` cookie. Defaults to the contents of
`session.key` in this package's install directory. You will be
prompted for this if it is not available.
For more details, run `raco help aoc` or `raco aoc --help`.