-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.97 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>dtool</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="header-left">
<img src="images/dtool_logo.png" alt="dtool logo" class="logo">
<h1>dtool</h1>
</div>
<nav class="header-right">
<a href="index.html">About</a>
<a href="development.html">Development</a> <!-- Updated Link -->
<a href="publications.html">Publications</a> <!-- Updated Link -->
</nav>
</header>
<main>
<section id="introduction">
<h2>Introduction</h2>
<p class="intro-text">dtool is a suite of software for managing scientific data and making it accessible programmatically. It consists of a command line interface dtool and a Python API: dtoolcore.</p>
<p class="intro-text">The dtool command line interface allows one to organize files into datasets and to move datasets between different storage solutions, for example from local disk to remote object storage. Importantly, it also provides methods to verify that the transfer has been successful.</p>
<p class="intro-text">The Python API gives complete access to the data and metadata in a dataset. It makes it easy to create scripts for processing the items, or a subset of items, in a dataset. The Python API also allows datasets to be constructed programmatically.</p>
</section>
</main>
<footer>
<div class="funding-badges">
<a href="https://pastewka.org/"><img src="images/uni_freiburg_logo.5739c1dfe3e3.png" alt="Funder 1"></a>
<span class="text">— Funding by —</span>
<a href="https://www.livmats.uni-freiburg.de/en"><img src="images/logo_livmats_small.8dc8a4c03938.jpg" alt="Funder 2"></a>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>