#cli-tool #advent #tools #helper #code

aocf

A crate and CLI helper tool for Advent of Code

19 releases

0.1.21 Dec 19, 2022
0.1.20 Dec 19, 2022
0.1.18 Dec 11, 2021
0.1.15 Nov 21, 2021
0.1.1 Jan 12, 2020

#2430 in Command line utilities

Download history 10/week @ 2023-11-27 7/week @ 2023-12-04 44/week @ 2024-02-19 14/week @ 2024-02-26

58 downloads per month
Used in aocf_cli

ISC and maybe GPL-3.0+

2MB
448 lines

aocf - Advent of Code fetch

build test clippy macOS windows coveralls crates.io crates.io

A CLI tool (and also crate) for Advent of Code.

demo

Written in Rust, but the CLI should be useful for development in any language.

To use directly within Rust, the crate may be used as follows, for getting input data for a task as a string:

use aocf::Aoc;

fn main() {
    let mut aoc = Aoc::new()
        .year(Some(2020))
        .day(Some(1))
        .init()
        .unwrap();

    // Get input data (don't force)
    let input = aoc.get_input(false);

    if let Ok(i) = input {
        println!("{}", i);
    }
}

Documentation for the Aoc structure can be found here.

Downloaded data is cached as JSON and queried each time the Aoc is initialised, to avoid unecessary requests.

The CLI has a workflow similar to Git, e.g.

$ aocf init
$ aocf get-cookie # get cookie from firefox cookie store
$ aocf set-cookie <your-cookie-text>
$ aocf checkout 1 2019
$ aocf checkout --now
$ aocf fetch
$ aocf brief --pretty
$ aocf input
$ aocf status
$ aocf submit <answer>

More details can be found in in the CLI's readme.

The CLI can be used even if you don't plan to solve problems in Rust, and the CLI and the crate can also be freely used together, so if there is a root configuration created by the CLI, the crate will find and use this, or else store cached data in the current directory.

How to get your session cookie. This can be as easy as logging in to AoC with Firefox, and having the CLI extract the authentication token automatically.

Installation

Install Rust

Install aocf:

  • cargo install aocf_cli.
  • cargo install --path . from inside a cloned repository.
  • cargo deb --install from inside a cloned repository.

Dependencies

Depends on development packages for openssl, sqlite dependencies are bundled.

Dependencies

~8–26MB
~406K SLoC