| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -30,7 +30,7 @@ Real Python is a repository of free and in-depth Python tutorials created by a d | |||
| 30 | 30 | Python Basics | |
| 31 | 31 | ~~~~~~~~~~~~~ | |
| 32 | 32 | ||
| 33 | - pythonbasics.org is an introductiory tutorial for beginners. The tutorial includes exercises. It covers the basics and there are also in-depth lessons like object oriented programming and regular expressions. | ||
| 33 | + pythonbasics.org is an introductory tutorial for beginners. The tutorial includes exercises. It covers the basics and there are also in-depth lessons like object oriented programming and regular expressions. | ||
| 34 | 34 | ||
| 35 | 35 | `Python basics <https://pythonbasics.org/>`_ | |
| 36 | 36 | ||
@@ -181,7 +181,7 @@ no previous programming experience. | |||
| 181 | 181 | Computer Science Path on Codecademy | |
| 182 | 182 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
| 183 | 183 | ||
| 184 | - A Codeacademy course for the absolute Python beginner. This free and interactive | ||
| 184 | + A Codecademy course for the absolute Python beginner. This free and interactive | ||
| 185 | 185 | course provides and teaches the basics (and beyond) of Python programming while | |
| 186 | 186 | testing the user's knowledge in between progress. | |
| 187 | 187 | This course also features a built-in interpreter for receiving instant feedback on your learning. | |
@@ -218,7 +218,7 @@ Effective Python | |||
| 218 | 218 | ~~~~~~~~~~~~~~~~ | |
| 219 | 219 | ||
| 220 | 220 | This book contains 59 specific ways to improve writing Pythonic code. At 227 | |
| 221 | - pages, it is a very brief overview of some of the most common adapations | ||
| 221 | + pages, it is a very brief overview of some of the most common adaptations | ||
| 222 | 222 | programmers need to make to become efficient intermediate level Python | |
| 223 | 223 | programmers. | |
| 224 | 224 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -146,7 +146,7 @@ Toga | |||
| 146 | 146 | cross platform GUI toolkit. Toga consists of a library of base components with a | |
| 147 | 147 | shared interface to simplify platform-agnostic GUI development. | |
| 148 | 148 | ||
| 149 | - Toga is available on mOS, Windows, Linux (GTK), and mobile platforms such as | ||
| 149 | + Toga is available on macOS, Windows, Linux (GTK), and mobile platforms such as | ||
| 150 | 150 | Android and iOS. | |
| 151 | 151 | ||
| 152 | 152 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -126,7 +126,7 @@ Pyramid | |||
| 126 | 126 | focus on modularity. It comes with a small number of libraries ("batteries") | |
| 127 | 127 | built-in, and encourages users to extend its base functionality. A set of | |
| 128 | 128 | provided cookiecutter templates helps making new project decisions for users. | |
| 129 | - It powers one of the most important parts of python infrastucture | ||
| 129 | + It powers one of the most important parts of python infrastructure | ||
| 130 | 130 | `PyPI <https://pypi.org/>`_. | |
| 131 | 131 | ||
| 132 | 132 | Pyramid does not have a large user base, unlike Django and Flask. It's a | |
@@ -155,7 +155,7 @@ and `Pydantic <https://pydantic-docs.helpmanual.io>`_. | |||
| 155 | 155 | ||
| 156 | 156 | FastAPI takes advantage of standard Python type declarations in function parameters | |
| 157 | 157 | to declare request parameters and bodies, perform data conversion (serialization, | |
| 158 | - parsing), data valdiation, and automatic API documentation with **OpenAPI 3** | ||
| 158 | + parsing), data validation, and automatic API documentation with **OpenAPI 3** | ||
| 159 | 159 | (including **JSON Schema**). | |
| 160 | 160 | ||
| 161 | 161 | It includes tools and utilities for security and authentication (including OAuth2 with JWT | |
@@ -283,7 +283,7 @@ Heroku is the recommended PaaS for deploying Python web applications today. | |||
| 283 | 283 | Eldarion | |
| 284 | 284 | -------- | |
| 285 | 285 | ||
| 286 | - `Eldarion <https://eldarion.cloud/>`_ (formely known as Gondor) is a PaaS powered | ||
| 286 | + `Eldarion <https://eldarion.cloud/>`_ (formerly known as Gondor) is a PaaS powered | ||
| 287 | 287 | by Kubernetes, CoreOS, and Docker. They support any WSGI application and have a | |
| 288 | 288 | guide on deploying `Django projects <https://eldarion-gondor.github.io/docs/how-to/setup-deploy-first-django-project/>`_. | |
| 289 | 289 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -643,7 +643,7 @@ Never use a list comprehension just for its side effects. | |||
| 643 | 643 | ||
| 644 | 644 | .. code-block:: python | |
| 645 | 645 | ||
| 646 | - [print(x) for x in seqeunce] | ||
| 646 | + [print(x) for x in sequence] | ||
| 647 | 647 | ||
| 648 | 648 | **Good**: | |
| 649 | 649 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -201,7 +201,7 @@ the unittest module! | |||
| 201 | 201 | Hypothesis | |
| 202 | 202 | ---------- | |
| 203 | 203 | ||
| 204 | - Hypothesis is a library which lets you write tests that are parametrized by | ||
| 204 | + Hypothesis is a library which lets you write tests that are parameterized by | ||
| 205 | 205 | a source of examples. It then generates simple and comprehensible examples | |
| 206 | 206 | that make your tests fail, letting you find more bugs with less work. | |
| 207 | 207 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments