Library for accessing the Global Conciousness Project data in Julia.
# create new Params object with time period
params = Params(2021, 8, 1, "00:00:00", "00:10:00", true)
# get results
res = get(params)
# do something with header ...
println(header.eggs_reporting)
# do something with results dataframe ...
for row in eachrow(res.data[3:end])
println(row)
end
# output sample plot
saveplot(res)