Sharp Pencil (A Pencil fork)

Build Status Crates.io Version Crates.io LICENSE

A microframework for Rust inspired by Flask.

```rust extern crate pencil;

use sharp_pencil::{Pencil, Request, Response, PencilResult};

fn hello(_: &mut Request) -> PencilResult { Ok(Response::from("Hello World!")) }

fn main() { let mut app = Pencil::new("/web/hello"); app.get("/", "hello", hello); app.run("127.0.0.1:5000"); } ```

One simple guide: https://fengsp.github.io/blog/2016/3/introducing-pencil/

If you feel anything wrong, feedbacks or pull requests are welcome.