Skip to content

Commit 1838b05

Browse files
committed
Update the README file
1 parent 19717e8 commit 1838b05

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Python by Example
22

3-
by Branimir Georgiev (www.codewithbranko.com)
3+
by Branimir Georgiev [(www.codewithbranko.com)](https://www.codewithbranko.com)
44

55
This tutorial offers a comprehensive set of examples for the Python programming
66
language for junior, intermediate, and advanced programmers. It covers
@@ -12,28 +12,36 @@ SOLID principles, design patterns, and best practices.
1212
Ensure that the following tools are installed before setting up the project:
1313

1414
- **Python 3.10+** - the examples rely on modern Python features
15-
- **Hugo** - to generate the static site content
1615
- **git** - to clone this repository
1716

1817
## Installation
1918

2019
Create a virtual environment and install dependencies:
2120

22-
### Linux/macOS
21+
#### Linux/macOS
2322

2423
```bash
2524
python -m venv .venv
2625
source .venv/bin/activate
2726
pip install -r requirements.txt
2827
```
2928

30-
### Windows
29+
#### Windows
3130

3231
```cmd
3332
python -m venv .venv
3433
.\.venv\Scripts\activate
3534
pip install -r requirements.txt
3635
```
3736

37+
## Usage
38+
39+
Run the examples using Python:
40+
41+
```bash
42+
python path/to/example.py
43+
```
44+
45+
3846
## License
3947
This project is licensed under the [MIT License](LICENSE).

0 commit comments

Comments
 (0)