https://github.com/code-yeongyu/playwright-practice
https://github.com/code-yeongyu/playwright-practice
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/code-yeongyu/playwright-practice
- Owner: code-yeongyu
- License: mit
- Created: 2022-11-14T07:07:03.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-11-14T07:07:06.000Z (almost 3 years ago)
- Last Synced: 2025-01-04T04:13:55.529Z (9 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python 3.9 Project Template with poetry
- Python 3.9
- strict type checking using mypy
- amazing linters & formatters (yapf, pylint, isort)
- `unify` for forcing single-quote
- testing (pytest)
- powerful class model (pydantic)
- vscode launch & formatting setups## Setup
### All-in-one
```sh
gh repo clone code-yeongyu/python3.9-project-template # clone the code into your local
python3 -m pip install poetry
poetry install # install dependencies
code --install-extension emeraldwalk.RunOnSave # to force single quote
```Done!
## Test
```sh
poetry shell
pytest .
``````sh
python main.py
```