py_executer 0.3.0

A Rust-based command-line tool to execute Python scripts with automatic virtual environment and dependency management.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[macro_export]
macro_rules! error_println {
    ($($arg:tt)*) => {
        use colored::Colorize;
        eprintln!("{}", format!(">>>ERROR - {}", format!($($arg)*)).red());
    }
}

#[macro_export]
macro_rules! warning_println {
    ($($arg:tt)*) => {
        use colored::Colorize;
        println!("{}", format!(">>>WARNING - {}", format!($($arg)*)).yellow());
    }
}

pub use error_println;
pub use warning_println;