-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
83 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
# reactable-py | ||
|
||
reactable generates interactive tables in Python. | ||
It's a port of the R package [reactable](https://github.com/glin/reactable) by [@glin](https://github.com/glin). | ||
|
||
See these handy documentation pages: | ||
|
||
- [📚 User guide](https://machow.github.io/reactable-py/get-started) | ||
- [🧩 Examples](http://machow.github.io/reactable-py/examples) | ||
|
||
## Features | ||
|
||
- **controls**: sorting, filtering, and pagination. | ||
- **structure**: grouping, aggregating, expanding rows. | ||
- **format**: represent numbers, dates, currencies. | ||
- **style**: conditional styling for headers, cell values, and more. | ||
|
||
## Installing | ||
|
||
```bash | ||
pip install reactable | ||
``` | ||
|
||
## Basic use | ||
|
||
Use with jupyter notebooks or quarto documents (.qmd) to display tables. | ||
|
||
```python | ||
from reactable import Reactable, embed_css | ||
from reactable.data import sleep | ||
|
||
embed_css() | ||
|
||
Reactable(sleep) | ||
``` | ||
|
||
 | ||
|
||
## Learn more | ||
|
||
**Essentials** | ||
|
||
- [Code basics](https://machow.github.io/reactable-py/get-started/code-structure.html) | ||
- [Displaying tables](https://machow.github.io/reactable-py/get-started/display-export.html) | ||
|
||
**Controls** | ||
|
||
- [Sorting](https://machow.github.io/reactable-py/get-started/controls-sorting.html) | ||
- [Filtering](https://machow.github.io/reactable-py/get-started/controls-filtering.html) | ||
- [Searching](https://machow.github.io/reactable-py/get-started/controls-searching.html) | ||
- [Pagination](https://machow.github.io/reactable-py/get-started/controls-pagination.html) | ||
- [Column resizing](https://machow.github.io/reactable-py/get-started/controls-resizing.html) | ||
- [Cell click actions](https://machow.github.io/reactable-py/get-started/controls-click-actions.html) | ||
|
||
**Structure** | ||
|
||
- [Column headers](https://machow.github.io/reactable-py/get-started/structure-headers.html) | ||
- [Row groups and aggregation](https://machow.github.io/reactable-py/get-started/structure-grouping.html) | ||
- [Expandable details](https://machow.github.io/reactable-py/get-started/structure-details.html) | ||
- [Footers](https://machow.github.io/reactable-py/get-started/structure-footers.html) | ||
- [Rownames](https://machow.github.io/reactable-py/get-started/structure-rownames.html) | ||
|
||
**Format** | ||
|
||
- [Column formatting](https://machow.github.io/reactable-py/get-started/format-columns.html) | ||
- [Column aggregated cells](https://machow.github.io/reactable-py/get-started/format-aggregated.html) | ||
- [Rendering cells](https://machow.github.io/reactable-py/get-started/format-cell.html) | ||
- [Rendering header and footer](https://machow.github.io/reactable-py/get-started/format-header-footer.html) | ||
- [Rendering details](https://machow.github.io/reactable-py/get-started/format-details.html) | ||
|
||
**Style** | ||
|
||
- [Table styling](https://machow.github.io/reactable-py/get-started/style-table.html) | ||
- [Conditional styling (python)](https://machow.github.io/reactable-py/get-started/style-conditional.html) | ||
- [Custom sort indicators](https://machow.github.io/reactable-py/get-started/style-custom-sort-indicators.html) | ||
- [Theming](https://machow.github.io/reactable-py/get-started/style-theming.html) | ||
|
||
**Extra** | ||
|
||
- [Javascript formatters](https://machow.github.io/reactable-py/get-started/format-custom-rendering.html) | ||
- [Javascript styling](https://machow.github.io/reactable-py/get-started/style-conditional-js.html) | ||
- [Javascript filters](https://machow.github.io/reactable-py/get-started/extra-advanced-filters.html) | ||
- [Using reactable with htmltools](https://machow.github.io/reactable-py/get-started/extra-htmltools.html) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.