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

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

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