Skip to content

Commit e902061

Browse files
committed
Updated help and tooling docs per issues exercism#2953 and exercism#2745
* added the pytest invokation pytest -o markers=task to the "running tests" sections of exercises/shared/test.md and docs/TESTS.md * updated and clarified INSTALLATION.md * updated and added new resources to LEARNING.md * updated and added new resources to RESOURCES.md * overhauled TOOLS.md and added new editors and links
1 parent 52a5318 commit e902061

File tree

7 files changed

+710
-221
lines changed

7 files changed

+710
-221
lines changed

docs/INSTALLATION.md

+29-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,35 @@
11
# Installing Python
22

3-
If Python isn't already available on your system, detailed instructions by platform can be found in the [Python Setup and Usage][using python] section of the official documentation.
4-
Real Python also offers a [very helpful guide][helpful guide] to installation on various platforms, including iOS and Android.
3+
If Python isn't already available on your system, detailed instructions by platform can be found in the [Python Setup and Usage][using python] section of the official documentation.
4+
Real Python also offers a [nice guide][helpful guide] to installation on various platforms, including iOS and Android.
55

6-
Exercism tests and tooling currently supports `Python 3.8` (tests) and `Python 3.9` (tooling).
6+
Finally, these posts by Brett Cannon [A quick-and-dirty guide][quick-and-dirty] and [Why you should use `python -m pip`][python-m-pip], give very helpful advice on how to manage Python installations and packages.
77

8+
**Note for MacOS users:** prior to MacOS Monterey (12.3), `Python 2.7` came pre-installed with the operating system.
9+
Using `Python 2.7` with exercsim or most other programs is not recommended.
10+
You should instead install Python 3 via one of the methods detailed below.
11+
As of MacOS Monterey (12.3), no version of Python will be pre-installed via MacOS.
12+
13+
Some quick links into the documentation by operating system:
14+
15+
- [Windows][windows] Additionally, this Microsoft article on [installing Python on windows][python-on-windows] is helpful.
16+
- [Unix & Linux Systems][unix-and-linux] (_these largely work for MacOS as well_)
17+
- [MacOS][macos] : **This is outdated.**
18+
We recommend reviewing some of the methods outlined in the Real Python article [Installing Python][installing-python] or the articles by Brett Cannon linked above.
19+
20+
21+
Exercism tests and tooling currently support `Python 3.8` (_tests_) and `Python 3.9` (_tooling_).
22+
This means that the [newest features of Python `3.10`][310-new-features] are **not** currently supported.
23+
Please refer to the [Python 3.9.x documentation][3.9 docs] for what is currently supported.
24+
25+
[3.9 docs]: https://docs.python.org/3.9/
26+
[310-new-features]: https://docs.python.org/3/whatsnew/3.10.html
827
[helpful guide]: https://realpython.com/installing-python/
28+
[installing-python]: https://realpython.com/installing-python/#what-your-options-are_1
29+
[macos]: https://docs.python.org/3/using/mac.html
30+
[python-m-pip]: https://snarky.ca/why-you-should-use-python-m-pip/
31+
[unix-and-linux]: https://docs.python.org/3/using/unix.html
932
[using python]: https://docs.python.org/3/using/index.html
33+
[windows]: https://docs.python.org/3/using/windows.html
34+
[python-on-windows]: https://docs.microsoft.com/en-us/windows/python/beginners
35+
[quick-and-dirty]: https://snarky.ca/a-quick-and-dirty-guide-on-how-to-install-packages-for-python/

docs/LEARNING.md

+21-12
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Learning
22

33
## Learning Python From Scratch
4-
Python is (_as Wikipedia says_), a powerful *general-purpose and high-level programming language*.
4+
Python is (_as [Wikipedia says][wikipython]_), a *general-purpose and high-level programming language*.
55
It can be used to write a wide variety of different kinds of software, from video games to HTTP servers to command-line tools - and a whole lot else.
66
It is especially good at 'gluing' different systems and programs together.
77

@@ -12,23 +12,32 @@ And we think the best way to lean is to _play_ and to _practice_ with coding pro
1212
Below you will find some additional jumping-off places to start your learning journey, recommended by our community.
1313

1414

