noct 0.1.0

A cross-platform library to input simulation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use noct::{KeyboardControllable, Noct};
use std::thread;
use std::time::Duration;

fn main() {
    thread::sleep(Duration::from_secs(2));
    let mut noct = Noct::new();

    // write text and select all
    noct.key_sequence_parse("{+UNICODE}{{Hello World!}} ❤️{-UNICODE}{+CTRL}a{-CTRL}");
}