Skip to content
Snippets Groups Projects
Commit 04ffbb05 authored by Riccardo Boero's avatar Riccardo Boero :innocent:
Browse files

Update project name

parent 768a7e1c
No related branches found
No related tags found
No related merge requests found
name = "FACT_consolidated_data_storage"
name = "FACT_unified_data_IO"
uuid = "ec8d5dc6-0dfe-41d7-8c2c-855ff50b7b42"
authors = ["Riccardo Boero <ribo@nilu.no>"]
version = "0.1.1"
......
# FACT Results InputOutput
A utility to store and retrieve FACT_data results. It uses a container providing a database server, dynamically updated and uploaded into the registry.
# FACT Unified Data IO
A utility to store and retrieve results extracted from FACT_data services. It uses a container providing a database server, dynamically updated and uploaded into the registry.
---
## Use
Please refer to the APIs accessible in the documentation section: https://fact.pages.nilu.no/utils/FACTResultsIO
Please refer to the APIs accessible in the documentation section: https://fact.pages.nilu.no/utils/FACT_unified_data_IO.jl
---
## Specifications
......
......@@ -2,10 +2,10 @@ using Documenter
using FACT_consolidated_data_storage
makedocs(
sitename = "FACT Results InputOutput",
sitename = "FACT Unified Data IO",
modules = [FACT_consolidated_data_storage],
format = Documenter.HTML(
repolink = "https://git.nilu.no/fact/utils/FACT_consolidated_data_storage.jl.git"
repolink = "https://git.nilu.no/fact/utils/FACT_unified_data_IO.jl.git"
),
repo = "https://git.nilu.no/fact/utils/FACT_consolidated_data_storage.jl.git"
repo = "https://git.nilu.no/fact/utils/FACT_unified_data_IO.jl.git"
)
# API Reference
```@autodocs
Modules = [FACT_consolidated_data_storage]
Modules = [FACT_unified_data_IO]
Private
Order = [:function, :type]
```
```@docs
FACTResultsIO.FACT_consolidated_data_storage
FACTResultsIO.SQL_RANGES
FACTResultsIO.SQLTYPES
FACT_unified_data_IO.FACT_unified_data_IO
FACT_unified_data_IO.SQL_RANGES
FACT_unified_data_IO.SQLTYPES
```
\ No newline at end of file
"""
Module FACT_consolidated_data_storage
Module FACT_unified_data_IO
A Julia module for interfacing with a MySQL database, specifically designed for managing and interacting with FACT consolidated data.
......@@ -30,7 +30,7 @@ The module exports various functions from included scripts. Key functionalities
- `DataFrames.jl`: For handling data in tabular form.
"""
module FACT_consolidated_data_storage
module FACT_unified_data_IO
using MySQL, JSON, DataFrames, UUIDs, Dates, SHA
using JuliaDockerClient
......
using Test, DataFrames
using FACTResultsIO
using FACT_unified_data_IO
@testset "FACTResultsIO utilsDocker test" begin
@testset "FACT_unified_data_IO utilsDocker test" begin
encoded_auth = registry_login("registry.nilu.no", "FACT_token", "glpat-1zG-TQx___xLsPjj2vsG")
# Call the function to get the dictionary
obtained_conn_config = get_results_container(encoded_auth)
......@@ -17,7 +17,7 @@ using FACTResultsIO
# stop_container("fact_results")
end
@testset "FACTResultsIO manifestIO test" begin
@testset "FACT_unified_data_IO manifestIO test" begin
encoded_auth = registry_login("registry.nilu.no", "FACT_token", "glpat-1zG-TQx___xLsPjj2vsG")
# Call the function to get the connection
dict = get_results_container(encoded_auth)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment