Matthew Wright: Version control for Jupyter notebooks
Link: https://www.wrighters.io/version-control-for-jupyter-notebooks/
Jupyter notebooks are hard to diff and merge since they contain both code and output, but tools and practices can make version control easier.The post Version control for Jupyter notebooks appeared fi
Link: https://www.wrighters.io/version-control-for-jupyter-notebooks/
Jupyter notebooks are hard to diff and merge since they contain both code and output, but tools and practices can make version control easier.The post Version control for Jupyter notebooks appeared fi
wrighters.io
Version control for Jupyter notebooks - wrighters.io
Jupyter notebooks are hard to diff and merge since they contain both code and output, but tools and practices can make version control easier.
Mike Driscoll: PyDev of the Week: Déborah Mesquita
Link: https://www.blog.pythonlibrary.org/2021/09/06/pydev-of-the-week-deborah-mesquita/
This week we welcome Déborah Mesquita as our PyDev of the Week! Déborah is a content writer at Real Python. You can see what she is up to over on her website or by checking out her GitHub profile.
Le
Link: https://www.blog.pythonlibrary.org/2021/09/06/pydev-of-the-week-deborah-mesquita/
This week we welcome Déborah Mesquita as our PyDev of the Week! Déborah is a content writer at Real Python. You can see what she is up to over on her website or by checking out her GitHub profile.
Le
Mouse Vs Python
PyDev of the Week: Déborah Mesquita - Mouse Vs Python
This week's PyDev of the Week is Déborah Mesquita. She writes for Real Python and works as a data scientist.
Tryton News: Foundation Budget Update
Link: https://discuss.tryton.org/t/foundation-budget-update/4563
The Tryton foundation is happy to annouce that we achieved four of the goals from the foundation Budget. With these resources we will be able to:
Maintain our infrastructure for the current year.
Cr
Link: https://discuss.tryton.org/t/foundation-budget-update/4563
The Tryton foundation is happy to annouce that we achieved four of the goals from the foundation Budget. With these resources we will be able to:
Maintain our infrastructure for the current year.
Cr
Tryton Discussion
Foundation Budget Update
The Tryton foundation is happy to annouce that we achieved four of the goals 🥳 from the foundation Budget. With these resources we will be able to: Maintain our infrastructure for the current year. Create an infrastructure overview so it’s possible to get…
Reuven Lerner: Missing my blog posts? Check me out on YouTube!
Link: https://lerner.co.il/2021/09/06/missing-my-blog-posts-check-me-out-on-youtube/
I haven’t been posting much to this blog of late, in part because I’ve been posting Python-related videos on YouTube. Just in the last month or two, I’ve posted:
Scraping HTML with Pandas: https://ww
Link: https://lerner.co.il/2021/09/06/missing-my-blog-posts-check-me-out-on-youtube/
I haven’t been posting much to this blog of late, in part because I’ve been posting Python-related videos on YouTube. Just in the last month or two, I’ve posted:
Scraping HTML with Pandas: https://ww
Reuven Lerner
Missing my blog posts? Check me out on YouTube!
I haven't been posting much to this blog of late, in part because I've been posting Python-related videos on YouTube. Just in the last month or two, I've posted: Scraping HTML with Pandas: https://www.youtube.com/watch?v=jR5ltEVe-qcThree ways
Real Python: How Long Does It Take to Learn Python?
Link: https://realpython.com/how-long-does-it-take-to-learn-python/
You’ve probably found at least one blog post where the author reveals that they learned Python in a handful of days and quickly transitioned into a high-paying job. Some of these stories may be true,
Link: https://realpython.com/how-long-does-it-take-to-learn-python/
You’ve probably found at least one blog post where the author reveals that they learned Python in a handful of days and quickly transitioned into a high-paying job. Some of these stories may be true,
Realpython
How Long Does It Take to Learn Python? – Real Python
In this article, you'll assess whether or not learning Python is a good investment of your time, how long it will take you, and what background factors you need to consider when planning your learning journey. You'll also learn what resources exist that can…
Python Morsels: Parsing command-line arguments in Python
Link: https://www.pythonmorsels.com/topics/parsing-command-line-arguments-python/
Transcript
Let's talk about parsing command line arguments in Python.
Parsing command-line arguments
We have a program here called add.py that uses Python's argparse module to parse two arguments,
Link: https://www.pythonmorsels.com/topics/parsing-command-line-arguments-python/
Transcript
Let's talk about parsing command line arguments in Python.
Parsing command-line arguments
We have a program here called add.py that uses Python's argparse module to parse two arguments,
Pythonmorsels
Parsing command-line arguments in Python
If you're trying to make a friendly command-line interface in Python, instead of manually parsing sys.argv you should probably use Python's argparse module.
Stack Abuse: Creating a REST API with Django REST Framework
Link: https://stackabuse.com/creating-a-rest-api-with-django-rest-framework/
Introduction
REST APIs are an industry-standard way for web services to send and receive data. They use HTTP request methods to facilitate the request-response cycle and typically transfer data using
Link: https://stackabuse.com/creating-a-rest-api-with-django-rest-framework/
Introduction
REST APIs are an industry-standard way for web services to send and receive data. They use HTTP request methods to facilitate the request-response cycle and typically transfer data using
Stack Abuse
Creating a REST API with Django REST Framework
In this guide, we will create a REST API in Python with Django, using the Django REST Framework to create a shopping cart application.
Quansight Labs Blog: Making Numpy Accessible: Guidelines and Tools
Link: https://labs.quansight.org/blog/2021/07/numpy-accessibility-guidelines/
Header illustration by author, Mars Lee
Numpy is now foundational to Python scientific computing. Our efforts reach
millions of developers each month. As our user base grows, we recognize that we
are
Link: https://labs.quansight.org/blog/2021/07/numpy-accessibility-guidelines/
Header illustration by author, Mars Lee
Numpy is now foundational to Python scientific computing. Our efforts reach
millions of developers each month. As our user base grows, we recognize that we
are
Quansight Labs
Making Numpy Accessible: Guidelines and Tools
Header illustration by author, Mars Lee
Numpy is now foundational to Python scientific computing. Our efforts reach
millions of developers each month. As our user base grows, we recognize that we
are
Numpy is now foundational to Python scientific computing. Our efforts reach
millions of developers each month. As our user base grows, we recognize that we
are
Mike Driscoll: Matplotlib – An Intro to Creating Graphs with Python
Link: https://www.blog.pythonlibrary.org/2021/09/07/matplotlib-an-intro-to-creating-graphs-with-python/
Data visualizations are an important method of sharing your data with others. Some people refer to visualizations as plots, charts, or graphs. These names are synonymous in this article.
Python has ma
Link: https://www.blog.pythonlibrary.org/2021/09/07/matplotlib-an-intro-to-creating-graphs-with-python/
Data visualizations are an important method of sharing your data with others. Some people refer to visualizations as plots, charts, or graphs. These names are synonymous in this article.
Python has ma
Mouse Vs Python
Matplotlib - An Intro to Creating Graphs with Python - Mouse Vs Python
Learn how to create multiple types of graphs and add legends, titles and more in this tutorial about Matplotlib and Python
Real Python: Graph Your Data With Python and ggplot
Link: https://realpython.com/courses/graph-data-with-python-and-ggplot/
In this course, you’ll learn how to use ggplot in Python to create data visualizations using a grammar of graphics. A grammar of graphics is a high-level tool that allows you to create data plots in a
Link: https://realpython.com/courses/graph-data-with-python-and-ggplot/
In this course, you’ll learn how to use ggplot in Python to create data visualizations using a grammar of graphics. A grammar of graphics is a high-level tool that allows you to create data plots in a
Realpython
Graph Your Data With Python and ggplot – Real Python
In this course, you'll learn how to use ggplot in Python to build data visualizations with plotnine. You'll discover what a grammar of graphics is and how it can help you create plots in a very concise and consistent way.
PyCoder’s Weekly: Issue #489 (Sept. 7, 2021)
Link: https://pycoders.com/issues/489
#489 – SEPTEMBER 7, 2021 View in Browser » PEP 668: Graceful Cooperation Between External and Python Package Managers This draft PEP proposes a way for resolving conflicts between OS package man
Link: https://pycoders.com/issues/489
#489 – SEPTEMBER 7, 2021 View in Browser » PEP 668: Graceful Cooperation Between External and Python Package Managers This draft PEP proposes a way for resolving conflicts between OS package man
Pycoders
PyCoder’s Weekly | Issue #489
Issue #489 of the PyCoder’s Weekly newsletter, published Sept. 7, 2021.
Python Insider: Python 3.10.0rc2 is available
Link: http://feedproxy.google.com/~r/PythonInsider/~3/MNLSuW5j-cI/python-3100rc2-is-available.html
Python 3.10 is one month away, can you believe it? This snake is still trying to bite as it has been an interesting day of fighting fires, release blockers, and a bunch of late bugs but your friendly
Link: http://feedproxy.google.com/~r/PythonInsider/~3/MNLSuW5j-cI/python-3100rc2-is-available.html
Python 3.10 is one month away, can you believe it? This snake is still trying to bite as it has been an interesting day of fighting fires, release blockers, and a bunch of late bugs but your friendly
Blogspot
Python Insider: Python 3.10.0rc2 is available
John Ludhi/nbshare.io: Python Is Integer
Link: https://www.nbshare.io/notebook/331114525/Python-Is-Integer/
Python Is Integer
This notebook explains how to check in Python if a number is a integer.
There are multiple ways to check for integer in Python 2 and Python 3.
isinsta
Link: https://www.nbshare.io/notebook/331114525/Python-Is-Integer/
Python Is Integer
This notebook explains how to check in Python if a number is a integer.
There are multiple ways to check for integer in Python 2 and Python 3.
isinsta
Stack Abuse: Abstract Factory Design Pattern in Python
Link: https://stackabuse.com/abstract-factory-design-pattern-in-python/
Introduction
Design patterns help make code understandable, scalable, and reusable. There are different categories of design patterns, depending on the problems being addressed. When code is modulariz
Link: https://stackabuse.com/abstract-factory-design-pattern-in-python/
Introduction
Design patterns help make code understandable, scalable, and reusable. There are different categories of design patterns, depending on the problems being addressed. When code is modulariz
Stack Abuse
Abstract Factory Design Pattern in Python
The Abstract Factory Design Pattern is a creational pattern that provides a framework to create interfaces of closely related objects without specifying their classes.
Mike Driscoll: Python 3.10 – Parenthesized Context Managers
Link: https://www.blog.pythonlibrary.org/2021/09/08/python-3-10-parenthesized-context-managers/
Python 3.10 is coming out next month, so now is the time to start talking about the new features that it will contain. The core developers of Python recently announced that they are adding parenthesiz
Link: https://www.blog.pythonlibrary.org/2021/09/08/python-3-10-parenthesized-context-managers/
Python 3.10 is coming out next month, so now is the time to start talking about the new features that it will contain. The core developers of Python recently announced that they are adding parenthesiz
Mouse Vs Python
Python 3.10 - Parenthesized Context Managers - Mouse Vs Python
Python 3.10 add official support for Parenthesized Context Managers which lets you use parentheses and commas to separate multiple context managers
TestDriven.io: Storing Django Static and Media Files on DigitalOcean Spaces
Link: https://testdriven.io/blog/django-digitalocean-spaces/
This tutorial shows how to configure Django to load and serve up static and media files, public and private, via DigitalOcean Spaces.
Link: https://testdriven.io/blog/django-digitalocean-spaces/
This tutorial shows how to configure Django to load and serve up static and media files, public and private, via DigitalOcean Spaces.
testdriven.io
Storing Django Static and Media Files on DigitalOcean Spaces
This tutorial shows how to configure Django to load and serve up static and media files, public and private, via DigitalOcean Spaces.
Real Python: A Python Guide to the Fibonacci Sequence
Link: https://realpython.com/fibonacci-sequence-python/
The Fibonacci sequence is a prime example of recursion, and learning it is an essential step in the pragmatic programmer’s journey toward mastering recursion. Even though you’ll focus on learning it u
Link: https://realpython.com/fibonacci-sequence-python/
The Fibonacci sequence is a prime example of recursion, and learning it is an essential step in the pragmatic programmer’s journey toward mastering recursion. Even though you’ll focus on learning it u
Realpython
A Python Guide to the Fibonacci Sequence – Real Python
In this step-by-step tutorial, you'll explore the Fibonacci sequence in Python, which serves as an invaluable springboard into the world of recursion, and learn how to optimize recursive algorithms in the process.
Python for Beginners: Tree Data Structure in Python
Link: https://www.pythonforbeginners.com/data-structures/tree-data-structure-in-python
Python is a very rich language in terms of features and data structures. It has a lot of inbuilt data structures like python dictionary, list, tuple, set, frozenset, etc. Apart from that, we can also
Link: https://www.pythonforbeginners.com/data-structures/tree-data-structure-in-python
Python is a very rich language in terms of features and data structures. It has a lot of inbuilt data structures like python dictionary, list, tuple, set, frozenset, etc. Apart from that, we can also
PythonForBeginners.com
Tree Data Structure in Python - PythonForBeginners.com
Tree Data Structure in Python will help you improve your python skills with easy to follow examples and tutorials.
RoseHosting Blog: How to Create a Python Virtual Environment on Ubuntu 20.04
Link: https://www.rosehosting.com/blog/how-to-create-a-python-virtual-environment-on-ubuntu-20-04/
In this tutorial, we will discuss the installation and usage of Python virtual environment on Ubuntu 20.04. Python virtual environment ...
Read more
The post How to Create a Python Virtual Environmen
Link: https://www.rosehosting.com/blog/how-to-create-a-python-virtual-environment-on-ubuntu-20-04/
In this tutorial, we will discuss the installation and usage of Python virtual environment on Ubuntu 20.04. Python virtual environment ...
Read more
The post How to Create a Python Virtual Environmen
RoseHosting
How to Create a Python Virtual Environment on Ubuntu 20.04
In this tutorial, you will learn how to create a Python environment on Ubuntu 20.04, with ease and one step at a time.
Peter Bengtsson: TypeScript function keyword arguments like Python
Link: https://www.peterbe.com/plog/typescript-function-keyword-arguments-like-python
To do this in Python:
def print_person(name="peter", dob=1979):
print(f"name={name}\tdob={dob}")
print_person()
# prints: name=peter dob=1979
print_person(name="Tucker")
# prints: name=Tuck
Link: https://www.peterbe.com/plog/typescript-function-keyword-arguments-like-python
To do this in Python:
def print_person(name="peter", dob=1979):
print(f"name={name}\tdob={dob}")
print_person()
# prints: name=peter dob=1979
print_person(name="Tucker")
# prints: name=Tuck
Peterbe
TypeScript function keyword arguments like Python
Stuff in Peter's head
Python Bytes: #249 All of Linux as a Python API
Link: https://pythonbytes.fm/episodes/show/249/all-of-linux-as-a-python-api
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=djSI88HGPq8' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
Link: https://pythonbytes.fm/episodes/show/249/all-of-linux-as-a-python-api
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=djSI88HGPq8' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
pythonbytes.fm
All of Linux as a Python API
News and announcements from the Python community for the week of Sep 9th, 2021