15-
## Resources
16-
1715
- [Python Documentation Tutorial][Python Documentation Tutorial]
18-
- [Automate the Boring Stuff with Python (Book)][automate the boring stuff]
16+
- [Automate the Boring Stuff with Python (_book_)][automate the boring stuff]
17+
- [Automate the Boring Stuff Videos (_covers first 15 book chapters_)][automate the videos]
1918
- [Learn X in Y minutes (where X = Python3)][Learn X in Y minutes]
20-
- [Python3 Beginner Tutorial (video)][Python3 Beginner Tutorial]
21-
- [Practical Python Programming from David Beazley][Practical Python]
22-
- [Official Python3 Documentation and Reference][python docs]
23-
- [PyCharm EDU **IDE** and **Courses**][pycharm edu]
2419
- [Python at Free Code Camp][python at free code camp]
20+
- [Intro to Python (_python-course.eu_)][python-course.eu]
21+
- [Think Python][Think Python]
22+
- [Python for Non-Programmers][python-for-non-programmers]
23+
- [Python 4 Everyone][python4everyone]
24+
- [Introduction to Computer Science and Programming in Python (MIT)][mitocw600]
25+
- [Googles Python Class][googles python class]
26+
- [Microsoft's Python Learning Path][MS Python]
27+
- [PyCharm EDU **IDE** and **Courses**][pycharm edu] (_paid_)
2528

2629

2730
[Learn X in Y minutes]: https://learnxinyminutes.com/docs/python3/
28-
[Practical Python]: https://dabeaz-course.github.io/practical-python/
31+
[MS Python]: https://docs.microsoft.com/en-us/learn/paths/python-language/
2932
[Python Documentation Tutorial]: https://docs.python.org/3/tutorial/index.html
3033
[Python at Free Code Camp]: https://www.freecodecamp.org/learn/scientific-computing-with-python/
31-
[Python3 Beginner Tutorial]: https://www.youtube.com/playlist?list=PL1A2CSdiySGJd0LJRRSwQZbPZaDP0q67j
32-
[automate the boring stuff]: https://automatetheboringstuff.com/
34+
[Think Python]: http://www.greenteapress.com/thinkpython/html/index.html
35+
[automate the boring stuff]: https://automatetheboringstuff.com/2e/
36+
[automate the videos]: https://www.youtube.com/watch?v=1F_OgqRuSdI&list=PL0-84-yl1fUnRuXGFe_F7qSH1LEnn9LkW
37+
[googles python class]: https://developers.google.com/edu/python/introduction
38+
[mitocw600]: https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/
3339
[pycharm edu]: https://www.jetbrains.com/pycharm-edu/
34-
[python docs]: https://docs.python.org/3/
40+
[python-course.eu]: https://python-course.eu/python-tutorial/
41+
[python-for-non-programmers]: https://store.lerner.co.il/python-for-non-programmers-live
42+
[python4everyone]: https://www.py4e.com/
43+
[wikipython]: https://en.wikipedia.org/wiki/Python_(programming_language)

docs/RESOURCES.md

+22-16
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,28 @@
1-
# Recommended learning resources
1+
# Additional Resources for Python
22

3-
* [The Python Tutorial][The Python Tutorial]
4-
* [The Python Library Reference][The Python Library Reference]
5-
* [The Python Docs][python docs]
6-
* [Practical Python][practical python]
7-
* [Think Python][think python]
8-
* [PyMOTW-3][pymotw-3]
9-
* [automate the boring stuff][automate the boring stuff]
10-
* [Googles Python Class][Googles Python Class]
11-
* [pycharm edu][pycharm edu]
3+
- [Official Python 3 Documentation and Reference][python docs]
4+
- [The Python Library Reference][The Python Library Reference]
5+
- [The Docs on pip][pip]
6+
- [Tall, Snarky Canadian (_The Blog of Core Python Developer Brett Cannon_)][Tall, Snarky Canadian]
7+
- [Practical Python][practical python]
8+
- [Python 3 Module of the Week (PyMOTW-3)][pymotw-3]
9+
- [Beyond the Basic Stuff with Python][Beyond the Basic Stuff with Python]
10+
- [The Big Book of Small Python Projects][The Big Book of Small Python Projects]
11+
- [Data Structures and Information Retrieval in Python][Data Structures and Information Retrieval in Python]
12+
- [python practice projects][python practice projects]
13+
- [Python Courses eu][python-course.eu main]
14+
- [Fluent Python Notebooks][fluent-notebooks]
1215

1316

17+
[Beyond the Basic Stuff with Python]: https://inventwithpython.com/beyond/
18+
[Data Structures and Information Retrieval in Python]: https://allendowney.github.io/DSIRP/
1419
[Practical Python]: https://dabeaz-course.github.io/practical-python/
15-
[The Python Tutorial]: https://docs.python.org/3/tutorial/index.html
20+
[Tall, Snarky Canadian]: https://snarky.ca/
21+
[The Big Book of Small Python Projects]: http://inventwithpython.com/bigbookpython/
1622
[The Python Library Reference]: https://docs.python.org/3/library/index.html
17-
[Googles Python Class]: https://developers.google.com/edu/python
18-
[Think Python]: http://www.greenteapress.com/thinkpython/html/index.html
19-
[automate the boring stuff]: https://automatetheboringstuff.com/
20-
[pycharm edu]: https://www.jetbrains.com/pycharm-edu/
21-
[python docs]: https://docs.python.org/3/
23+
[fluent-notebooks]: https://github.com/AllenDowney/fluent-python-notebooks
24+
[pip]: https://pip.pypa.io/en/stable/user_guide/
2225
[pymotw-3]: https://pymotw.com/3/
26+
[python docs]: https://docs.python.org/3/
27+
[python practice projects]: http://pythonpracticeprojects.com/
28+
[python-course.eu main]: https://python-course.eu/

0 commit comments

Comments
 (0)