Matt Layman: Consistent Python code with Black
Link: https://www.mattlayman.com/blog/2018/python-code-black/
Code formatting is the subject of millions of fiery, nerdy debates. Developers love to argue about code style because we read code a lot. The style matters because it affects readability.
We have exam
Link: https://www.mattlayman.com/blog/2018/python-code-black/
Code formatting is the subject of millions of fiery, nerdy debates. Developers love to argue about code style because we read code a lot. The style matters because it affects readability.
We have exam
Matt Layman
Consistent Python code with Black
Code is read far more than it is written. By using a consistent style, the readability of a project can improve dramatically. This post focuses on Black, a code formatter, how it can improve your project's code style, and how you or your team can use it.
Codementor: How to detect faces using OpenCV and Python/C++?
Link: https://www.codementor.io/shashwatjain661/how-detect-faces-using-opencv-and-python-c-nwyssng68
Implementation of face detection(Open CV) in python and C++. Updated.
Link: https://www.codementor.io/shashwatjain661/how-detect-faces-using-opencv-and-python-c-nwyssng68
Implementation of face detection(Open CV) in python and C++. Updated.
www.codementor.io
How to detect faces using OpenCV and Python/C++? | Codementor
Implementation of face detection(Open CV) in python and C++. Updated.
Python Anywhere: Turning a Python script into a website
Link: https://blog.pythonanywhere.com/169/
.jab-post img {
border: 2px solid #eeeeee;
padding: 5px;
}
One question we often hear from people starting out with PythonAnywhere is "how do I turn this
script I've written into a website s
Link: https://blog.pythonanywhere.com/169/
.jab-post img {
border: 2px solid #eeeeee;
padding: 5px;
}
One question we often hear from people starting out with PythonAnywhere is "how do I turn this
script I've written into a website s
Continuum Analytics Blog: Anaconda Distribution 5.3.0 Released
Link: https://www.anaconda.com/blog/developer-blog/anaconda-distribution-5-3-0-released/
We’re excited to announce the release of Anaconda Distribution 5.3.0! Anaconda Distribution is the world’s most popular and easiest way to learn and perform data science and machine learning. Here’s a
Link: https://www.anaconda.com/blog/developer-blog/anaconda-distribution-5-3-0-released/
We’re excited to announce the release of Anaconda Distribution 5.3.0! Anaconda Distribution is the world’s most popular and easiest way to learn and perform data science and machine learning. Here’s a
Anaconda
Anaconda Distribution 5.3.0 Released - Anaconda
Anaconda, Inc. has released Anaconda Distribution 5.3.0.
Talk Python to Me: #180 What's new in Python 3.7 and beyond
Link: https://talkpython.fm/episodes/show/180/what-s-new-in-python-3.7-and-beyond
The Python core developers recently released Python 3.7 and are now busy planning what's coming in 3.8. That makes right now a great time to dig into what was included in Python 3.7 and what's on deck
Link: https://talkpython.fm/episodes/show/180/what-s-new-in-python-3.7-and-beyond
The Python core developers recently released Python 3.7 and are now busy planning what's coming in 3.8. That makes right now a great time to dig into what was included in Python 3.7 and what's on deck
talkpython.fm
What's new in Python 3.7 and beyond
The Python core developers recently released Python 3.7 and are now busy planning what's coming in 3.8. That makes right now a great time to dig into what was included in Python 3.7 and what's on deck for the next great release of CPython. This week we have…
Mike Driscoll: Python 101 – Episode #27: Profiling Python Code
Link: http://www.blog.pythonlibrary.org/2018/10/03/python-101-episode-27-profiling-python-code/
In this screencast you will learn the basics of profiling your code using Python’s built-in cProfile module.
You can read the chapter this screencast is based on here – http://python101.pythonlibrary
Link: http://www.blog.pythonlibrary.org/2018/10/03/python-101-episode-27-profiling-python-code/
In this screencast you will learn the basics of profiling your code using Python’s built-in cProfile module.
You can read the chapter this screencast is based on here – http://python101.pythonlibrary
Dataquest: Python Dictionary Tutorial
Link: https://www.dataquest.io/blog/python-dictionary-tutorial/
Python offers a variety of data structures to hold our information — the dictionary being one of the most useful. Python dictionaries quick, easy to use, and flexible. As a beginning programmer, you c
Link: https://www.dataquest.io/blog/python-dictionary-tutorial/
Python offers a variety of data structures to hold our information — the dictionary being one of the most useful. Python dictionaries quick, easy to use, and flexible. As a beginning programmer, you c
Dataquest
Python Dictionary Tutorial: Analyze Craft Beer with Dictionaries – Dataquest
Learn to use Python dictionaries to store, sort, and access data in this in-depth tutorial analyzing craft beer data to master dictionary techniques.
PyCharm: PyCharm 2018.3 EAP 5
Link: http://feedproxy.google.com/~r/Pycharm/~3/v2EMQozKeAc/
We’re excited to bring you the fifth release in the Early Access Program (EAP) for PyCharm 2018.3, this version comes with some great improvements. You can get it right now from our website.
New in Th
Link: http://feedproxy.google.com/~r/Pycharm/~3/v2EMQozKeAc/
We’re excited to bring you the fifth release in the Early Access Program (EAP) for PyCharm 2018.3, this version comes with some great improvements. You can get it right now from our website.
New in Th
PyCharm Blog
PyCharm 2018.3 EAP 5
We’re excited to bring you the fifth release in the Early Access Program (EAP) for PyCharm 2018.3, this version comes with some great improvements. You can get it right now from our website. …
Stack Abuse: Creating a Neural Network from Scratch in Python: Adding Hidden Layers
Link: https://stackabuse.com/creating-a-neural-network-from-scratch-in-python-adding-hidden-layers/
Introduction
In the previous article, we started our discussion about artificial neural networks; we saw how to create a simple neural network with one input and one output layer, from scratch in Pyth
Link: https://stackabuse.com/creating-a-neural-network-from-scratch-in-python-adding-hidden-layers/
Introduction
In the previous article, we started our discussion about artificial neural networks; we saw how to create a simple neural network with one input and one output layer, from scratch in Pyth
Stack Abuse
Creating a Neural Network from Scratch in Python: Adding Hidden Layers
This is the second article in the series of articles on "Creating a Neural Network From Scratch in Python". Creating a Neural Network from Scratch in...
Real Python: Building and Documenting Python REST APIs With Flask and Connexion – Part 2
Link: https://realpython.com/flask-connexion-rest-api-part-2/
In Part 1 of this series, you used Flask and Connexion to create a REST API providing CRUD operations to a simple in-memory structure called PEOPLE. That worked to demonstrate how the Connexion module
Link: https://realpython.com/flask-connexion-rest-api-part-2/
In Part 1 of this series, you used Flask and Connexion to create a REST API providing CRUD operations to a simple in-memory structure called PEOPLE. That worked to demonstrate how the Connexion module
Realpython
Python REST APIs With Flask, Connexion, and SQLAlchemy – Part 2 – Real Python
In this three-part tutorial series, you'll create a RESTful API from scratch to keep track of people and notes using the Flask web framework. You'll also test your API with Swagger UI API documentation. In part two, you'll implement a SQLite database to store…
Will Kahn-Greene: Bleach v3.0.0 released!
Link: http://bluesock.org/~willkg/blog/dev/bleach_3_0_0.html
What is it?
Bleach is a Python library for sanitizing
and linkifying text from untrusted sources for safe usage in HTML.
Bleach v3.0.0 released!
Bleach 3.0.0 focused on easing the problems with the
Link: http://bluesock.org/~willkg/blog/dev/bleach_3_0_0.html
What is it?
Bleach is a Python library for sanitizing
and linkifying text from untrusted sources for safe usage in HTML.
Bleach v3.0.0 released!
Bleach 3.0.0 focused on easing the problems with the
Will's blog
Bleach v3.0.0 released!
What is it?
Bleach is a Python library for sanitizing
and linkifying text from untrusted sources for safe usage in HTML.
Bleach v3.0.0 released!
Bleach 3.0.0 focused on easing the problems with the
Bleach is a Python library for sanitizing
and linkifying text from untrusted sources for safe usage in HTML.
Bleach v3.0.0 released!
Bleach 3.0.0 focused on easing the problems with the
Sumana Harihareswara - Cogito, Ergo Sumana: Tidelift Is Paying Maintainers And, Potentially, Fixing the Economics of an Industry
Link: https://www.harihareswara.net/sumana/2018/10/03/1
As the founder of Changeset Consulting, I keep my eye on consultancies and services in and near my niche, open source leadership, maintainership, and sustainability.* And I've known Luis Villa for yea
Link: https://www.harihareswara.net/sumana/2018/10/03/1
As the founder of Changeset Consulting, I keep my eye on consultancies and services in and near my niche, open source leadership, maintainership, and sustainability.* And I've known Luis Villa for yea
Codementor: Why do I care about immutables in Python?
Link: https://www.codementor.io/himank/why-do-i-care-about-immutables-in-python-nznw0zitf
Immutable python data.
Link: https://www.codementor.io/himank/why-do-i-care-about-immutables-in-python-nznw0zitf
Immutable python data.
www.codementor.io
Why do I care about immutables in Python? | Codementor
Immutable python data.
Codementor: Beginner web scraping with Python and Repl.it
Link: https://www.codementor.io/garethdwyer/beginner-web-scraping-with-python-and-repl-it-nzr27jvnq
In this beginner's guide to Python web scraping, we walk through how to retrieve data from websites. From interpreting the HTML source code of a website, to downloading it with Python, and extracting
Link: https://www.codementor.io/garethdwyer/beginner-web-scraping-with-python-and-repl-it-nzr27jvnq
In this beginner's guide to Python web scraping, we walk through how to retrieve data from websites. From interpreting the HTML source code of a website, to downloading it with Python, and extracting
www.codementor.io
Beginner web scraping with Python and Repl.it | Codementor
In this beginner's guide to Python web scraping, we walk through how to retrieve data from websites. From interpreting the HTML source code of a website, to downloading it with Python, and extracting interesting elements, this guide will help you get started…
PyBites: You don't need to be a Pro @ Python to crack the code of Pycon
Link: https://pybit.es/howto-crack-pycon.html
I wanted to write this article to distill any preconceived notion that you have to be an "expert" or "non-newbie" in order to get a lot of value from going to PyCon, the largest of the annual Python c
Link: https://pybit.es/howto-crack-pycon.html
I wanted to write this article to distill any preconceived notion that you have to be an "expert" or "non-newbie" in order to get a lot of value from going to PyCon, the largest of the annual Python c
PyBites
You don't need to be a Pro @ Python to crack the code of Pycon
I wanted to write this article to distill any preconceived notion that you have to be an
Michał Bultrowicz: A simple self-modifying function in Python
Link: https://bultrowicz.com/self-modifying-python-function/
Replacing its own definition is a fun/horrifying thing that a Python function can do:
Link: https://bultrowicz.com/self-modifying-python-function/
Replacing its own definition is a fun/horrifying thing that a Python function can do:
Evennia: Evennia in Hacktoberfest 2018
Link: http://evennia.blogspot.com/2018/10/evennia-in-hacktoberfest-2018.html
Like last year, Evennia, the Python MUD creation system, takes part in Hacktoberfest, a yearly event run by Digitalocean in collaboration with GitHub.The premise is simple: Sign up at their website an
Link: http://evennia.blogspot.com/2018/10/evennia-in-hacktoberfest-2018.html
Like last year, Evennia, the Python MUD creation system, takes part in Hacktoberfest, a yearly event run by Digitalocean in collaboration with GitHub.The premise is simple: Sign up at their website an
Blogspot
Evennia in Hacktoberfest 2018
L ike last year, Evennia, the Python MUD creation system, takes part in Hacktoberfest , a yearly event run by Digitalocean in collaboratio...
Python Software Foundation: Join the 2018 Python Developers Survey: Share and learn about the community
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/Le3XxaNz6KI/join-2018-python-developers-survey.html
2018 is drawing to a close and we are excited to start the official Python Developers Survey for 2018!
In 2017, Python Software Foundation together with JetBrains conducted an official Python Develop
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/Le3XxaNz6KI/join-2018-python-developers-survey.html
2018 is drawing to a close and we are excited to start the official Python Developers Survey for 2018!
In 2017, Python Software Foundation together with JetBrains conducted an official Python Develop
Blogspot
Join the 2018 Python Developers Survey: Share and learn about the community
2018 is drawing to a close and we are excited to start the official Python Developers Survey for 2018 ! In 2017, Python Software Foundatio...
John Cook: Physical constants in Python
Link: https://www.johndcook.com/blog/2018/10/04/physical-constants-in-python/
You can find a large collection of physical constants in scipy.constants. The most frequently used constants are available directly, and hundreds more are in a dictionary physical_constants.
The fine
Link: https://www.johndcook.com/blog/2018/10/04/physical-constants-in-python/
You can find a large collection of physical constants in scipy.constants. The most frequently used constants are available directly, and hundreds more are in a dictionary physical_constants.
The fine
Johndcook
Physical constants in Python | Eddington's constant
How to compute the fine structure constant in Python, and its relation to Eddington's constant.
Continuum Analytics Blog: Preparing Your Organization for Implementing an AI Platform
Link: https://www.anaconda.com/blog/company-blog/preparing-your-organization-for-implementing-an-ai-platform/
By Victor Ghadban You already know that implementing an enterprise-ready AI enablement platform is key to executing your organization’s AI and machine learning initiatives. But can software so complex
Link: https://www.anaconda.com/blog/company-blog/preparing-your-organization-for-implementing-an-ai-platform/
By Victor Ghadban You already know that implementing an enterprise-ready AI enablement platform is key to executing your organization’s AI and machine learning initiatives. But can software so complex
Anaconda
Preparing Your Organization for Implementing an AI Platform - Anaconda
Learn how your organization can avoid operational disruptions, time delays, and cost overruns during the platform imlementation process.
NumFOCUS: Updates to the NumFOCUS Code of Conduct
Link: https://numfocus.org/blog/updates-to-the-numfocus-code-of-conduct
The post Updates to the NumFOCUS Code of Conduct appeared first on NumFOCUS.
Link: https://numfocus.org/blog/updates-to-the-numfocus-code-of-conduct
The post Updates to the NumFOCUS Code of Conduct appeared first on NumFOCUS.
NumFOCUS
Updates to the NumFOCUS Code of Conduct - NumFOCUS