(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| """The version regex in django/contrib/gis/geos/libgeos.py fails on | |
| the latest homebrew geos install at time of writing, with message: | |
| django.contrib.gis.geos.error.GEOSException: Could not parse version info string "3.8.0-CAPI-1.13.1 " | |
| The trailing whitespace is the culprit. Add a r'\s?$' to the end of the pattern. | |
| """ | |
| version_regex = re.compile( |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.