This is a little more than the usual Hello, world!
project. It's a first contact with the Rust programming language, a.k.a I don't know what I'm doing, I just pulled it together applying a lot of google-fu and copy and paste ;-)
However, as any didactical project, it was really useful to learn a lot of things about Rust, its building toolchain, packaging, where to look for help and so on.
This little application basically scrapes a web page, extracts some data using regular expressions, save the results into a SQLite3 DB and outputs anm RSS 2.0/Atom compliant XML file (that I will instruct my RSS feed reader to retrieve).
HTML + regex. Enough said.
Example: CINEMA_URL="http://cinema.website.url" cargo run -- --date-from 2017-04-19
Optional parameters:
--purge-db
delete (if any) local DB before starting--feed-path
custom RSS feed save pathApplication and every library:
RUST_LOG=debug cargo run -- --date-from 2017-04-19
Applicatiion only:
RUST_LOG=cinema_feed=debug cargo run -- --date-from 2017-04-19
DB module only:
RUST_LOG=db=debug cargo run -- --date-from 2017-04-19