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.
NumFOCUS: Tech-Driven Trading Firm IMC Joins NumFOCUS Corporate Sponsors
Link: https://numfocus.org/blog/tech-driven-trading-firm-imc-joins-numfocus-corporate-sponsors
The post Tech-Driven Trading Firm IMC Joins NumFOCUS Corporate Sponsors appeared first on NumFOCUS.
Link: https://numfocus.org/blog/tech-driven-trading-firm-imc-joins-numfocus-corporate-sponsors
The post Tech-Driven Trading Firm IMC Joins NumFOCUS Corporate Sponsors appeared first on NumFOCUS.
NumFOCUS
Tech-Driven Trading Firm IMC Joins NumFOCUS Corporate Sponsors - NumFOCUS
Continuum Analytics Blog: How PNC Financial Services Leveraged Anaconda to Enable Data Science and Machine Learning Capabilities Across the Company
Link: https://www.anaconda.com/blog/company-blog/pnc-financial-services-leveraged-anaconda-enable-data-science-machine-learning-capabilities-across-company/
As an AI software company passionate about the real-world practice of data science, machine learning, and predictive analytics, we take great pleasure in hearing about the inspiring and innovative way
Link: https://www.anaconda.com/blog/company-blog/pnc-financial-services-leveraged-anaconda-enable-data-science-machine-learning-capabilities-across-company/
As an AI software company passionate about the real-world practice of data science, machine learning, and predictive analytics, we take great pleasure in hearing about the inspiring and innovative way
Anaconda
How PNC Financial Services Leveraged Anaconda to Enable Data Science and Machine Learning Capabilities Across the Company - Anaconda
Learn why PNC chose Anaconda Enterprise as its AI enablement platform.
Bill Ward / AdminTome: Python Custom Logging Handler Example
Link: https://www.admintome.com/blog/python-custom-logging-handler-example/
In this post, I am going to write a Python custom logging handler that will send log entries to a Kafka broker where you can aggregate them to a database.
Pythons logging module gives you very granul
Link: https://www.admintome.com/blog/python-custom-logging-handler-example/
In this post, I am going to write a Python custom logging handler that will send log entries to a Kafka broker where you can aggregate them to a database.
Pythons logging module gives you very granul
AdminTome Blog
Python Custom Logging Handler Example | AdminTome Blog
In this post, I am going to write a Python custom logging handler that will send log entries to a Kafka broker where you can aggregate them to a database.
Matthew Rocklin: High level performance of Pandas, Dask, Spark, and Arrow
Link: https://matthewrocklin.com/blog//work/2018/08/28/dataframe-performance-high-level
This work is supported by Anaconda Inc
Question
How does Dask dataframe performance compare to Pandas? Also, what about
Spark dataframes and what about Arrow? How do they compare?
I get this quest
Link: https://matthewrocklin.com/blog//work/2018/08/28/dataframe-performance-high-level
This work is supported by Anaconda Inc
Question
How does Dask dataframe performance compare to Pandas? Also, what about
Spark dataframes and what about Arrow? How do they compare?
I get this quest
Matthewrocklin
High level performance of Pandas, Dask, Spark, and Arrow