Skip to content

Commit 56ad978

Browse files
authored
Merge branch 'master' into input-output-update
2 parents 285edff + 9e6a15e commit 56ad978

File tree

19 files changed

+196
-205
lines changed

19 files changed

+196
-205
lines changed

concurrency-overview/README.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

concurrency-overview/cpu_mp.py

Lines changed: 0 additions & 21 deletions
This file was deleted.

concurrency-overview/cpu_non_concurrent.py

Lines changed: 0 additions & 20 deletions
This file was deleted.

concurrency-overview/cpu_threading.py

Lines changed: 0 additions & 21 deletions
This file was deleted.

concurrency-overview/io_mp.py

Lines changed: 0 additions & 35 deletions
This file was deleted.

concurrency-overview/race_condition.py

Lines changed: 0 additions & 17 deletions
This file was deleted.

concurrency-overview/requirements.txt

Lines changed: 0 additions & 35 deletions
This file was deleted.

interacting-with-python/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Interacting With Python
2+
3+
This folder contains the code examples for the [Interacting With Python](https://realpython.com/interacting-with-python/) tutorial.

interacting-with-python/hello.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
greeting = "Hello, World!"
2+
print(greeting)
3+
print("Printing from a file.")

python-concurrency/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Speed Up Your Python Program With Concurrency
2+
3+
This folder contains the sample code for the [Speed Up Your Python Program With Concurrency](https://realpython.com/python-concurrency/) tutorial.
4+
5+
To use this code, first create and activate a [virtual environment](https://realpython.com/python-virtual-environments-a-primer/). Then, install the required libraries into it:
6+
7+
```sh
8+
$ python -m venv venv/
9+
$ source venv/bin/activate
10+
(venv) $ python -m pip install -r requirements.txt
11+
```
12+
13+
This will ensure you have the required Python packages.

0 commit comments

Comments
 (0)