EdmontonPy
Inspired by the Python community, we hope to foster a strong, supportive, and proficient Python community in the Edmonton area.
Web: EdmontonPy.com
Twitter: @EdmontonPy
Slack: devedmonton.slack.com
#meetup-edmontonpy
YouTube: Dev Edmonton
Algorithms of Oppression by Dr. Safiya Noble
Race After Technology by Ruha Benjamin
Technicolor: Race, Technology, and Everyday Life by Alondra Nelson; Race, Rhetoric, and Technology by Dr. Adam J. Banks
Artificial Unintelligence: How Computers Misunderstand the World by Meredith Broussard.
Looking for a job? Looking to hire great people?
Please visit #opportunities at devedmonton.slack.com
Podcast.__init__:
Extending The Life Of Python 2 Projects With Tauthon - Episode 265
Practical Python Programming (David Beazley)
3.6 million points, 1 GIF — Visualise big data in Python (Towards Data Science)
Common Python Security Problems (Stan Georgian)
Waiting in asyncio (Hynek)
A tour of Django server setups (Matthew Segal)
Keyword-only arguments in Python (Luke Plant)
# don't do this
try:
do_something()
except UnableToDoSomething as e:
logger.exception(str(e))
# do this
try:
do_something()
except UnableToDoSomething:
logger.exception("Unable to do something")
# don't do this
try:
do_something()
except UnableToDoSomething as e:
logger.exception("Unable to do something: %s" % e)
# do this
try:
do_something(arg=x)
except UnableToDoSomething:
logger.exception("Unable to do something with arg %s", x)
Logging exceptions
Message one of
@aaron.yong, @Ashia, @data-get, @dgmouris
on Dev Edmonton Slack
Beginners are more than welcome!
Talks vary in topic, they just have to do with Python in some way. 🐍
Alex
Ryan Chartier
By EdmontonPy
EdmontonPy met online on May 11, 2020 at 7PM MDT. These are their slides!
Inspired by the Python community, we hope to foster a strong, supportive, and proficient Python community in the Edmonton area.