libpy 0.2.1

This library imports functions from the python standard library.
Documentation
  • Coverage
  • 75%
    3 out of 4 items documented0 out of 0 items with examples
  • Size
  • Source code size: 15.8 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.04 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Hy-u-3a4eM/libpy
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Hy-u-3a4eM

libpy

This library imports functions from the python standard library.

Examples

input! macro

use libpy::input;

fn main() {
    let a = input!();
    let b = input!("Enter your name: ");
    
    println!("{}", a);
    println!("{}", b);
}

int! macro

use libpy::int;

fn main() {
    let a = int!();
    let b = int!("42".to_string());

    println!("{}", a);
    println!("{}", b);
}

About

This project was created to make it easier for the programmer to work by importing functions familiar to him.