Edmonton.py
The Edmonton Python User Group
edmontonpy.com
@edmontonpy
edmontonpy.slack.com
Today's talks
Django Stuff
Oliver Antoniu
Vue.js Stuff
Bryan Hyshka
Events
at some point, be aware of it!
February 23-24, Seattle
May 1-9, Cleveland
Releases
Latest Python at 3.7.1
News
Articles
Python Tip
Deleting a File on a file system
import contextlib
with contextlib.suppress(FileNotFoundError):
os.remove('somefile.tmp')
# This is equivalent to the following try/except clause:
try:
os.remove('somefile.tmp')
except FileNotFoundError:
pass
NEXT MEETUP ON JANUARY 14th
-
Carson Zhang - Wxpython, visualization stuff.
-
Open Spot.
Please Let me know if you're Interested.
December 2018
By Daniel Mouris
December 2018
- 784