Mike Driscoll: Python 101: Episode #40 – Creating Executables with bbfreeze
Link: http://www.blog.pythonlibrary.org/2019/01/08/python-101-episode-40-creating-executables-with-bbfreeze/
In this screencast, we will learn how to turn your Python code into a Windows executable file using the bbfreeze project.
You can also read the chapter this video is based on here or get the book o
Link: http://www.blog.pythonlibrary.org/2019/01/08/python-101-episode-40-creating-executables-with-bbfreeze/
In this screencast, we will learn how to turn your Python code into a Windows executable file using the bbfreeze project.
You can also read the chapter this video is based on here or get the book o
PyCoder’s Weekly: Issue #350 (Jan. 8, 2019)
Link: https://pycoders.com/issues/350
#350 – JANUARY 8, 2019 View in Browser » The Ultimate Guide to Python Type Checking In this guide, you’ll look at Python type checking. Traditionally, types have been handled by the Python inter
Link: https://pycoders.com/issues/350
#350 – JANUARY 8, 2019 View in Browser » The Ultimate Guide to Python Type Checking In this guide, you’ll look at Python type checking. Traditionally, types have been handled by the Python inter
Pycoders
PyCoder’s Weekly | Issue #350
Issue #350 of the PyCoder’s Weekly newsletter, published Jan. 8, 2019.
NumFOCUS: Julia Co-Creators To Receive 2019 James H. Wilkinson Prize for Numerical Software
Link: https://numfocus.org/blog/julia-co-creators-to-receive-2019-james-h-wilkinson-prize-for-numerical-software
The post Julia Co-Creators To Receive 2019 James H. Wilkinson Prize for Numerical Software appeared first on NumFOCUS.
Link: https://numfocus.org/blog/julia-co-creators-to-receive-2019-james-h-wilkinson-prize-for-numerical-software
The post Julia Co-Creators To Receive 2019 James H. Wilkinson Prize for Numerical Software appeared first on NumFOCUS.
NumFOCUS
Julia Co-Creators To Receive 2019 James H. Wilkinson Prize for Numerical Software - NumFOCUS
Julia co-creators Jeff Bezanson, Stefan Karpinski and Viral Shah win the 2019 James H. Wilkinson Prize for Numerical Software.
Python Insider: Python 3.7.2 and 3.6.8 are now available
Link: http://feedproxy.google.com/~r/PythonInsider/~3/o5ROzg9M8NY/python-372-and-368-are-now-available.html
Python 3.7.2 and 3.6.8 are now available. Python 3.7.2 is the next maintenance release of Python 3.7, the latest feature release of Python. You can find Python 3.7.2 here:
https://www.python.
Link: http://feedproxy.google.com/~r/PythonInsider/~3/o5ROzg9M8NY/python-372-and-368-are-now-available.html
Python 3.7.2 and 3.6.8 are now available. Python 3.7.2 is the next maintenance release of Python 3.7, the latest feature release of Python. You can find Python 3.7.2 here:
https://www.python.
Blogspot
Python Insider: Python 3.7.2 and 3.6.8 are now available
codingdirectional: Looping the video with ffmpeg and python
Link: http://codingdirectional.info/2019/01/09/looping-the-video-with-ffmpeg-and-python/
In this article, we will continue to develop the video editing application which we have started a few days ago. In this chapter, we are going to loop the original video twice besides resizing it as b
Link: http://codingdirectional.info/2019/01/09/looping-the-video-with-ffmpeg-and-python/
In this article, we will continue to develop the video editing application which we have started a few days ago. In this chapter, we are going to loop the original video twice besides resizing it as b
Moshe Zadka: Checking in JSON
Link: https://orbifold.xyz/check-in-json.html
JSON is a useful format.
It might not be ideal for hand-editing,
but it does have the benefit that it
can
be hand-edited,
and
it is easy enough to manipulate programmatically.
For this reason,
it is l
Link: https://orbifold.xyz/check-in-json.html
JSON is a useful format.
It might not be ideal for hand-editing,
but it does have the benefit that it
can
be hand-edited,
and
it is easy enough to manipulate programmatically.
For this reason,
it is l
orbifold.xyz
Orbifolds and Other Games - Checking in JSON
Programiz: Python JSON
Link: https://www.programiz.com/python-programming/json
In this tutorial, you will learn to parse, read and write JSON in Python with the help of examples. Also, you will learn to convert JSON to dict and pretty print it.
Link: https://www.programiz.com/python-programming/json
In this tutorial, you will learn to parse, read and write JSON in Python with the help of examples. Also, you will learn to convert JSON to dict and pretty print it.
Programiz
Python JSON: Read, Write, Parse JSON (With Examples)
In this tutorial, you will learn to parse, read and write JSON in Python with the help of examples. Also, you will learn to convert JSON to dict and pretty print it.
Swisscom ICT: Replacing judgmental forecasting with statistical methods
Link: https://ict.swisscom.ch/2019/01/replacing-judgmental-forecasting-with-statistical-methods/
Although machine learning and data science is on everyone's lips in recent years, and with that the promise of an AI revolution, the methodologies and technologies currently available are often not ta
Link: https://ict.swisscom.ch/2019/01/replacing-judgmental-forecasting-with-statistical-methods/
Although machine learning and data science is on everyone's lips in recent years, and with that the promise of an AI revolution, the methodologies and technologies currently available are often not ta
Swisscom ICT
Replacing Judgmental Forecasting with Statistical Methods | Swisscom ICT
Although machine learning and data science is on everyone's lips in recent years, and with that the promise of an AI revolution, the methodologies and technologies currently available are often not taken advantage of.
gamingdirectional: Show the game level on game scene
Link: http://gamingdirectional.com/blog/2019/01/09/show-the-game-level-on-game-scene/
Hello, it has been a day since the last post, I am busy preparing the next pygame project which will appear on this website soon so do stay tuned. While we are getting ready for our next game project
Link: http://gamingdirectional.com/blog/2019/01/09/show-the-game-level-on-game-scene/
Hello, it has been a day since the last post, I am busy preparing the next pygame project which will appear on this website soon so do stay tuned. While we are getting ready for our next game project
Gaming Directional
Show the game level on game scene
The game level text on top of the game scene
Real Python: Django Migrations: A Primer
Link: https://realpython.com/django-migrations-a-primer/
Since version 1.7, Django has come with built-in support for database migrations. In Django, database migrations usually go hand in hand with models: whenever you code up a new model, you also generat
Link: https://realpython.com/django-migrations-a-primer/
Since version 1.7, Django has come with built-in support for database migrations. In Django, database migrations usually go hand in hand with models: whenever you code up a new model, you also generat
Realpython
Django Migrations: A Primer – Real Python
In this tutorial, you’ll get comfortable with Django migrations and learn how to create database tables without writing any SQL, how to automatically modify your database after you changed your models, and how to revert changes made to your database.
Karim Elghamrawy: Python: __name__ == “__main__” Explained
Link: https://www.afternerd.com/blog/python-__name__-__main__/
You see it everywhere. If you have been coding in Python for a while, or just casually browsing Python Github repositories, you probably have come across this snippet of code. if __name__ == '__main__
Link: https://www.afternerd.com/blog/python-__name__-__main__/
You see it everywhere. If you have been coding in Python for a while, or just casually browsing Python Github repositories, you probably have come across this snippet of code. if __name__ == '__main__
Afternerd
Python: __name__ == "__main__" Explained - Afternerd
Vasudev Ram: FizzBuzz in Python with nested conditional expressions and a generator expression
Link: http://jugad2.blogspot.com/2018/12/fizzbuzz-in-python-with-nested.html
- By Vasudev Ram - Online Python training / SQL training / Linux trainingThe FizzBuzz problem [1] is known to those who test/interview programming candidates, as one simple way to filter out unsuitabl
Link: http://jugad2.blogspot.com/2018/12/fizzbuzz-in-python-with-nested.html
- By Vasudev Ram - Online Python training / SQL training / Linux trainingThe FizzBuzz problem [1] is known to those who test/interview programming candidates, as one simple way to filter out unsuitabl
Blogspot
FizzBuzz in Python with nested conditional expressions and a generator expression
Vasudev Ram's blog on software innovation, open-source and proprietary, worldwide. Python, D, Go, FreePascal, Unix, databases, open source.
Programiz: Python del Statement
Link: https://www.programiz.com/python-programming/del
In this tutorial, you will learn to use the del keyword with the help of examples.
Link: https://www.programiz.com/python-programming/del
In this tutorial, you will learn to use the del keyword with the help of examples.
Programiz
Python del Statement (With Examples)
In this tutorial, you will learn to use the del keyword with the help of examples. The syntax of del statement is "del target_list", where target_list can be list, dictionary, item within a list, variable etc.
Graham Dumpleton: Deploying a multi user workshop environment
Link: http://blog.dscpl.com.au/2018/12/deploying-multi-user-workshop.html
In this fourth post of this series of posts, we finally get to how to deploy a multi user workshop environment using OpenShift, or at least, how to deploy an interactive terminal session per user acce
Link: http://blog.dscpl.com.au/2018/12/deploying-multi-user-workshop.html
In this fourth post of this series of posts, we finally get to how to deploy a multi user workshop environment using OpenShift, or at least, how to deploy an interactive terminal session per user acce
blog.dscpl.com.au
Deploying a multi user workshop environment
In this fourth post of this series of posts , we finally get to how to deploy a multi user workshop environment using OpenShift, or at least...
Graham Dumpleton: Administration features of JupyterHub
Link: http://blog.dscpl.com.au/2019/01/administration-features-of-jupyterhub.html
You have seen now in the last post how you can use JupyterHub to deploy a multi user workshop environment where each user is given access to their own interactive shell environment in their web browse
Link: http://blog.dscpl.com.au/2019/01/administration-features-of-jupyterhub.html
You have seen now in the last post how you can use JupyterHub to deploy a multi user workshop environment where each user is given access to their own interactive shell environment in their web browse
blog.dscpl.com.au
Administration features of JupyterHub
You have seen now in the last post how you can use JupyterHub to deploy a multi user workshop environment where each user is given access t...
PyCharm: PyCharm 2018.3.3
Link: http://feedproxy.google.com/~r/Pycharm/~3/Me_6oKtULlU/
PyCharm 2018.3.3 is now available. It comes with several Python-related improvements as well as a bunch of platform enhancements.
Get it now from our website.
Improved in This Version
The debugger’s o
Link: http://feedproxy.google.com/~r/Pycharm/~3/Me_6oKtULlU/
PyCharm 2018.3.3 is now available. It comes with several Python-related improvements as well as a bunch of platform enhancements.
Get it now from our website.
Improved in This Version
The debugger’s o
PyCharm Blog
PyCharm 2018.3.3
PyCharm 2018.3.3 is now available. It comes with several Python-related improvements as well as a bunch of platform enhancements. Get it now from our website. Improved in This Version The debugger’…
Reuven Lerner: Reminder: Weekly Python Exercise registration ends soon
Link: https://blog.lerner.co.il/reminder-weekly-python-exercise-registration-ends-soon/
If you want to improve your understanding of Python, then you’re going to have to practice.
And as hundreds of developers from around the world have already learned, there’s no better way to practice
Link: https://blog.lerner.co.il/reminder-weekly-python-exercise-registration-ends-soon/
If you want to improve your understanding of Python, then you’re going to have to practice.
And as hundreds of developers from around the world have already learned, there’s no better way to practice
Lerner Consulting Blog
Reminder: Weekly Python Exercise registration ends soon - Lerner Consulting Blog
If you want to improve your understanding of Python, then you’re going to have to practice. And as hundreds of developers from around the world have already learned, there’s no better way to practice than Weekly Python Exercise. If you’re relatively new to…
Ian Ozsvald: “discover feature relationships” – new EDA tool
Link: http://ianozsvald.com/2019/01/10/discover-feature-relationships-new-eda-tool/
I’ve built a new Exploratory Data Analysis tool, I used it in a few presentations last year with the code on github and have now (finally) published it to PyPI.
The goal is to quickly check in a DataF
Link: http://ianozsvald.com/2019/01/10/discover-feature-relationships-new-eda-tool/
I’ve built a new Exploratory Data Analysis tool, I used it in a few presentations last year with the code on github and have now (finally) published it to PyPI.
The goal is to quickly check in a DataF
Entrepreneurial Geekiness
"discover feature relationships" - new EDA tool - Entrepreneurial Geekiness
I’ve built a new Exploratory Data Analysis tool, I used it in a few presentations last year with the code on github and have now (finally) published it to PyPI. The goal is to quickly check in a DataFrame using machine learning (sklearn’s Random Forests)…
The Digital Cat: Clean Architectures in Python: the book
Link: http://blog.thedigitalcatonline.com/blog/2018/12/20/cabook/
UPDATE: version 1.0.3 is out! Some readers unsurprisingly spotted typos and bad grammar and were so kind to submit fixes.
I'm excited to announce that the success of the post on clean architectures en
Link: http://blog.thedigitalcatonline.com/blog/2018/12/20/cabook/
UPDATE: version 1.0.3 is out! Some readers unsurprisingly spotted typos and bad grammar and were so kind to submit fixes.
I'm excited to announce that the success of the post on clean architectures en
Python Software Foundation: 2018 in review!
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/NXMcoIchkxY/2018-in-review.html
Happy New Year from the PSF! We’d like to highlight some of our activities from 2018 and update the community on the initiatives we are working on.
PyCon 2018
PyCon 2018 was held in Cleveland,
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/NXMcoIchkxY/2018-in-review.html
Happy New Year from the PSF! We’d like to highlight some of our activities from 2018 and update the community on the initiatives we are working on.
PyCon 2018
PyCon 2018 was held in Cleveland,
Blogspot
2018 in review!
Happy New Year from the PSF! We’d like to highlight some of our activities from 2018 and update the community on the initiatives we are wor...