# HTTPQL
[](https://github.com/caido/httpql)
[](https://crates.io/crates/httpql)
This is the Rust parser for the [HTTPQL language](https://docs.caido.io/internals/httpql.html).
```rust
use httpql::HTTPQL;
pub fn main() {
let query = HTTPQL::parse(r"req.ext.cont:"HELLO"").unwrap();
println("Query is {}", query);
}
```