James Bennett: django-registration 3.0
Link: https://www.b-list.org/weblog/2018/sep/04/three-dot-oh/
Today I’m pleased to announce the release of django-registration 3.0. This is a pretty big update, and one that’s been coming for a while, so I want to take a moment to go briefly through the changes
Link: https://www.b-list.org/weblog/2018/sep/04/three-dot-oh/
Today I’m pleased to announce the release of django-registration 3.0. This is a pretty big update, and one that’s been coming for a while, so I want to take a moment to go briefly through the changes
Michael Foord: Interview on Podcast.__init__
Link: https://agileabstractions.com/Podcast/
I recently had the great pleasure of having a conversation with Tobias Macey, who produces the Podcast.init podcast. We spent almost an hour talking about testing, the Python community and the mock l
Link: https://agileabstractions.com/Podcast/
I recently had the great pleasure of having a conversation with Tobias Macey, who produces the Podcast.init podcast. We spent almost an hour talking about testing, the Python community and the mock l
Agileabstractions
Interview on Podcast.__init__
I recently had the great pleasure of having a conversation with Tobias Macey, who produces the Podcast.init podcast. We spent almost an hour talking about testing, the Python community and the mock library amongst other things.
The podcast is now available…
The podcast is now available…
Python Celery - Weekly Celery Tutorials and How-tos: Celery task exceptions and automatic retries
Link: https://www.python-celery.com/2018/09/04/error-handling-retry/
Handling Celery task failures in a consistent and predictable way is a prerquisite to building
a resilient asynchronous system. In this blog post you will learn how to: handle Celery task errors
and a
Link: https://www.python-celery.com/2018/09/04/error-handling-retry/
Handling Celery task failures in a consistent and predictable way is a prerquisite to building
a resilient asynchronous system. In this blog post you will learn how to: handle Celery task errors
and a
Python-Celery
Celery task exceptions and automatic retries - Python Celery - The Missing Blog
Handling Celery task failures in a consistent and predictable way is a prerquisite to building a resilient asynchronous system. In this blog post you will le...
NumFOCUS: 2018 NumFOCUS Board Selection Results
Link: https://numfocus.org/blog/2018-numfocus-board-selection-results
The post 2018 NumFOCUS Board Selection Results appeared first on NumFOCUS.
Link: https://numfocus.org/blog/2018-numfocus-board-selection-results
The post 2018 NumFOCUS Board Selection Results appeared first on NumFOCUS.
NumFOCUS
2018 NumFOCUS Board Selection Results - NumFOCUS
NumFOCUS: 2018 Board of Directors Selection Process Challenges
Link: https://numfocus.org/blog/2018-board-of-directors-selection-process-challenges
The post 2018 Board of Directors Selection Process Challenges appeared first on NumFOCUS.
Link: https://numfocus.org/blog/2018-board-of-directors-selection-process-challenges
The post 2018 Board of Directors Selection Process Challenges appeared first on NumFOCUS.
NumFOCUS
2018 Board of Directors Selection Process Challenges - NumFOCUS
Chris Warrick: Python Virtual Environments in Five Minutes
Link: https://chriswarrick.com/blog/2018/09/04/python-virtual-environments/
In Python, virtual environments are used to isolate projects from each other
(if they require different versions of the same library, for example). They let
you install and manage packages without adm
Link: https://chriswarrick.com/blog/2018/09/04/python-virtual-environments/
In Python, virtual environments are used to isolate projects from each other
(if they require different versions of the same library, for example). They let
you install and manage packages without adm
Chris Warrick
Python Virtual Environments in Five Minutes
A short yet descriptive guide on Python virtual environments.
NumFOCUS: NumFOCUS Sustainer Weeks
Link: https://numfocus.org/blog/numfocus-sustainer-weeks
The post NumFOCUS Sustainer Weeks appeared first on NumFOCUS.
Link: https://numfocus.org/blog/numfocus-sustainer-weeks
The post NumFOCUS Sustainer Weeks appeared first on NumFOCUS.
NumFOCUS
NumFOCUS Sustainer Weeks - NumFOCUS
Continuum Analytics Blog: Python 3.7 Package Build Out & Miniconda Release
Link: https://www.anaconda.com/blog/developer-blog/python-3-7-package-build-out-miniconda-release/
By Ray Donnelly & Crystal Soja We are pleased to announce that Python 3.7 packages for all supported platforms and packages of the Anaconda Distribution Repository (repo.anaconda.com) are now availabl
Link: https://www.anaconda.com/blog/developer-blog/python-3-7-package-build-out-miniconda-release/
By Ray Donnelly & Crystal Soja We are pleased to announce that Python 3.7 packages for all supported platforms and packages of the Anaconda Distribution Repository (repo.anaconda.com) are now availabl
Anaconda
Python 3.7 Package Build Out & Miniconda Release - Anaconda
By Ray Donnelly & Crystal Soja We are pleased to announce that Python 3.7 packages for all supported platforms and packages of the Anaconda Distribution Repository (repo.anaconda.com) are now available. There are 865 packages built for Linux, 864 packages…
Matthew Rocklin: Dask Release 0.19.0
Link: https://matthewrocklin.com/blog//work/2018/09/05/dask-0.19.0
This work is supported by Anaconda Inc.
I’m pleased to announce the release of Dask version 0.19.0. This is a major
release with bug fixes and new features. The last release was 0.18.2 on July
23rd.
Link: https://matthewrocklin.com/blog//work/2018/09/05/dask-0.19.0
This work is supported by Anaconda Inc.
I’m pleased to announce the release of Dask version 0.19.0. This is a major
release with bug fixes and new features. The last release was 0.18.2 on July
23rd.
"Menno's Musings": IMAPClient 2.1.0
Link: http://menno.io/posts/imapclient-210/
IMAPClient 2.1.0 has just been
released! Here's the main highlights:
Python 3.7 is now officially suppported
Testing against PyPy (version 2 and 3)
Added support for the QUOTA extension
Helper for l
Link: http://menno.io/posts/imapclient-210/
IMAPClient 2.1.0 has just been
released! Here's the main highlights:
Python 3.7 is now officially suppported
Testing against PyPy (version 2 and 3)
Added support for the QUOTA extension
Helper for l
Real Python: Conditional Statements in Python
Link: https://realpython.com/python-conditional-statements/
From the previous tutorials in this series, you now have quite a bit of Python code under your belt. Everything you have seen so far has consisted of sequential execution, in which statements are alw
Link: https://realpython.com/python-conditional-statements/
From the previous tutorials in this series, you now have quite a bit of Python code under your belt. Everything you have seen so far has consisted of sequential execution, in which statements are alw
Realpython
Conditional Statements in Python – Real Python
In this step-by-step tutorial you'll learn how to work with conditional ("if") statements in Python. Master if-statements and see how to write complex decision making code in your programs.
PyCharm: PyCharm 2018.3 EAP 1
Link: http://feedproxy.google.com/~r/Pycharm/~3/VeeiCIRzeEE/
Development on PyCharm 2018.3 is currently in progress, but if you can’t wait for the release date, you can try our early access preview (EAP) builds from now on. The first one in this series is avail
Link: http://feedproxy.google.com/~r/Pycharm/~3/VeeiCIRzeEE/
Development on PyCharm 2018.3 is currently in progress, but if you can’t wait for the release date, you can try our early access preview (EAP) builds from now on. The first one in this series is avail
PyCharm Blog
PyCharm 2018.3 EAP 1
Development on PyCharm 2018.3 is currently in progress, but if you can’t wait for the release date, you can try our early access preview (EAP) builds from now on. The first one in this series…
Codementor: How to run and schedule Python scripts on Raspberry Pi
Link: https://www.codementor.io/gergelykovcs/how-to-run-and-schedule-python-scripts-on-raspberry-pi-n2clhe3kp
A short tutorial on how to install a Raspberry Pi and use it for python scripting, automation.
Link: https://www.codementor.io/gergelykovcs/how-to-run-and-schedule-python-scripts-on-raspberry-pi-n2clhe3kp
A short tutorial on how to install a Raspberry Pi and use it for python scripting, automation.
www.codementor.io
How to run and schedule Python scripts on Raspberry Pi | Codementor
A short tutorial on how to install a Raspberry Pi and use it for python scripting, automation.
Codementor: Delete files in uploadcare — python
Link: https://www.codementor.io/vicktor2555/delete-files-in-uploadcare-python-n3osdfabd
delete files with python in uploadcare
Link: https://www.codementor.io/vicktor2555/delete-files-in-uploadcare-python-n3osdfabd
delete files with python in uploadcare
www.codementor.io
Delete files in uploadcare — python | Codementor
delete files with python in uploadcare
Davy Wybiral: Puck.js: Javascript+Bluetooth===Awesome
Link: http://davywybiral.blogspot.com/2018/09/puckjs-javascriptbluetoothawesome.html
Introducing Puck.js. The adorable Bluetooth-enabled microcontroller that you can program with Javascript.
Link: http://davywybiral.blogspot.com/2018/09/puckjs-javascriptbluetoothawesome.html
Introducing Puck.js. The adorable Bluetooth-enabled microcontroller that you can program with Javascript.
Blogspot
Puck.js: Javascript+Bluetooth===Awesome
Introducing Puck.js. The adorable Bluetooth-enabled microcontroller that you can program with Javascript.
Python Engineering at Microsoft: Python in Visual Studio Code – August 2018 Release
Link: https://blogs.msdn.microsoft.com/pythonengineering/2018/09/05/python-in-visual-studio-code-august-2018-release/
We are pleased to announce that the August 2018 release of the Python Extension for Visual Studio Code is now available. You can download the Python extension from the marketplace, or install it direc
Link: https://blogs.msdn.microsoft.com/pythonengineering/2018/09/05/python-in-visual-studio-code-august-2018-release/
We are pleased to announce that the August 2018 release of the Python Extension for Visual Studio Code is now available. You can download the Python extension from the marketplace, or install it direc
PyCharm: PyCharm 2018.2.3
Link: http://feedproxy.google.com/~r/Pycharm/~3/jfRCsjoEq1M/
PyCharm 2018.2.3 is now available, with some small improvements. You can download this version from our website.
New in This Version
A number of improvements and fixes for the integrated Python conso
Link: http://feedproxy.google.com/~r/Pycharm/~3/jfRCsjoEq1M/
PyCharm 2018.2.3 is now available, with some small improvements. You can download this version from our website.
New in This Version
A number of improvements and fixes for the integrated Python conso
PyCharm Blog
PyCharm 2018.2.3
PyCharm 2018.2.3 is now available, with some small improvements. You can download this version from our website. New in This Version A number of improvements and fixes for the integrated Python con…
EuroPython: EuroPython 2018: Videos for Friday available
Link: https://blog.europython.eu/post/177798571707
We are pleased to announce the third and last batch of cut videos from EuroPython 2018 in Edinburgh, Scotland, UK.EuroPython 2018 YouTube Playlist
In the last batch, we have included all videos for Fr
Link: https://blog.europython.eu/post/177798571707
We are pleased to announce the third and last batch of cut videos from EuroPython 2018 in Edinburgh, Scotland, UK.EuroPython 2018 YouTube Playlist
In the last batch, we have included all videos for Fr
EuroPython Blog
EuroPython 2018: Videos for Friday available
We are pleased to announce the third and last batch of cut videos from EuroPython 2018 in Edinburgh, Scotland, UK.
EuroPython 2018 YouTube Playlist
In the last batch, we have included all videos for...
EuroPython 2018 YouTube Playlist
In the last batch, we have included all videos for...
Mike Driscoll: Python 101: Episode #23 – Working with XML
Link: http://www.blog.pythonlibrary.org/2018/09/06/python-101-episode-23-working-with-xml/
Learn the basics of Python’s built-in XML modules, minidom and ElementTree. You can read the chapter this is based on here: http://python101.pythonlibrary.org/chapter23_xml.html or get the book from
Link: http://www.blog.pythonlibrary.org/2018/09/06/python-101-episode-23-working-with-xml/
Learn the basics of Python’s built-in XML modules, minidom and ElementTree. You can read the chapter this is based on here: http://python101.pythonlibrary.org/chapter23_xml.html or get the book from
Randy Zwitch: Mirroring an FTP Using lftp and cron
Link: http://randyzwitch.com/mirror-ftp-lftp/
As my Developer Advocate role leads me to doing more and more Sysadmin/Data Engineer type of work, I continuously find myself looking for more efficient ways of copying data folders to where I need th
Link: http://randyzwitch.com/mirror-ftp-lftp/
As my Developer Advocate role leads me to doing more and more Sysadmin/Data Engineer type of work, I continuously find myself looking for more efficient ways of copying data folders to where I need th
Randyzwitch
randyzwitch.com | Mirroring an FTP Using lftp and cron
Mirroring an FTP site can be accomplished with lftp using a single line of code. Here's how to do it, using cron to update the mirror every 5 minutes.