favlist 1.0.0

Create and manage lists using SQLite
favlist-1.0.0 is not a library.

favlist

Build Status Dependabot Status

Easily make lists, backed up with a SQLite database

Usage

# create a new list of movies with an important (not-null) title and an integer year
favlist new Movies ~Title Year@int
# Add a new entry to the Movies list
favlist add Movies -c Title "The Curse of the Cursed Curse" -c Year 2006
# list movies with "Curse" in the title made in 2006 and print in YAML format
favlist list Movies -f Title Curse --filter Year 2006 --yaml
# Change the Year in row 1 of Movies
favlist edit Movies 1 -c Year 2005
# Remove row 1 from Movies
favlist sub Movies 1
  • Create a new list with favlist new
  • Delete a list with favlist rem
  • Add a new row to the list with favlist add
  • Subtract a row from the list with favlist sub
  • Edit values in a row with favlist edit
  • Print values of list with favlist list

Build

# Just to build
cargo build --release # Executable will be in ./target/release

# Build and install
cargo install --path .

Dependencies

Linux

  • libsqlite3-dev