Skip to content

Bonus materials, exercises, and example projects for our Python tutorials

License

Notifications You must be signed in to change notification settings

mmfontana/materials

This branch is 2099 commits behind realpython/materials:master.

Folders and files

NameName
Last commit message
Last commit date
May 27, 2020
Nov 10, 2020
Oct 26, 2020
Nov 4, 2018
Jan 10, 2020
Jan 22, 2019
Jul 7, 2020
Oct 26, 2020
May 13, 2020
Feb 8, 2019
Oct 14, 2020
Sep 19, 2019
Nov 6, 2019
Mar 25, 2019
Jun 24, 2019
Sep 11, 2020
May 26, 2020
Jun 30, 2019
Apr 30, 2019
Oct 9, 2018
Feb 6, 2019
Oct 26, 2020
Dec 7, 2019
Oct 9, 2018
Dec 14, 2019
Dec 13, 2018
Nov 17, 2020
Nov 27, 2020
Mar 26, 2019
Oct 9, 2018
Aug 14, 2019
Oct 9, 2018
Oct 26, 2020
Aug 15, 2019
Dec 7, 2019
Jul 13, 2020
Oct 9, 2018
May 10, 2019
Sep 16, 2019
Nov 6, 2020
Aug 12, 2020
Dec 11, 2020
Mar 27, 2020
Jul 13, 2020
Oct 15, 2020
Jul 26, 2020
Mar 11, 2020
May 26, 2020
Sep 6, 2020
May 26, 2020
Nov 28, 2020
Oct 9, 2018
Apr 26, 2019
Mar 5, 2019
Aug 20, 2019
Oct 26, 2020
Jan 1, 2020
Oct 6, 2020
Jan 15, 2020
May 6, 2018
Nov 15, 2020
May 9, 2019
Oct 26, 2020
May 9, 2019

Repository files navigation

Real Python Materials

Bonus materials, exercises, and example projects for Real Python's Python tutorials.

Build Status: CircleCI

Got a Question?

The best way to get support for Real Python courses & articles and code in this repository is to join one of our weekly Office Hours calls or to ask your question in the RP Community Slack.

Due to time constraints we cannot provide 1:1 support via GitHub. See you on Slack or on the next Office Hours call 🙂

Adding Source Code & Sample Projects to This Repo (RP Contributors)

Running Code Style Checks

We use flake8 and black to ensure a consistent code style for all of our sample code in this repository.

Run the following commands to validate your code against the linters:

$ flake8
$ black --check .

Running Python Code Formatter

We're using a tool called black on this repo to ensure consistent formatting. On CI it runs in "check" mode to ensure any new files added to the repo are following PEP 8. If you see linter warnings that say something like "would reformat some_file.py" it means black disagrees with your formatting.

The easiest way to resolve these errors is to just run Black locally on the code and then committing those changes, as explained below.

To automatically re-format your code to be consistent with our code style guidelines, run black in the repository root folder:

$ black .

About

Bonus materials, exercises, and example projects for our Python tutorials

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 81.6%
  • Python 14.9%
  • JavaScript 1.7%
  • HTML 1.2%
  • CSS 0.4%
  • Java 0.1%
  • Other 0.1%