You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-8Lines changed: 10 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,11 +16,11 @@ This is an open-source and online book that provides a comprehensive tutorial on
16
16
- Debugging techniques
17
17
- Date and Time
18
18
19
-
This book is designed for Persian-speaking learners who have no prior experience with programming languages. The book covers all the essential topics, from basic to intermediate programming, and each chapter includes code examples to help learners reinforce their understanding of the material.
19
+
This book is designed for Persian-speaking learners without prior experience with programming languages. The book covers all the essential topics, from basic to intermediate programming, and each chapter includes code examples to help learners understand the material.
20
20
21
21
## Getting Started
22
22
23
-
To get started with the book:
23
+
To get started with this book, you can:
24
24
25
25
- Simply visit [python.coderz.ir](https://python.coderz.ir/) and start reading.
26
26
@@ -31,19 +31,20 @@ To get started with the book:
31
31
32
32
$ pip install -U pip
33
33
$ pip install virtualenv
34
-
$ python -m virtualenv .pypr-venv
35
-
$ source .pypr-venv/bin/activate
34
+
$ python -m virtualenv .venv
35
+
$ source .venv/bin/activate
36
36
37
37
$ cd PythonPersianTutorial
38
38
$ pip install -r requirements.txt
39
39
40
40
$ make html
41
41
42
42
$ cd ./build/html
43
-
$ python -m http.server
43
+
$ python -m http.server 8000
44
44
```
45
+
then visit http://127.0.0.1:8000:
45
46
46
-
- Download the source code from GitHub and run it with Docker:
47
+
- Download the source code from GitHub and run it in Docker:
$ docker run -d --name pypersian -p 80:8000 pypersian
55
56
```
57
+
then visit http://127.0.0.1
56
58
57
59
58
60
## Contributions
@@ -61,11 +63,11 @@ If you'd like to contribute to the book, you can fork the repository on GitHub a
61
63
62
64
## Credits
63
65
64
-
This book was authored by **Saeid Darvish**.
66
+
This book was authored by [**Saeid Darvish**](https://saeiddrv.github.io).
65
67
66
68
## License
67
69
68
-
This book is licensed under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0](http://creativecommons.org/licenses/by-nc/4.0/) International Public License, which means you can use, copy, modify, merge, publish, distribute of the book for non-commercial purposes.
70
+
This book is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License, which means you are free to use, copy, modify, merge, publish, and distribute the book for non-commercial purposes. Please see the [license](https://creativecommons.org/licenses/by-nc-sa/4.0/) for more details.
0 commit comments