libpy 0.2.1

This library imports functions from the python standard library.
Documentation
# libpy

This library imports functions from the python standard library.

## Examples

### input! macro

```rust
use libpy::input;

fn main() {
    let a = input!();
    let b = input!("Enter your name: ");
    
    println!("{}", a);
    println!("{}", b);
}
```

### int! macro

```rust
use libpy::int;

fn main() {
    let a = int!();
    let b = int!("42".to_string());

    println!("{}", a);
    println!("{}", b);
}
```

## About

This project was created to make it easier for the programmer to work by importing functions familiar to him.