This library imports functions from the python standard library.
```rust use libpy::input;
fn main() { let a = input!(); let b = input!("Enter your name: ");
println!("{}", a);
println!("{}", b);
} ```
```rust use libpy::int;
fn main() { let a = int!(); let b = int!("42".to_string());
println!("{}", a);
println!("{}", b);
} ```
This project was created to make it easier for the programmer to work by importing functions familiar to him.