pythonic 0.3.0

pythonic is a Rust AST builder that generates Python
Documentation
# Pythonic

## Usage

Creating Hello, world in Py thon is fairly simple, although a bit verbose:
```rust
let mut program = Block::new();
program.add_statement(
  Statement::FunctionCall(
    FunctionCall::new("print", vec![
      Statement::Argument(Argument::bare("Hello, world")
    ])
  )
)

println!("{}", program);
```

The above Rust would print:
```python
print("Hello, world")
```