Matthew Wright: Building Jupyter notebook workflows with scrapbook
Link: https://www.wrighters.io/building-jupyter-notebook-workflows-with-scrapbook/
The scrapbook library allows you to save state inside the notebook file itself, making it easier to develop workflows using Jupyter notebooks.The post Building Jupyter notebook workflows with scrapboo
Link: https://www.wrighters.io/building-jupyter-notebook-workflows-with-scrapbook/
The scrapbook library allows you to save state inside the notebook file itself, making it easier to develop workflows using Jupyter notebooks.The post Building Jupyter notebook workflows with scrapboo
wrighters.io
Building Jupyter notebook workflows with scrapbook - wrighters.io
The scrapbook library allows you to save state inside the notebook file itself, making it easier to develop workflows using Jupyter notebooks.
STX Next: How to Build a Spark Cluster with Docker, JupyterLab, and Apache Livy—a REST API for Apache Spark
Link: https://www.stxnext.com/blog/docker-jupyterlab-apache-livy-rest-api-apache-spark/
Link: https://www.stxnext.com/blog/docker-jupyterlab-apache-livy-rest-api-apache-spark/
Stxnext
How to Build a Spark Cluster with Docker, JupyterLab, and Apache Livy—a REST API for Apache Spark
Read our step-by-step guide to building an Apache Spark cluster based on the Docker virtual environment with JupyterLab and the Apache Livy REST interface.
PyBites: 5 Helpful Python Decorator Use Cases
Link: https://pybit.es/articles/5-helpful-python-decorator-use-cases/
Some time ago I asked on Twitter:
I was curious what you use #Python decorators for?
And I got quite an amazing / insightful response:
I was curious what you use #Python decorators for?It would be n
Link: https://pybit.es/articles/5-helpful-python-decorator-use-cases/
Some time ago I asked on Twitter:
I was curious what you use #Python decorators for?
And I got quite an amazing / insightful response:
I was curious what you use #Python decorators for?It would be n
PyBites
5 Helpful Python Decorator Use Cases - PyBites
In this article we look at 5 common Python decorator use cases, a powerful design pattern you want to add to your toolkit.
Programiz: Python Program to Reverse a Number
Link: https://www.programiz.com/python-programming/examples/reverse-a-number
In this example, you will learn to reverse a number.
Link: https://www.programiz.com/python-programming/examples/reverse-a-number
In this example, you will learn to reverse a number.
Programiz
Python Program to Reverse a Number
In this example, you will learn to reverse a number.
Real Python: Using sleep() to Code a Python Uptime Bot
Link: https://realpython.com/courses/python-sleep-uptime-bot/
Have you ever needed to make your Python program wait for something? You might use a Python sleep() call to simulate a delay in your program. Perhaps you need to wait for a file to upload or download,
Link: https://realpython.com/courses/python-sleep-uptime-bot/
Have you ever needed to make your Python program wait for something? You might use a Python sleep() call to simulate a delay in your program. Perhaps you need to wait for a file to upload or download,
Realpython
Using sleep() to Code a Python Uptime Bot – Real Python
In this course, you'll learn how to add time delays to your Python programs. You'll use the built-in time module to add Python sleep() calls to your code. To practice, you'll use time.sleep() when making an uptime bot that checks whether a website is still…
Python Morsels: Making a read-only attribute
Link: https://www.pythonmorsels.com/topics/making-read-only-attribute/
Transcript
How can we make a read-only attribute in Python?
A property is like an auto-updating attribute
We have a class called Square which accepts a length and an optional color and stores those
Link: https://www.pythonmorsels.com/topics/making-read-only-attribute/
Transcript
How can we make a read-only attribute in Python?
A property is like an auto-updating attribute
We have a class called Square which accepts a length and an optional color and stores those
Pythonmorsels
Making a read-only attribute
If you need to make a read-only attribute in Python, you can turn your attribute into a property that delegates to an attribute with almost the same name (but with an underscore prefix).
Python for Beginners: Absolute value of a number in Python
Link: https://www.pythonforbeginners.com/basics/absolute-value-of-a-number-in-python
While working with numbers in python,we need to compare the magnitude of two numbers irrespective of their sign. For example, Magnitude of -10 is greater than magnitude of 1. But when -10 and 1 is com
Link: https://www.pythonforbeginners.com/basics/absolute-value-of-a-number-in-python
While working with numbers in python,we need to compare the magnitude of two numbers irrespective of their sign. For example, Magnitude of -10 is greater than magnitude of 1. But when -10 and 1 is com
PythonForBeginners.com
Absolute value of a number in Python - PythonForBeginners.com
Absolute value of a number in Python will help you improve your python skills with easy to follow examples and tutorials. Click here to view code examples.
Python Insider: Python 3.10.0rc1 is available
Link: http://feedproxy.google.com/~r/PythonInsider/~3/jWAUuem6-u4/python-3100rc1-is-available.html
Python 3.10.0 is almost ready. This release, 3.10.0rc1, is the penultimate release preview. You can get it here:https://www.python.org/downloads/release/python-3100rc1/This release, **3.10.0rc1**, is
Link: http://feedproxy.google.com/~r/PythonInsider/~3/jWAUuem6-u4/python-3100rc1-is-available.html
Python 3.10.0 is almost ready. This release, 3.10.0rc1, is the penultimate release preview. You can get it here:https://www.python.org/downloads/release/python-3100rc1/This release, **3.10.0rc1**, is
Blogspot
Python Insider: Python 3.10.0rc1 is available
PyCoder’s Weekly: Issue #484 (Aug. 3, 2021)
Link: https://pycoders.com/issues/484
#484 – AUGUST 3, 2021 View in Browser » Python and REST APIs: Interacting With Web Services In this tutorial, you’ll learn how to use Python to communicate with REST APIs. You’ll learn about RES
Link: https://pycoders.com/issues/484
#484 – AUGUST 3, 2021 View in Browser » Python and REST APIs: Interacting With Web Services In this tutorial, you’ll learn how to use Python to communicate with REST APIs. You’ll learn about RES
Pycoders
PyCoder’s Weekly | Issue #484
Issue #484 of the PyCoder’s Weekly newsletter, published Aug. 3, 2021.
Podcast.__init__: Delivering Deep Learning Powered Speech Recognition As A Service For Developers At AssemblyAI
Link: https://www.pythonpodcast.com/assemblyai-deep-learning-speech-recognition-episode-326/
Building a software-as-a-service (SaaS) business is a fairly well understood pattern at this point. When the core of the service is a set of machine learning products it introduces a whole new set of
Link: https://www.pythonpodcast.com/assemblyai-deep-learning-speech-recognition-episode-326/
Building a software-as-a-service (SaaS) business is a fairly well understood pattern at this point. When the core of the service is a set of machine learning products it introduces a whole new set of
The Python Podcast.__init__
The Python Podcast.__init__: Delivering Deep Learning Powered Speech Recognition As A Service For Developers At AssemblyAI
An interview with Dylan Fox about the technological and business challenges of delivering a high quality experience for developers that is powered by deep learning models for automated speech recognition
Programiz: Python Program to Compute the Power of a Number
Link: https://www.programiz.com/python-programming/examples/power
In this example, you will learn to compute the power of a number.
Link: https://www.programiz.com/python-programming/examples/power
In this example, you will learn to compute the power of a number.
Programiz
Python Program to Compute the Power of a Number
In this example, you will learn to compute the power of a number.
Test and Code: 162: Flavors of TDD
Link: https://testandcode.com/162
What flavor of TDD do you practice?
In this episode we talk about:
Classical vs Mockist TDD
Detroit vs London (I actually refer to it in the episode as Chicago instead of Detroit. Oh well.)
Static v
Link: https://testandcode.com/162
What flavor of TDD do you practice?
In this episode we talk about:
Classical vs Mockist TDD
Detroit vs London (I actually refer to it in the episode as Chicago instead of Detroit. Oh well.)
Static v
Test & Code in Python
Test & Code in Python 162: Flavors of TDD
What flavor of TDD do you practice?
In this episode we talk about Classical vs Mockist TDD, Detroit vs London, Static vs Behavior, Inside Out, Outside In, Double Loop TDD, BDD, FDD, Tracer Bullets, Rules of TDD, Team Structure, Lean TDD and so much more.
In this episode we talk about Classical vs Mockist TDD, Detroit vs London, Static vs Behavior, Inside Out, Outside In, Double Loop TDD, BDD, FDD, Tracer Bullets, Rules of TDD, Team Structure, Lean TDD and so much more.
Programiz: Python Program to Check If Two Strings are Anagram
Link: https://www.programiz.com/python-programming/examples/anagram
In this example, you will learn to check if two strings are anagram.
Link: https://www.programiz.com/python-programming/examples/anagram
In this example, you will learn to check if two strings are anagram.
Programiz
Python Program to Check If Two Strings are Anagram
In this example, you will learn to check if two strings are anagram.
Programiz: Python Program to Create a Countdown Timer
Link: https://www.programiz.com/python-programming/examples/countdown-timer
In this example, you will learn to create a countdown timer.
Link: https://www.programiz.com/python-programming/examples/countdown-timer
In this example, you will learn to create a countdown timer.
Programiz
Python Program to Create a Countdown Timer
In this example, you will learn to create a countdown timer.
Programiz: Python Program to Remove Duplicate Element From a List
Link: https://www.programiz.com/python-programming/examples/remove-duplicate-from-list
In this example, you will learn to remove duplicate elements from a list.
Link: https://www.programiz.com/python-programming/examples/remove-duplicate-from-list
In this example, you will learn to remove duplicate elements from a list.
Programiz
Python Program to Remove Duplicate Element From a List
In this example, you will learn to remove duplicate elements from a list.
Programiz: Python Program to Compute all the Permutation of the String
Link: https://www.programiz.com/python-programming/examples/permutation-of-string
In this example, you will learn to compute all the permutation of the string.
Link: https://www.programiz.com/python-programming/examples/permutation-of-string
In this example, you will learn to compute all the permutation of the string.
Programiz
Python Program to Compute all the Permutation of the String
In this example, you will learn to compute all the permutation of the string.
Reuven Lerner: Improve your “pandas” skills with “Pandas Workout”
Link: https://lerner.co.il/2021/08/04/improve-your-pandas-skills-with-pandas-workout/
As you might know, I’ve been working lately on my new book, Pandas Workout, with 50 exercises to improve your fluency using the “pandas” library for data analysis.
Well, I have exciting news: The boo
Link: https://lerner.co.il/2021/08/04/improve-your-pandas-skills-with-pandas-workout/
As you might know, I’ve been working lately on my new book, Pandas Workout, with 50 exercises to improve your fluency using the “pandas” library for data analysis.
Well, I have exciting news: The boo
Reuven Lerner
Improve your "pandas" skills with "Pandas Workout"
As you might know, I've been working lately on my new book, Pandas Workout, with 50 exercises to improve your fluency using the "pandas" library for data analysis. Well, I have exciting news: The book
Django Weblog: 2021 Django Developers Survey
Link: https://www.djangoproject.com/weblog/2021/aug/04/2021-django-developers-survey/
The 2021 Django Developers Survey is now live. Please take a moment to fill it out. The survey sheds light on how different developers use Django and the related tools and technologies. After the surv
Link: https://www.djangoproject.com/weblog/2021/aug/04/2021-django-developers-survey/
The 2021 Django Developers Survey is now live. Please take a moment to fill it out. The survey sheds light on how different developers use Django and the related tools and technologies. After the surv
Python⇒Speed: NumPy views: saving memory, leaking memory, and subtle bugs
Link: https://pythonspeed.com/articles/numpy-memory-views/
If you’re using Python’s NumPy library, it’s usually because you’re processing large arrays that use plenty of memory.
To reduce your memory usage, chances are you want to minimize unnecessary copying
Link: https://pythonspeed.com/articles/numpy-memory-views/
If you’re using Python’s NumPy library, it’s usually because you’re processing large arrays that use plenty of memory.
To reduce your memory usage, chances are you want to minimize unnecessary copying
Python⇒Speed
NumPy views: saving memory, leaking memory, and subtle bugs
NumPy uses memory views transparently, as a way to save memory. But you need to understand how they work, so you don’t leak memory, or modify data by mistake.
Python Bytes: #245 Fire up your Python time machine (and test some code)
Link: https://pythonbytes.fm/episodes/show/245/fire-up-your-python-time-machine-and-test-some-code
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=4tgVdjdULzI' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
Link: https://pythonbytes.fm/episodes/show/245/fire-up-your-python-time-machine-and-test-some-code
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=4tgVdjdULzI' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
pythonbytes.fm
Fire up your Python time machine (and test some code)
News and announcements from the Python community for the week of Aug 4th, 2021