Skip to content

Commit f9abdf0

Browse files
authored
Merge pull request #72 from Appsilon/add-examples-to-readme
Add examples to readme
2 parents a197010 + 27216cf commit f9abdf0

19 files changed

+13
-1249
lines changed

.github/workflows/unit-test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,19 @@ jobs:
1111

1212
steps:
1313
- uses: actions/checkout@v3
14+
1415
- name: Set up Python ${{ matrix.python-version }}
1516
uses: actions/setup-python@v4
1617
with:
1718
python-version: ${{ matrix.python-version }}
19+
1820
- name: Install dependencies
1921
run: |
2022
python -m pip install --upgrade pip
2123
pip install -e ".[dev]"
24+
2225
- name: Lint shiny_semantic package
2326
run: black --check --line-length=100 shiny_semantic
24-
- name: Lint example app
25-
run: black --check --line-length=100 example
27+
2628
- name: Test with unittest
2729
run: python -m unittest discover tests

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@
44

55
_Create rich web applications in PyShiny using styles and components from Semantic UI._
66

7+
## Demo applications and examples
8+
9+
- Semantic Components Showcase
10+
- [Live Demo](https://connect.appsilon.com/py_shiny_semantic/)
11+
- [Source Code](https://github.com/Appsilon/py_shiny_semantic_examples/tree/main/semantic-components)
12+
- T-Test Simulation Clone
13+
- [Live Demo](https://connect.appsilon.com/py_shiny_ttest)
14+
- [Source Code](https://github.com/Appsilon/py_shiny_semantic_examples/tree/main/semantic-ttest)
15+
716
## About the project
817

918
This is an early [Shiny-for-Python](https://shiny.rstudio.com/py/) implementation of [the official community fork of Semantic UI](https://fomantic-ui.com/).

example/__init__.py

Lines changed: 0 additions & 5 deletions
This file was deleted.

example/_app_layout.py

Lines changed: 0 additions & 77 deletions
This file was deleted.

example/main.py

Lines changed: 0 additions & 41 deletions
This file was deleted.

example/modules/__init__.py

Lines changed: 0 additions & 25 deletions
This file was deleted.

example/modules/_feature_layout.py

Lines changed: 0 additions & 21 deletions
This file was deleted.

example/modules/button_module.py

Lines changed: 0 additions & 108 deletions
This file was deleted.

0 commit comments

Comments
 (0)