An open API service indexing awesome lists of open source software.

https://github.com/pevers/pep508_parser

PEP-508 parser written in Rust
https://github.com/pevers/pep508_parser

parser pep508 python rust

Last synced: about 2 months ago
JSON representation

PEP-508 parser written in Rust

Awesome Lists containing this project

README

          

# pep508_parser [![test suite](https://github.com/pevers/pep508_parser/actions/workflows/ci.yaml/badge.svg)](https://github.com/pevers/pep508_parser/actions/workflows/ci.yaml)

This crate parses [PEP-508](https://peps.python.org/pep-0508/) strings for Rust.
It uses [pest](https://github.com/pest-parser/pest) under the hood to parse a simplified version of the Parsing Expression Grammar (PEG) of the PEP-508 standard.

```toml
[dependencies]
pep508_parser = "0.1.0"
```

```rust
use pep508_parser::parse;

fn main() {
let dependency =
parse("name[quux, strange];python_version<'2.7' and platform_version=='2'").unwrap();
}
```