/Tz.jl

A simple Julia API extension for DateTime.

Primary LanguageJuliaMIT LicenseMIT

Tz

A simple Julia API extension for DateTime.

This package will provide you easy remember work flow with the DateTime interface of julia DateTime.

Example

  • Add package using import Pkg; Pkg.add("Tz")
  • import package using import Tz
  • you can work with following example.

(1) Get package version

Tz.version()

(2) Gree the message

Tz.greet()

(1) Get current timestamp

Tz.now()

Development instruction

  • Go to clone directory
  • using Pkg; Pkg.activate("."); Pkg.instantiate(); Pkg.precompile() ; push!(LOAD_PATH, ".")
  • using Tz; Tz.version()
  • using Pkg; using Dates ; Pkg.gc(;collect_delay=Dates.Day(0))

Pkg.resolve()

#TL;DR

  • or single line command to work with clone project is julia --project=@.
  • using Tz; Tz.version()

How can I use this package directly from github.

There are two ways using Julia REPL

(1) you can use ]add or (2) ]dev from Julia REPL

Build Status