Skip to content
master
Switch branches/tags
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
lib
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

rfc3339

parse and format rfc3339 strings in elixir and erlang

Installing as a rebar depedancy (erlang)

You install it as a rebar dependency by adding the following in the deps section of rebar.config

    {rfc3339,  {git, "git://github.com/talentdeficit/rfc3339.git", {branch, master}}}

building

rebar3 compile

running

rebar3 shell

erlang usage

parse_to_local_datetime
> rfc3339:parse_to_local_datetime(<<"1996-12-19T16:39:57-08:00">>).
{{1996,12,19},{10,39,57}}
parse
> rfc3339:parse(<<"1937-01-01T12:00:27.87+00:20">>).
{ok,{{1937,1,1},{12,0,27},870000,20}}
format
> rfc3339:format({date(), time()}).
{ok,<<"2016-07-02T14:04:39Z">>}

todo

-[ ] everything

About

an erlang/elixir rfc3339 lib

Resources

License

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •