https://github.com/training360/python-kh-20220328
Középhaladó Python programozás tananyag
https://github.com/training360/python-kh-20220328
coursework python
Last synced: about 1 year ago
JSON representation
Középhaladó Python programozás tananyag
- Host: GitHub
- URL: https://github.com/training360/python-kh-20220328
- Owner: Training360
- Created: 2022-03-28T09:58:36.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-30T15:04:22.000Z (about 4 years ago)
- Last Synced: 2025-02-01T14:46:27.036Z (over 1 year ago)
- Topics: coursework, python
- Language: Python
- Homepage:
- Size: 22.5 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python középhaladó oktatás
* Hozzuk létre a `venv` könyvtárat:
```shell
python -m venv venv
```
```shell
pip install -r requirements.txt
```
```shell
git init
```
```shell
pytest --cov . --cov-report=html
```
```shell
mypy .
```
```shell
autopep8 -a -i type_hint_demo.py
```
## Docker
```shell
docker build -t hello-python .
docker run hello-python
```
```shell
docker run -d -e MARIADB_DATABASE=employees -e MARIADB_USER=employees -e MARIADB_PASSWORD=employees -e MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=yes -p 3306:3306 --name employees-mariadb mariadb
```