https://github.com/ryu22e/python-in-excel-practical-practice
PyCon JP 2025トーク資料
https://github.com/ryu22e/python-in-excel-practical-practice
Last synced: 10 months ago
JSON representation
PyCon JP 2025トーク資料
- Host: GitHub
- URL: https://github.com/ryu22e/python-in-excel-practical-practice
- Owner: ryu22e
- License: cc-by-4.0
- Created: 2025-08-17T07:06:30.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-08-24T05:45:17.000Z (10 months ago)
- Last Synced: 2025-08-24T12:41:16.756Z (10 months ago)
- Language: Python
- Homepage: http://python-in-excel-practical-practice.ryu22e.dev/
- Size: 49.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python in Excelをより便利に使える実践プラクティスの紹介
## Requirements
* Git
* Python 3.10 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
```