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
- Host: GitHub
- URL: https://github.com/moz4rtdev/pyinput-rs
- Owner: moz4rtdev
- License: mit
- Created: 2025-03-29T22:57:51.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-03-29T23:19:24.000Z (10 months ago)
- Last Synced: 2025-07-11T11:21:47.564Z (6 months ago)
- Topics: python, python-input, rust
- Language: Rust
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
}
```