# realpython **Repository Path**: bydvp/realpython ## Basic Information - **Project Name**: realpython - **Description**: No description available - **Primary Language**: Python - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-04-22 - **Last Updated**: 2025-04-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Real Python Materials Bonus materials, exercises, and example projects for Real Python's [Python tutorials](https://realpython.com). Build Status: [![GitHub Actions](https://img.shields.io/github/actions/workflow/status/realpython/materials/linters.yml?branch=master)](https://github.com/realpython/materials/actions) ## 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](https://realpython.com/office-hours/) or to ask your question in the [RP Community Chat](https://realpython.com/community/). 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 [ruff](https://docs.astral.sh/ruff/) and [black](https://black.readthedocs.io/) 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: ```sh $ ruff check . $ black --check . ``` ### Running Python Code Formatter We're using a tool called [black](https://black.readthedocs.io/) on this repo to ensure consistent formatting. On CI it runs in "check" mode to ensure any new files added to the repo follow PEP 8. If you see linter warnings that say something like "would reformat some_file.py" it means that black disagrees with your formatting. **The easiest way to resolve these errors is to run Black locally on the code and then commit those changes, as explained below.** To automatically re-format your code to be consistent with our code style guidelines, run [black](https://black.readthedocs.io/) in the repository root folder: ```sh $ black . ```