An open API service indexing awesome lists of open source software.

https://github.com/ryu22e/python-typehints-tips


https://github.com/ryu22e/python-typehints-tips

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

# 型ヒントって“型”をつけるだけだと思ってない? 型ヒントをさらに使いこなすための実践ノウハウ集

## 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
```