Functions§
- append_
text - append a list of lines into a file
- eprintln
- a simplified function for eprintln!(“{}”,s)
- fetch_
html - Fetch a web page’s HTML codes and return a dict of the HTML page
- input
- obtain a list of strings from a input line in the terminal
- input_
line - obtain a line string from terminal
- input_
line_ with_ msg - obtain a line from the terminal after a message
- a simplified println!(s) function like using in Python
- println
- a simplified print!(s) function like using in Python
- read_
binary - read binary from a file
- read_
csv - Read a csv file in a very simple manner and return a Vec<HashMap<String,String>> list
- read_
csv_ simple - Read a simple csv file and return a list of HashMap models
- read_
csv_ text - Read a csv file’s text
- read_
csv_ text_ with_ error - read a csv file with Result<,>
- read_
csv_ with_ error - Read a csv file using Result<,>
- read_
html_ file - Read a html file and return dict
- read_
html_ string - Read HTML dict from a HTML string
- read_
lines - Read a list of lines from a file
- read_
text - Read a text file
- show_
dict - print a HashMap model
- write_
csv - Write a csv file from a list of HashMap model
- write_
text - write text into a file
- write_
text_ once - write a text file once, which will replace