Daniel Roy Greenfeld: What's the best thing about working for Octopus Energy?
Link: https://daniel.feldroy.com/posts/whats-the-best-thing-about-working-for-octopus-energy-part-1
On November 16, 2020, I started my first day of employment at Octopus Energy. Here's why I love working there.
The Tech Stack
The entire tech stack is built on things I know. Python, Django, AWS, and
Link: https://daniel.feldroy.com/posts/whats-the-best-thing-about-working-for-octopus-energy-part-1
On November 16, 2020, I started my first day of employment at Octopus Energy. Here's why I love working there.
The Tech Stack
The entire tech stack is built on things I know. Python, Django, AWS, and
Daniel Feldroy
What's the best thing about working for Octopus Energy?
An in-depth discussion about my employment at Octopus Energy.
Podcast.__init__: Keep Your Analytics Lint Free With SQLFluff
Link: https://www.pythonpodcast.com/sqlfluff-sql-linter-episode-318/
The growth of analytics has accelerated the use of SQL as a first class language. It has also grown the amount of collaboration involved in writing and maintaining SQL queries. With collaboration come
Link: https://www.pythonpodcast.com/sqlfluff-sql-linter-episode-318/
The growth of analytics has accelerated the use of SQL as a first class language. It has also grown the amount of collaboration involved in writing and maintaining SQL queries. With collaboration come
The Python Podcast.__init__
The Python Podcast.__init__: Keep Your Analytics Lint Free With SQLFluff
An interview about how the SQLFluff project lints and formats SQL code, why it took so long for something like this to exist, and how you can use it to keep your SQL analytics neat and tidy
Python Software Foundation: The 2021 Python Language Summit: Lightning Talks, Round 2
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/YhpQywGg83E/the-2021-python-language-summit.html
The second day of the 2021 Python Language Summit finished with a series of lightning talks from Ronny Pfannschmidt, Pablo Galindo, Batuhan Taskaya, Luciano Ramalho, Jason R. Coombs, Mark Shannon, and
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/YhpQywGg83E/the-2021-python-language-summit.html
The second day of the 2021 Python Language Summit finished with a series of lightning talks from Ronny Pfannschmidt, Pablo Galindo, Batuhan Taskaya, Luciano Ramalho, Jason R. Coombs, Mark Shannon, and
Blogspot
The 2021 Python Language Summit: Lightning Talks, Round 2
The second day of the 2021 Python Language Summit finished with a series of lightning talks from Ronny Pfannschmidt, Pablo Galindo, Batuhan...
Real Python: Python's filter(): Extract Values From Iterables
Link: https://realpython.com/python-filter-function/
Python’s filter() is a built-in function that allows you to process an iterable and extract those items that satisfy a given condition. This process is commonly known as a filtering operation. With fi
Link: https://realpython.com/python-filter-function/
Python’s filter() is a built-in function that allows you to process an iterable and extract those items that satisfy a given condition. This process is commonly known as a filtering operation. With fi
Realpython
Python's filter(): Extract Values From Iterables – Real Python
In this step-by-step tutorial, you'll learn how Python's filter() works and how to use it effectively in your programs. You'll also learn how to use list comprehension and generator expressions to replace filter() and make your code more Pythonic.
Python Morsels: What is a decorator?
Link: https://www.pythonmorsels.com/topics/what-is-a-decorator/
Transcript
A decorator is a function that accepts a function and returns a function.
Decorators accept a function and return a function
We've defined an is_prime function here:
>>> def is_prime(num
Link: https://www.pythonmorsels.com/topics/what-is-a-decorator/
Transcript
A decorator is a function that accepts a function and returns a function.
Decorators accept a function and return a function
We've defined an is_prime function here:
>>> def is_prime(num
Pythonmorsels
What is a decorator?
Python Bytes: #237 Separate your SQL and Python, asynchronously with aiosql
Link: https://pythonbytes.fm/episodes/show/237/separate-your-sql-and-python-asynchronously-with-aiosql
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=SXBdtq97xl4' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
Link: https://pythonbytes.fm/episodes/show/237/separate-your-sql-and-python-asynchronously-with-aiosql
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=SXBdtq97xl4' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
pythonbytes.fm
Separate your SQL and Python, asynchronously with aiosql
News and announcements from the Python community for the week of Jun 9th, 2021
AI Pool: How to calculate the size of a video in OpenCV?
Link: https://ai-pool.com/d/how-to-calculate-the-size-of-a-video-in-opencv-
In deep learning, we often need to get the information of the video, so how to calculate the size of the video? I need something in python to get the file size in bytes....
Link: https://ai-pool.com/d/how-to-calculate-the-size-of-a-video-in-opencv-
In deep learning, we often need to get the information of the video, so how to calculate the size of the video? I need something in python to get the file size in bytes....
Ai-Pool
How to calculate the size of a video in OpenCV?
In deep learning, we often need to get the information of the video, so how to calculate the size of the video? I need something in python to get the file size in bytes.
AI Pool: ImportError: No module named tensorflow
Link: https://ai-pool.com/d/importerror--no-module-named-tensorflow
I just installed TensorFlow with pip3 in a python virtual environment, but now I get this error when I try to import it import tensorflow as tf
# ...
ImportError: No module named tensorflow
# mod
Link: https://ai-pool.com/d/importerror--no-module-named-tensorflow
I just installed TensorFlow with pip3 in a python virtual environment, but now I get this error when I try to import it import tensorflow as tf
# ...
ImportError: No module named tensorflow
# mod
Ai-Pool
ImportError: No module named tensorflow
I just installed TensorFlow with pip3 in a python virtual environment, but now I get this error when I try to import it import tensorflow as tf
# ...
ImportError: No module named tensorflow
# modulenotfounderror no module named tensorflow
Python Version:…
# ...
ImportError: No module named tensorflow
# modulenotfounderror no module named tensorflow
Python Version:…
AI Pool: Uninstall Tensorflow by Anaconda on Windows
Link: https://ai-pool.com/d/uninstall-tensorflow-by-anaconda-on-windows
I've got a Windows PC and can't find out how they installed Tensorflow on it. I assumed they have used pip, but after calling uninstall TensorFlow, it didn't change anything. Should I use the an
Link: https://ai-pool.com/d/uninstall-tensorflow-by-anaconda-on-windows
I've got a Windows PC and can't find out how they installed Tensorflow on it. I assumed they have used pip, but after calling uninstall TensorFlow, it didn't change anything. Should I use the an
Ai-Pool
Uninstall Tensorflow by Anaconda on Windows
I've got a Windows PC and can't find out how they installed Tensorflow on it. I assumed they have used pip, but after calling uninstall TensorFlow, it didn't change anything. Should I use the anaconda for removing? What if I call? I thought to do something…
AI Pool: How to install Tensorflow on windows with anaconda?
Link: https://ai-pool.com/d/how-to-install-tensorflow-on-windows-with-anaconda-
I'm using Windows OS and Anaconda on my pc. I want to install TensorFlow and can't find how to make it....
Link: https://ai-pool.com/d/how-to-install-tensorflow-on-windows-with-anaconda-
I'm using Windows OS and Anaconda on my pc. I want to install TensorFlow and can't find how to make it....
Ai-Pool
How to install Tensorflow on windows with anaconda?
I'm using Windows OS and Anaconda on my pc. I want to install TensorFlow and can't find how to make it.
John Ludhi/nbshare.io: How To Convert Python List To Pandas DataFrame
Link: https://www.nbshare.io/notebook/917862980/How-To-Convert-Python-List-To-Pandas-DataFrame/
How To Convert Python List To Pandas Dataframe
Pandas dataframe is a very useful data structure.
In this notebook, I will show with examples how to convert Python List to Pandas
Link: https://www.nbshare.io/notebook/917862980/How-To-Convert-Python-List-To-Pandas-DataFrame/
How To Convert Python List To Pandas Dataframe
Pandas dataframe is a very useful data structure.
In this notebook, I will show with examples how to convert Python List to Pandas
death and gravity: Python sentinel objects, type hints, and PEP 661
Link: https://death.andgravity.com/sentinels
PEP 661 "Sentinel Values"
recently brought to attention the sentinel object pattern.1
While by no means new2,
this time the pattern appears in the context of typing,
so it's worth taking a look at how
Link: https://death.andgravity.com/sentinels
PEP 661 "Sentinel Values"
recently brought to attention the sentinel object pattern.1
While by no means new2,
this time the pattern appears in the context of typing,
so it's worth taking a look at how
death and gravity
Python sentinel objects, type hints, and PEP 661
PEP 661 proposes adding a utility for defining sentinel values in the Python standard library. In this article, you'll get a PEP 661 summary, learn what sentinel objects are (with real-world examples), how to use them with type hints, and a bit about why…
Mike C. Fletcher: Django Field Rename Migrations and Test Cases
Link: http://blog.vrplumber.com/b/2021/06/10/django-field-rename-migrations-and-test-cases/
Is there some trick to running Django test cases when you've got a RenameField later in the migration-stack? I feel like this has to be some obvious thing I'm missing...
With a migration (say 0058_big
Link: http://blog.vrplumber.com/b/2021/06/10/django-field-rename-migrations-and-test-cases/
Is there some trick to running Django test cases when you've got a RenameField later in the migration-stack? I feel like this has to be some obvious thing I'm missing...
With a migration (say 0058_big
Vrplumber
Plumbing Life's Depths - Django Field Rename Migrations and Test Cases
Is there some trick to running Django test cases when you've got a RenameField later in the migration-stack? I feel like this has to be some obvious thing I'm missing... With a migration (say 0058_big_restructure.py) which does this: migrations.RenameField(…
Python for Beginners: How to Delete a Specific Line in a File
Link: https://www.pythonforbeginners.com/files/how-to-delete-a-specific-line-in-a-file
Because Python provides no direct method for deleting a specific line in a file, it’s necessary to find our own approach.
In this guide, we’ll cover several ways of removing lines from a text file us
Link: https://www.pythonforbeginners.com/files/how-to-delete-a-specific-line-in-a-file
Because Python provides no direct method for deleting a specific line in a file, it’s necessary to find our own approach.
In this guide, we’ll cover several ways of removing lines from a text file us
PythonForBeginners.com
How to Delete a Specific Line in a File - PythonForBeginners.com
How to Delete a Specific Line in a File will help you improve your python skills with easy to follow examples and tutorials. Click here to view code examples.
Test and Code: 157: pre-commit - Anthony Sottile
Link: https://testandcode.com/157
pre-commit started as a framework for running linters and code formatters during git actions via git hooks. It's grown and expanded and now supports an extensive list of languages and actions and man
Link: https://testandcode.com/157
pre-commit started as a framework for running linters and code formatters during git actions via git hooks. It's grown and expanded and now supports an extensive list of languages and actions and man
Test & Code in Python
Test & Code in Python 157: pre-commit - Anthony Sottile
pre-commit started as a framework for running linters and code formatters during git actions via git hooks. It's grown and expanded and now supports an extensive list of languages and actions and manual running of actions. But even at it's core, it's great…
Real Python: The Real Python Podcast – Episode #64: Detecting Deforestation With Python & Using GraphQL With Django and Vue
Link: https://realpython.com/podcasts/rpp/64/
Are you looking for an in-depth data science project to practice your skills on? Perhaps you would like to add new tools to your Python web development projects instead? This week on the show, David A
Link: https://realpython.com/podcasts/rpp/64/
Are you looking for an in-depth data science project to practice your skills on? Perhaps you would like to add new tools to your Python web development projects instead? This week on the show, David A
Realpython
Episode #64: Detecting Deforestation With Python & Using GraphQL With Django and Vue – The Real Python Podcast
Are you looking for an in-depth data science project to practice your skills on? Perhaps you would like to add new tools to your Python web development projects instead? This week on the show, David Amos is back, and he's brought another batch of PyCoder's…
Python for Beginners: Packing in Python
Link: https://www.pythonforbeginners.com/basics/packing-in-python
Packing is a technique in python with which we put several values into a single iterator. If we talk of packing in literal terms, Just like we pack certain items into a box in the real world, In pyth
Link: https://www.pythonforbeginners.com/basics/packing-in-python
Packing is a technique in python with which we put several values into a single iterator. If we talk of packing in literal terms, Just like we pack certain items into a box in the real world, In pyth
PythonForBeginners.com
Packing in Python - PythonForBeginners.com
Packing in Python will help you improve your python skills with easy to follow examples and tutorials. Click here to view code examples.
Codementor: Using Environment Variables in Python for App Configuration and Secrets
Link: https://www.codementor.io/doppler/using-environment-variables-in-python-for-app-configuration-and-secrets-1irvc9qbat
Learn how experienced developers use environment variables in Python, including managing default values and typecasting.
Link: https://www.codementor.io/doppler/using-environment-variables-in-python-for-app-configuration-and-secrets-1irvc9qbat
Learn how experienced developers use environment variables in Python, including managing default values and typecasting.
www.codementor.io
Using Environment Variables in Python for App Configuration and Secrets | Codementor
Learn how experienced developers use environment variables in Python, including managing default values and typecasting.
Codementor: Top Tech Skills for the Future of Work
Link: https://www.codementor.io/mjamilmoughal786/top-tech-skills-for-the-future-of-work-1irvzkzs1k
The rate of technological change is accelerating and lots of new technologies and skills are coming. It is almost unpredictable to tell which technical skill will be in demand in future and which...
Link: https://www.codementor.io/mjamilmoughal786/top-tech-skills-for-the-future-of-work-1irvzkzs1k
The rate of technological change is accelerating and lots of new technologies and skills are coming. It is almost unpredictable to tell which technical skill will be in demand in future and which...
www.codementor.io
Top Tech Skills for the Future of Work | Codementor
The rate of technological change is accelerating and lots of new technologies and skills are coming. It is almost unpredictable to tell which technical skill will be in demand in future and which...
Lucas Cimon: fpdf2.4.0 and converting GIFs to PDFs
Link: https://chezsoi.org/lucas/blog/fpdf2-4-0-and-converting-gifs-to-pdfs.html
fpdf2 is a minimalist PDF creation library for Python that I am maintaining.
With the release yesterday of its v2.4.0, I'm going to present some of its notable new features since the latest minor ver
Link: https://chezsoi.org/lucas/blog/fpdf2-4-0-and-converting-gifs-to-pdfs.html
fpdf2 is a minimalist PDF creation library for Python that I am maintaining.
With the release yesterday of its v2.4.0, I'm going to present some of its notable new features since the latest minor ver
Ludochaordic
Fpdf2.4.0 and converting gifs to pdfs
fpdf2 is a minimalist PDF creation library for Python that I am maintaining. With the release yesterday of its v2.4.0, I'm going to present some of its notable new features since the latest minor version. https://github.com/pyfpdf/fpdf2/ Doc: https://pyf…
Doug Hellmann: sphinxcontrib-datatemplates 0.8.1
Link: http://feeds.doughellmann.com/~r/doughellmann/python/~3/N9vDLkADWx8/
This release adds a load() function to the template context for
loading additional data sources from within a template.
Link: http://feeds.doughellmann.com/~r/doughellmann/python/~3/N9vDLkADWx8/
This release adds a load() function to the template context for
loading additional data sources from within a template.
Doug Hellmann
sphinxcontrib-datatemplates 0.8.1
This release adds a load() function to the template context for
loading additional data sources from within a template.
loading additional data sources from within a template.