BazerUtils.jl

Assorted Julia utilities including custom logging
Log | Files | Refs | README | LICENSE

BazerUtils.jl (1131B)


      1 module BazerUtils
      2 
      3 
      4 # --------------------------------------------------------------------------------------------------
      5 import Dates: format, now, Dates
      6 import Logging: global_logger, Logging, Logging.Debug, Logging.Info, Logging.Warn, Logging.Error
      7 import LoggingExtras: EarlyFilteredLogger, FormatLogger, MinLevelLogger, TeeLogger
      8 import JSON: JSON
      9 import Tables: Tables
     10 import CodecZlib: CodecZlib
     11 # --------------------------------------------------------------------------------------------------
     12 
     13 
     14 # --------------------------------------------------------------------------------------------------
     15 # Import functions
     16 include("CustomLogger.jl")
     17 include("JSONLines.jl")
     18 include("HTMLTables.jl")
     19 # --------------------------------------------------------------------------------------------------
     20 
     21 
     22 # --------------------------------------------------------------------------------------------------
     23 # List of exported functions
     24 export custom_logger
     25 export read_jsonl, stream_jsonl, write_jsonl
     26 export read_html_tables
     27 # --------------------------------------------------------------------------------------------------
     28 
     29 
     30 end