hyparquet/index.html

44 lines
1.8 KiB
HTML
Raw Normal View History

2024-01-04 17:27:47 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
2024-06-05 23:22:47 +00:00
<title>hyparquet parquet file parser demo</title>
2024-07-23 19:51:34 +00:00
<link rel="icon" href="favicon.png" />
<link rel="stylesheet" href="demo/demo.css">
2024-02-04 21:22:11 +00:00
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Mulish:wght@400;600&display=swap"/>
2024-07-23 19:51:34 +00:00
<meta name="description" content="Online demo of hyparquet: a parser for apache parquet files. Drag and drop parquet files to view parquet data.">
<meta name="author" content="Hyperparam">
2024-06-05 23:22:47 +00:00
<meta name="keywords" content="hyparquet, parquet, parquet file, parquet parser, parquet reader, parquet viewer, parquet data, apache parquet, hightable">
2024-06-14 06:49:03 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
2024-01-04 17:27:47 +00:00
</head>
<body>
2024-09-12 07:43:28 +00:00
<nav>
<a class="brand" href='https://hyparam.github.io/hyparquet/'>
hyparquet
</a>
</nav>
<main id="content">
<div id="app"></div>
<div id="welcome">
2024-05-05 17:35:23 +00:00
<h1>hyparquet</h1>
2024-09-12 07:43:28 +00:00
<sub>/haɪ pɑːrˈkeɪ/</sub>
<h2>in-browser parquet file reader</h2>
2024-05-05 17:35:23 +00:00
<p>
Online demo of <a href="https://github.com/hyparam/hyparquet">hyparquet</a>: a parser for apache parquet files.
2024-06-05 23:22:47 +00:00
Uses <a href="https://github.com/hyparam/hightable">hightable</a> for high performance windowed table viewing.
2024-05-05 17:35:23 +00:00
</p>
<p>
2024-09-12 07:43:28 +00:00
Drag and drop a parquet file (or url) to see your parquet data. 👀
2024-05-05 17:35:23 +00:00
</p>
<ul>
2024-09-12 07:43:28 +00:00
<li><a href="https://github.com/hyparam/hyparquet">hyparquet github</a></li>
<li><a href="https://www.npmjs.com/package/hyparquet">hyparquet npm</a></li>
2024-05-05 17:35:23 +00:00
</ul>
</div>
2024-09-12 07:43:28 +00:00
</main>
2024-01-28 02:50:14 +00:00
<input id="file-input" type="file">
2024-01-11 23:20:53 +00:00
2024-06-05 23:22:47 +00:00
<script type="module" src="demo/bundle.min.js"></script>
2024-01-04 17:27:47 +00:00
</body>
</html>