pythonic 0.3.0

pythonic is a Rust AST builder that generates Python
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod argument;
pub mod assignment;
pub mod block;
pub mod class;
pub mod comment;
pub mod function;
pub mod statement;

pub use self::argument::{Argument, KeywordArgument};
pub use self::assignment::Assignment;
pub use self::block::Block;
pub use self::class::Class;
pub use self::comment::Comment;
pub use self::function::{Function, FunctionCall};
pub use self::statement::Statement;