Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions assets/data/employees.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name,department,salary,years,rating
Alice,Engineering,95000,5,4.5
Bob,Marketing,72000,3,3.8
Charlie,Engineering,105000,8,4.9
Diana,Sales,68000,2,3.2
Eve,Marketing,88000,6,4.1
Frank,Sales,71000,4,3.7
Grace,Engineering,92000,7,4.6
Hank,Marketing,76000,3,3.5
Iris,Sales,64000,1,2.9
Jack,Engineering,110000,9,4.8
Karen,Marketing,81000,5,4.0
Leo,Sales,69000,3,3.4
Mona,Engineering,98000,6,4.3
Nate,Marketing,74000,2,3.6
Olivia,Sales,67000,4,3.1
Paul,Engineering,103000,8,4.7
Quinn,Marketing,85000,5,4.2
Rita,Sales,70000,3,3.3
Sam,Engineering,91000,7,4.4
Tina,Marketing,78000,4,3.9
Uma,Sales,66000,2,3.0
Vic,Engineering,107000,10,4.8
Wendy,Marketing,83000,6,4.1
Xander,Sales,72000,3,3.5
Binary file added assets/data/employees.feather
Binary file not shown.
Binary file added assets/data/products.parquet
Binary file not shown.
8 changes: 8 additions & 0 deletions assets/data/products.tsv
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
product category price stock rating
Widget Electronics 29.99 150 4.5
Gadget Tools 49.50 80 3.8
Gizmo Kitchen 12.00 300 4.9
Doohickey Garden 8.75 0 4.2
Thingamajig Office 199.99 25 2.1
Contraption Electronics 65.00 44 3.5
Apparatus Tools 120.00 12 4.7
6 changes: 6 additions & 0 deletions assets/data/server_logs.jsonl
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{"timestamp": "2025-01-15T08:30:00", "level": "INFO", "module": "auth", "message": "User login successful"}
{"timestamp": "2025-01-15T08:31:12", "level": "WARNING", "module": "db", "message": "Slow query detected (3.2s)"}
{"timestamp": "2025-01-15T08:32:45", "level": "ERROR", "module": "api", "message": "Request timeout on /v2/users"}
{"timestamp": "2025-01-15T08:33:01", "level": "INFO", "module": "cache", "message": "Cache miss for key user:42"}
{"timestamp": "2025-01-15T08:34:20", "level": "DEBUG", "module": "auth", "message": "Token refresh for session abc123"}
{"timestamp": "2025-01-15T08:35:55", "level": "ERROR", "module": "db", "message": "Connection pool exhausted"}
11 changes: 11 additions & 0 deletions assets/data/students.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name,subject,score,grade,passed
Alice,Math,95.5,A,true
Bob,Science,82.0,B,true
Charlie,English,71.3,C,true
Diana,History,60.0,D,true
Eve,Art,55.8,F,false
Frank,Math,88.2,B+,true
Grace,Science,79.9,C+,true
Hank,English,91.0,A-,true
Iris,History,66.4,D+,true
Jack,Art,73.7,C,true
6 changes: 6 additions & 0 deletions great-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ nav_icons:
Versioned Docs: git-branch
Color Swatches: pipette
Table Previews: table
Table Explorer: telescope

# Author Information
# ------------------
Expand Down Expand Up @@ -320,3 +321,8 @@ reference:
- tbl_preview
- enable_tbl_preview
- disable_tbl_preview

- title: Table Explorer
desc: Generate interactive HTML table explorers with sorting, filtering, and pagination
contents:
- tbl_explorer
2 changes: 2 additions & 0 deletions great_docs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
__version__ = "0.0.0"

from ._tbl_display import disable_tbl_preview, enable_tbl_preview
from ._tbl_explorer import tbl_explorer
from ._tbl_preview import tbl_preview
from .cli import main
from .config import Config, create_default_config, load_config
Expand All @@ -23,6 +24,7 @@
"load_config",
"main",
"render_evolution_table",
"tbl_explorer",
"tbl_preview",
]

Expand Down
Loading
Loading