An open API service indexing awesome lists of open source software.

https://github.com/moz4rtdev/pyinput-rs

A Python-like input library for Rust
https://github.com/moz4rtdev/pyinput-rs

python python-input rust

Last synced: 5 months ago
JSON representation

A Python-like input library for Rust

Awesome Lists containing this project

README

          

# A Python-like input library for Rust

## INSTALL
```toml
[dependencies]
pyinput = { git = "https://github.com/mallocdev/pyinput-rs.git" }
```

## USAGE
```rust
use pyinput::input;

fn main() {
let input = input("Enter your name: ").unwrap();
println!("Hello, {}!", input);
}
```