python-ast 1.1.0

A library for compiling Python to Rust
Documentation
#[doc = include_str!("../README.md")]
pub mod ast;
pub use ast::*;

pub mod codegen;
pub use codegen::*;

pub mod isidentifier;
pub use isidentifier::*;

pub mod symbols;
pub use symbols::*;

pub mod pytypes;

pub use pyo3::PyResult;

pub mod parser;
pub use parser::*;

pub mod result;
pub use result::*;

pub mod datamodel;
pub use datamodel::*;

pub mod macros;

pub mod traits;

/// Python format-string translation (str.format templates, format specs).
pub(crate) mod pyformat;
pub use traits::*;

pub mod parser_utils;
pub use parser_utils::*;