Daniel Roy Greenfeld: Stop Using Executable Code Outside of Version Control
Link: https://www.pydanny.com/using-executable-code-outside-version-control.html
There's an anti-pattern in the development world, and it's for using executable code as a means to store configuration values. In the Python universe, you sometimes see things like this in settings mo
Link: https://www.pydanny.com/using-executable-code-outside-version-control.html
There's an anti-pattern in the development world, and it's for using executable code as a means to store configuration values. In the Python universe, you sometimes see things like this in settings mo
Python Sweetness: A fork in the road for Mitogen
Link: https://sweetness.hmmz.org/2018-08-27-fork-in-the-road.html
Mitogen for Ansible's
original plan described facets of a scheme centered on features made possible
by a rigorous single cohesive distributed program model, but of those facets,
it quickly became clea
Link: https://sweetness.hmmz.org/2018-08-27-fork-in-the-road.html
Mitogen for Ansible's
original plan described facets of a scheme centered on features made possible
by a rigorous single cohesive distributed program model, but of those facets,
it quickly became clea
sweetness.hmmz.org
python sweetness — A fork in the road for Mitogen
Mitogen for Ansible's original plan described facets of a scheme centered on features made possible by a rigorous single cohesive distributed program model, but of those facets, it quickly became clear that most users are really only interested in the...
Podcast.__init__: Fast Stream Processing In Python Using Faust with Ask Solem
Link: https://www.podcastinit.com/fast-stream-processing-in-python-using-faust-with-ask-solem-episode-176/
The need to process unbounded and continually streaming sources of data has become increasingly common. One of the popular platforms for implementing this is Kafka along with its streams API. Unfortun
Link: https://www.podcastinit.com/fast-stream-processing-in-python-using-faust-with-ask-solem-episode-176/
The need to process unbounded and continually streaming sources of data has become increasingly common. One of the popular platforms for implementing this is Kafka along with its streams API. Unfortun
Podcast.__init__('Python')
Fast Stream Processing In Python Using Faust with Ask Solem - Episode 176
The need to process unbounded and continually streaming sources of data has become increasingly common. One of the popular platforms for implementing this is Kafka along with its streams API. Unfortunately, this requires all of your processing or microservice…
Mike Driscoll: Fall eBook Sale 2018
Link: http://www.blog.pythonlibrary.org/2018/08/26/fall-ebook-sale-2018/
It’s the start of a new school year, so I am running a new sale this Fall. Feel free to check out my current sales:
ReportLab: PDF Processing in Python
Python 201: Intermediate Python
Python 101
The
Link: http://www.blog.pythonlibrary.org/2018/08/26/fall-ebook-sale-2018/
It’s the start of a new school year, so I am running a new sale this Fall. Feel free to check out my current sales:
ReportLab: PDF Processing in Python
Python 201: Intermediate Python
Python 101
The
Mike Driscoll: PyDev of the Week: Manuel Kaufmann
Link: http://www.blog.pythonlibrary.org/2018/08/27/pydev-of-the-week-manuel-kaufmann/
This week we welcome Manuel Kaufmann (@reydelhumo) as our PyDev of the Week. Manuel has been very active in promoting Python in South America and even received a grant a few years ago to help him in t
Link: http://www.blog.pythonlibrary.org/2018/08/27/pydev-of-the-week-manuel-kaufmann/
This week we welcome Manuel Kaufmann (@reydelhumo) as our PyDev of the Week. Manuel has been very active in promoting Python in South America and even received a grant a few years ago to help him in t
Simple is Better Than Complex: How to Create Custom Django Management Commands
Link: https://simpleisbetterthancomplex.com/tutorial/2018/08/27/how-to-create-custom-django-management-commands.html
Django comes with a variety of command line utilities that can be either invoked using django-admin.py or the
convenient manage.py script. A nice thing about it is that you can also add your own comma
Link: https://simpleisbetterthancomplex.com/tutorial/2018/08/27/how-to-create-custom-django-management-commands.html
Django comes with a variety of command line utilities that can be either invoked using django-admin.py or the
convenient manage.py script. A nice thing about it is that you can also add your own comma
Simple is Better Than Complex
How to Create Custom Django Management Commands
Django comes with a variety of command line utilities that can be either invoked using django-admin.py or theconvenient manage.py script. A nice thing about it is that you can also add your own com...
Stack Abuse: Text Classification with Python and Scikit-Learn
Link: https://stackabuse.com/text-classification-with-python-and-scikit-learn/
Introduction
Text classification is one of the most important tasks in Natural Language Processing. It is the process of classifying text strings or documents into different categories, depending upon
Link: https://stackabuse.com/text-classification-with-python-and-scikit-learn/
Introduction
Text classification is one of the most important tasks in Natural Language Processing. It is the process of classifying text strings or documents into different categories, depending upon
Stack Abuse
Text Classification with Python and Scikit-Learn
Text classification is one of the most important tasks in Natural Language Processing. It is the process of classifying text strings or documents into differen...
Real Python: Python Community Interview With Mariatta Wijaya
Link: https://realpython.com/interview-mariatta-wijaya/
For this week’s community interview, I am joined by Mariatta Wijaya.
Mariatta is a web developer at Zapier. She also spends much of her time volunteering in the Python community: she is a core develop
Link: https://realpython.com/interview-mariatta-wijaya/
For this week’s community interview, I am joined by Mariatta Wijaya.
Mariatta is a web developer at Zapier. She also spends much of her time volunteering in the Python community: she is a core develop
Realpython
Python Community Interview With Mariatta Wijaya – Real Python
Mariatta is a web developer at Zapier and volunteers much of her time to helping maintain Python as a core developer. In this interview we talk about her role as a Python core developer, as well as her love of GitHub bots and #icecreamselfies.
Stack Abuse: Comparing Strings using Python
Link: https://stackabuse.com/comparing-strings-using-python/
In Python, strings are sequences of characters, which are effectively stored in memory as an object. Each object can be identified using the id() method, as you can see below. Python tries to re-use o
Link: https://stackabuse.com/comparing-strings-using-python/
In Python, strings are sequences of characters, which are effectively stored in memory as an object. Each object can be identified using the id() method, as you can see below. Python tries to re-use o
Stack Abuse
Comparing Strings using Python
In Python, strings are sequences of characters, which are effectively stored in memory as an object. Each object can be identified using the id() method, as you...
REPL|REBL: Displaying images on OLED screens — Using 1-bpp images in MicroPython
Link: https://www.replrebl.com/article/displaying-images-oled-displays/
We've previously covered the basics of driving OLED I2C displays from MicroPython, including simple graphics commands and text. Here we look at displaying monochrome 1 bit-per-pixel images and animati
Link: https://www.replrebl.com/article/displaying-images-oled-displays/
We've previously covered the basics of driving OLED I2C displays from MicroPython, including simple graphics commands and text. Here we look at displaying monochrome 1 bit-per-pixel images and animati
REPL|REBL
Displaying images on OLED screens | Using 1-bpp images in MicroPython
We've previously covered the basics of driving OLED I2C displays from MicroPython, including simple graphics commands and text. Here we look at displaying monochrome 1 bit-per-pixel images and animations using MicroPython on a Wemos D1. Processing the images…
Rene Dudfield: Draft of, "How to port and market games using #python and #pygame."
Link: http://renesd.blogspot.com/2018/08/draft-of-how-to-port-and-market-games.html
This is a collaborative document, and a really early draft. Please feel free to add any tips or links in a comment here or on the reddit post https://www.reddit.com/r/pygame/comments/9aodt7/collaborat
Link: http://renesd.blogspot.com/2018/08/draft-of-how-to-port-and-market-games.html
This is a collaborative document, and a really early draft. Please feel free to add any tips or links in a comment here or on the reddit post https://www.reddit.com/r/pygame/comments/9aodt7/collaborat
Blogspot
Draft of, "How to port and market games using #python and #pygame."
This is a collaborative document, and a really early draft. Please feel free to add any tips or links in a comment here or on the reddit ...
Techiediaries - Django: Using Python with Electron Tutorial
Link: https://www.techiediaries.com/python-electron-tutorial/
In this tutorial, you'll learn to build GUIs for your Python applications using Electron and web technologies i.e HTML, CSS and JavaScript-this means taking advantage of the latest advancements in fro
Link: https://www.techiediaries.com/python-electron-tutorial/
In this tutorial, you'll learn to build GUIs for your Python applications using Electron and web technologies i.e HTML, CSS and JavaScript-this means taking advantage of the latest advancements in fro
Techiediaries
Using Python with Electron Tutorial | Techiediaries
In this tutorial, you'll learn to build GUIs for your Python applications using Electron and web technologies i.e HTML, CSS and JavaScript
The No Title® Tech Blog: Optimize Images v1.2 – new features and finally available on PyPI!
Link: https://no-title.victordomingos.com/articles/2018/optimize-images_v1_2_available_on_pypi
The new release of my image optimization command-line utility is out. It has a couple of cool new features and, for the first time, it is now available on PyPI, which means you can just pip install it
Link: https://no-title.victordomingos.com/articles/2018/optimize-images_v1_2_available_on_pypi
The new release of my image optimization command-line utility is out. It has a couple of cool new features and, for the first time, it is now available on PyPI, which means you can just pip install it
The No Title® Tech Blog
Optimize Images v1.2 – new features and finally available on PyPI!
The new release of my image optimization command-line utility is out. It has a couple of cool new features and, for the first time, it is now available on PyPI, which means you can just pip install it as any other Python package.
Mike Driscoll: Jupyter Notebook 101 Pre-Order
Link: http://www.blog.pythonlibrary.org/2018/08/28/jupyter-notebook-101-pre-order/
My latest book, Jupyter Notebook 101, is now available for Pre-Order on Leanpub.
This book is scheduled to be finished by November 2018. Should you purchase this book, you will get it in PDF, ePub an
Link: http://www.blog.pythonlibrary.org/2018/08/28/jupyter-notebook-101-pre-order/
My latest book, Jupyter Notebook 101, is now available for Pre-Order on Leanpub.
This book is scheduled to be finished by November 2018. Should you purchase this book, you will get it in PDF, ePub an
Techiediaries - Django: Using Electron with Flask and python-shell
Link: https://www.techiediaries.com/flask-electron-tutorial/
In the previous tutorial, we've seen how to use Electron and python-shell to create Python apps with Electron GUIs. This opens the door for using the modern frontend web technologies, the Node.js and
Link: https://www.techiediaries.com/flask-electron-tutorial/
In the previous tutorial, we've seen how to use Electron and python-shell to create Python apps with Electron GUIs. This opens the door for using the modern frontend web technologies, the Node.js and
Python Anywhere: New feature: self-installation of SSL certificates!
Link: http://blog.pythonanywhere.com/165/
.jab-post img {
border: 2px solid #eeeeee;
padding: 5px;
}
Our system update last week added on an API to let you install HTTP certificates yourself
instead of having to email us. We've bee
Link: http://blog.pythonanywhere.com/165/
.jab-post img {
border: 2px solid #eeeeee;
padding: 5px;
}
Our system update last week added on an API to let you install HTTP certificates yourself
instead of having to email us. We've bee
Python Software Foundation: Redesigning the Python Package Index
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/HM1Dxbw1UIM/redesigning-python-package-index.html
In April this year a new version of the Python Package Index (PyPI) was released, an effort made possible by a generous award from the Mozilla Open Source Support program.
A major change in PyPI is
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/HM1Dxbw1UIM/redesigning-python-package-index.html
In April this year a new version of the Python Package Index (PyPI) was released, an effort made possible by a generous award from the Mozilla Open Source Support program.
A major change in PyPI is
Blogspot
Redesigning the Python Package Index
In April this year a new version of the Python Package Index (PyPI) was released, an effort made possible by a generous award from the Mozi...
Codementor: How I got in the top 1 % on Kaggle.
Link: https://www.codementor.io/tushar20/how-i-got-in-the-top-1-on-kaggle-mufz8bypa
I participated in Santander Customer Satisfaction challenge, ran on Kaggle for 2 months and got into top 1%. Here, I would be discussing my approach to this problem.
PROBLEM STATEMENT
Customer...
Link: https://www.codementor.io/tushar20/how-i-got-in-the-top-1-on-kaggle-mufz8bypa
I participated in Santander Customer Satisfaction challenge, ran on Kaggle for 2 months and got into top 1%. Here, I would be discussing my approach to this problem.
PROBLEM STATEMENT
Customer...
www.codementor.io
How I got in the top 1 % on Kaggle. | Codementor
I participated in Santander Customer Satisfaction challenge, ran on Kaggle for 2 months and got into top 1%. Here, I would be discussing my approach to this problem.
PROBLEM STATEMENT
Customer...
PROBLEM STATEMENT
Customer...
Codementor: How to Create a Facebook Messenger Bot with Python Flask
Link: https://www.codementor.io/apcelent/how-to-create-a-facebook-messenger-bot-with-python-flask-mv1o9acv3
The bot-revolution has taken over, and everyone is building a bot. In this post we take you through creating your first bot using Python/Flask. The codebase can be found here on Github...
Link: https://www.codementor.io/apcelent/how-to-create-a-facebook-messenger-bot-with-python-flask-mv1o9acv3
The bot-revolution has taken over, and everyone is building a bot. In this post we take you through creating your first bot using Python/Flask. The codebase can be found here on Github...
www.codementor.io
How to Create a Facebook Messenger Bot with Python Flask | Codementor
The bot-revolution has taken over, and everyone is building a bot. In this post we take you through creating your first bot using Python/Flask. The codebase can be found here on Github...
Djangostars: Merging Django ORM with SQLAlchemy for Easier Data Analysis
Link: https://djangostars.com/blog/merging-django-orm-with-sqlalchemy-for-easier-data-analysis/
Development of products with Django framework is usually easy and straightforward; great documentation, many tools out of the box, plenty of open source libraries and big community. Django ORM takes f
Link: https://djangostars.com/blog/merging-django-orm-with-sqlalchemy-for-easier-data-analysis/
Development of products with Django framework is usually easy and straightforward; great documentation, many tools out of the box, plenty of open source libraries and big community. Django ORM takes f
Software Development Blog & IT Tech Insights | Django Stars
Merging Django ORM with SQLAlchemy (Video Inside) | Django Stars
Read on to learn how to make building advanced queries for data analysis projects easier. Find out how we managed to mix Django ORM and SQLAlchemy Core and what we got from it.
Real Python: Python Pandas: Tricks & Features You May Not Know
Link: https://realpython.com/python-pandas-tricks/
Pandas is a foundational library for analytics, data processing, and data science. It’s a huge project with tons of optionality and depth.
This tutorial will cover some lesser-used but idiomatic Pand
Link: https://realpython.com/python-pandas-tricks/
Pandas is a foundational library for analytics, data processing, and data science. It’s a huge project with tons of optionality and depth.
This tutorial will cover some lesser-used but idiomatic Pand
Realpython
Python pandas: Tricks & Features You May Not Know – Real Python
Lesser-known but idiomatic pandas features for those already comfortable with Pandas' basic functionality and concepts.