https://github.com/ryu22e/python-assert-never
LT資料
https://github.com/ryu22e/python-assert-never
python
Last synced: 3 months ago
JSON representation
LT資料
- Host: GitHub
- URL: https://github.com/ryu22e/python-assert-never
- Owner: ryu22e
- License: cc-by-4.0
- Created: 2026-02-17T12:29:39.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-02-17T13:42:41.000Z (4 months ago)
- Last Synced: 2026-02-17T18:53:28.478Z (4 months ago)
- Topics: python
- Language: Python
- Homepage: http://python-assert-never.ryu22e.dev/
- Size: 96.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 一歩進んだ型ヒントの活用(LT版)
## Requirements
* Git
* Python 3.12 or higher
* Your favorite editor
## How to Build
```bash
$ git clone {repository url}
$ cd {repository path}
$ python -m venv .venv
$ source .venv/bin/activate
(.venv)$ pip install -r requirements_dev.txt
(.venv)$ playwright install --with-deps chromium # Run only once initially
(.venv)$ vim source/index.md # Replace vim with your favorite editor
(.venv)$ make revealjs # Build to build/revealjs/
```
If you want to automatically rebuild when changes are made, you can use `sphinx-autobuild`:
```bash
(.venv)$ sphinx-autobuild source build/revealjs -b revealjs # Serve at http://localhost:8000
```