index.md (846B)
1 # BazerUtils.jl 2 3 Utility functions for everyday Julia. 4 5 ## Features 6 7 - **[Custom Logger](@ref Logging)**: Configurable logging with per-level file output, module filtering, thread safety, and six format options (`pretty`, `oneline`, `json`, `logfmt`, `syslog`, `log4j_standard`). 8 - **[HTML Tables](@ref "Reading HTML Tables")**: Parse HTML tables from URLs or strings into DataFrames — a Julia-native replacement for pandas' `read_html`. 9 - **[JSON Lines](@ref "Working with JSON Lines Files")** *(deprecated)*: Read/write JSONL files. Use [`JSON.jl`](https://github.com/JuliaIO/JSON.jl) v1 with `jsonlines=true` instead. 10 11 ## Installation 12 13 ```julia 14 using Pkg 15 pkg"registry add https://github.com/LouLouLibs/loulouJL.git" 16 Pkg.add("BazerUtils") 17 ``` 18 19 Or directly from GitHub: 20 ```julia 21 Pkg.add(url="https://github.com/LouLouLibs/BazerUtils.jl") 22 ``` 23