# HTTPQL
[<img alt="github" src="https://img.shields.io/badge/github-caido/httpql-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">](https://github.com/caido/httpql)
[<img alt="crates.io" src="https://img.shields.io/crates/v/httpql?color=fc8d62&logo=rust&style=for-the-badge" height="20">](https://crates.io/crates/httpql)
This is the Rust parser for the [HTTPQL language](https://docs.caido.io/reference/httpql.html).
```rust
use httpql::HTTPQL;
pub fn main() {
let query = HTTPQL::parse(r"req.ext.cont:"HELLO"").unwrap();
println("Query is {}", query);
}
```