The Digital Cat: TDD in Python with pytest - Part 4
Link: https://www.thedigitalcatonline.com/blog/2020/09/17/tdd-in-python-with-pytest-part-4/
This is the fourth post in the series "TDD in Python with pytest" where I develop a simple project following a strict TDD methodology. The posts come from my book Clean Architectures in Python and hav
  
  Link: https://www.thedigitalcatonline.com/blog/2020/09/17/tdd-in-python-with-pytest-part-4/
This is the fourth post in the series "TDD in Python with pytest" where I develop a simple project following a strict TDD methodology. The posts come from my book Clean Architectures in Python and hav
Thedigitalcatonline
  
  TDD in Python with pytest - Part 4
  Read the full post on The Digital Cat
  Techiediaries - Django: Multiple Image Files Upload with Django 3, Angular 10 and FormData
Link: https://www.techiediaries.com/angular-10-django-3-formdata-multiple-image-files-upload/
In the previous tutorial we have seen how to implement image file uploading in Django 3 and Angular 10. In this tutorial, we'll see how to implement multiple file uploading with FormData and HttpClie
  
  Link: https://www.techiediaries.com/angular-10-django-3-formdata-multiple-image-files-upload/
In the previous tutorial we have seen how to implement image file uploading in Django 3 and Angular 10. In this tutorial, we'll see how to implement multiple file uploading with FormData and HttpClie
Techiediaries
  
  Multiple Image Files Upload with Django 3, Angular 10 and FormData | Techiediaries
  Throughout this tutorial, we'll see how you can implement multiple file upload in Django 3. We'll be using Angular 10 to create a simple interface that allows the user to select multiple files and upload them to the server via POST requests and FormData
  Techiediaries - Django: Angular 10 and Django 3 Image Files Upload with FormData
Link: https://www.techiediaries.com/angular-10-django-3-upload-image-files/
Throughout this tutorial, we'll see how we can implement file and image upload in Django 3, Django REST Framework and Angular 10 with a step by step example.
Our application will expose an /upload RE
  
  Link: https://www.techiediaries.com/angular-10-django-3-upload-image-files/
Throughout this tutorial, we'll see how we can implement file and image upload in Django 3, Django REST Framework and Angular 10 with a step by step example.
Our application will expose an /upload RE
Techiediaries
  
  Angular 10 and Django 3 Image Files Upload with FormData | Techiediaries
  Throughout this tutorial, we'll see how we can implement image files upload in Django 3, FormData and Angular 10 with a step by step example
  Stack Abuse: Python: Check if File or Directory is Empty
Link: https://stackabuse.com/python-check-if-file-or-directory-is-empty/
Introduction
Python has a set of built-in library objects and functions to help us with this task. In this tutorial, we'll learn how to check if a file or directory is empty in Python.
Distinguish Bet
  
  Link: https://stackabuse.com/python-check-if-file-or-directory-is-empty/
Introduction
Python has a set of built-in library objects and functions to help us with this task. In this tutorial, we'll learn how to check if a file or directory is empty in Python.
Distinguish Bet
Stack Abuse
  
  Python: Check if File or Directory is Empty
  In this tutorial, we'll learn how to check if a file or directory is empty in Python with examples. This can be done using the os and pathlib modules.
  Python⇒Speed: The mmap() copy-on-write trick: reducing memory usage of array copies
Link: https://pythonspeed.com/articles/reduce-memory-array-copies/
Let’s say you have an array, and you need to make some copies and modify those copies.
Usually, memory usage scales with the number of copies: if your original array was 1GB of RAM, each copy will tak
  
  Link: https://pythonspeed.com/articles/reduce-memory-array-copies/
Let’s say you have an array, and you need to make some copies and modify those copies.
Usually, memory usage scales with the number of copies: if your original array was 1GB of RAM, each copy will tak
Python⇒Speed
  
  The mmap() copy-on-write trick: reducing memory usage of array copies
  Copying a NumPy array and modifying it doubles the memory usage. But by utilizing the operating system’s mmap() call, you can only pay for what you modify.
  Erik Marsja: Pip Install Specific Version of a Python Package: 2 Steps
Link: https://www.marsja.se/pip-install-specific-version-of-python-package/
The post Pip Install Specific Version of a Python Package: 2 Steps appeared first on Erik Marsja.
In this Python tutorial, you will learn how to use pip install a specific version of a package. The ou
  
  Link: https://www.marsja.se/pip-install-specific-version-of-python-package/
The post Pip Install Specific Version of a Python Package: 2 Steps appeared first on Erik Marsja.
In this Python tutorial, you will learn how to use pip install a specific version of a package. The ou
Erik Marsja
  
  Pip Install Specific Version of a Python Package: 2 Steps
  In this tutorial, you will learn how to use pip to install a specific version of a Python package. Here you will learn 2 simple steps.
  Andrew Dalke: SDF record walkthrough
Link: http://www.dalkescientific.com/writings/diary/archive/2020/09/17/sdf_record_walkthrough.html
In this essay I'll walk through the major parts of a simple V2000 SDFile
record.
Richard Apodaca summarized
the SDfile format a few months ago, with details I won't cover
here. You should read it
  Link: http://www.dalkescientific.com/writings/diary/archive/2020/09/17/sdf_record_walkthrough.html
In this essay I'll walk through the major parts of a simple V2000 SDFile
record.
Richard Apodaca summarized
the SDfile format a few months ago, with details I won't cover
here. You should read it
Kodnito: Django Authentication With GitHub
Link: https://kodnito.com/posts/django-authentication-github/
In this tutorial, we will build a Django application that allows users to sign in via their GitHub account.
  
  Link: https://kodnito.com/posts/django-authentication-github/
In this tutorial, we will build a Django application that allows users to sign in via their GitHub account.
Kodnito
  
  Django Authentication With GitHub - Kodnito
  In this tutorial, we will build a Django application that allows users to sign in via their GitHub account. - Kodnito
  Python Bytes: #199 Big news for a very small Python runtime
Link: https://pythonbytes.fm/episodes/show/199/big-news-for-a-very-small-python-runtime
<p>Sponsored by us! Support our work through:</p>
<ul>
<li>Our <a href="https://training.talkpython.fm/"><strong>courses at Talk Python Training</strong></a></li>
<li><a href="https://pragprog.com/ti
  
  Link: https://pythonbytes.fm/episodes/show/199/big-news-for-a-very-small-python-runtime
<p>Sponsored by us! Support our work through:</p>
<ul>
<li>Our <a href="https://training.talkpython.fm/"><strong>courses at Talk Python Training</strong></a></li>
<li><a href="https://pragprog.com/ti
pythonbytes.fm
  
  Big news for a very small Python runtime
  News and announcements from the Python community for the week of Sep 17th, 2020
  Talk Python to Me: #282 pre-commit framework
Link: https://talkpython.fm/episodes/show/282/pre-commit-framework
Git hook scripts are useful for identifying simple issues before committing your code. Hooks run on every commit to automatically point out issues in code such as trailing whitespace and debug stateme
  
  Link: https://talkpython.fm/episodes/show/282/pre-commit-framework
Git hook scripts are useful for identifying simple issues before committing your code. Hooks run on every commit to automatically point out issues in code such as trailing whitespace and debug stateme
talkpython.fm
  
  pre-commit framework
  Git hook scripts are useful for identifying simple issues before committing your code. Hooks run on every commit to automatically point out issues in code such as trailing whitespace and debug statements. By pointing these issues out before code review, this…
  Codementor: I Want to Learn Programming but I Don’t Know Where to Start
Link: https://www.codementor.io/johnselawsky/i-want-to-learn-programming-but-i-don-t-know-where-to-start-1ae8ef2rmd
I have compiled a step-by-step guide that will get you started on your software development journey and eliminate your apprehensions.
  
  Link: https://www.codementor.io/johnselawsky/i-want-to-learn-programming-but-i-don-t-know-where-to-start-1ae8ef2rmd
I have compiled a step-by-step guide that will get you started on your software development journey and eliminate your apprehensions.
www.codementor.io
  
  I Want to Learn Programming but I Don’t Know Where to Start | Codementor
  I have compiled a step-by-step guide that will get you started on your software development journey and eliminate your apprehensions.
  Real Python: The Real Python Podcast – Episode #27: Preparing for an Interview With Python Practice Problems
Link: https://realpython.com/podcasts/rpp/27/
What is an effective way to prepare for a Python interview? Would you like a set of problems that increase in difficulty to practice and hone your Python skills? This week on the show, we have Jim An
  
  Link: https://realpython.com/podcasts/rpp/27/
What is an effective way to prepare for a Python interview? Would you like a set of problems that increase in difficulty to practice and hone your Python skills? This week on the show, we have Jim An
Realpython
  
  Episode #27: Preparing for an Interview With Python Practice Problems – The Real Python Podcast
  What is an effective way to prepare for a Python interview? Would you like a set of problems that increase in difficulty to practice and hone your Python skills?  This week on the show, we have Jim Anderson to talk about his new Real Python article, "Python…
  Andrew Dalke: Handling the SDF record delimiter
Link: http://www.dalkescientific.com/writings/diary/archive/2020/09/18/handling_the_sdf_record_delimiter.html
Spam
In this essay I'll point out a common difficulty people have when
trying to identify the end of an SDFile record. In my previous
essay I walked through the major parts of the following record:
  Link: http://www.dalkescientific.com/writings/diary/archive/2020/09/18/handling_the_sdf_record_delimiter.html
Spam
In this essay I'll point out a common difficulty people have when
trying to identify the end of an SDFile record. In my previous
essay I walked through the major parts of the following record:
Stack Abuse: Kernel Density Estimation in Python Using Scikit-Learn
Link: https://stackabuse.com/kernel-density-estimation-in-python-using-sckiti-learn/
Introduction
This article is an introduction to kernel density estimation using Python's machine learning library scikit-learn.
Kernel density estimation (KDE) is a non-parametric method for estimatin
  
  Link: https://stackabuse.com/kernel-density-estimation-in-python-using-sckiti-learn/
Introduction
This article is an introduction to kernel density estimation using Python's machine learning library scikit-learn.
Kernel density estimation (KDE) is a non-parametric method for estimatin
Stack Abuse
  
  Kernel Density Estimation in Python Using Scikit-Learn
  Introduction
This article is an introduction to kernel density estimation using Python's
machine learning library scikit-learn.
Kernel density estimation (KDE) is a non-parametric method for estimating the
probability density function of a given random variable.…
  This article is an introduction to kernel density estimation using Python's
machine learning library scikit-learn.
Kernel density estimation (KDE) is a non-parametric method for estimating the
probability density function of a given random variable.…
Catalin George Festila: Python 3.6.9 : My colab tutorials - part 008.
Link: http://python-catalin.blogspot.com/2020/08/python-369-my-colab-tutorials-parts-008.html
Today I deal with these two python packages named selenium and chromium-chromedriver.
I used selenium to get pieces of information from webpages.
These examples can be found at my GitHub project colab
  
  Link: http://python-catalin.blogspot.com/2020/08/python-369-my-colab-tutorials-parts-008.html
Today I deal with these two python packages named selenium and chromium-chromedriver.
I used selenium to get pieces of information from webpages.
These examples can be found at my GitHub project colab
Blogspot
  
  Python 3.6.9 : My colab tutorials - part 008.
  News , articles and tutorials about programming with python with source code and examples under Windows and Linux operating systems.
  Catalin George Festila: Python 3.8.5 : The hashlib python package - part 001.
Link: http://python-catalin.blogspot.com/2020/08/python-385-hashlib-python-package-parts.html
The tutorial for today is about hashlib python module.
The official webpage comes for this python package has this intro:
This module implements a common interface to many different secure hash and me
  
  Link: http://python-catalin.blogspot.com/2020/08/python-385-hashlib-python-package-parts.html
The tutorial for today is about hashlib python module.
The official webpage comes for this python package has this intro:
This module implements a common interface to many different secure hash and me
Blogspot
  
  Python 3.8.5 : The hashlib python package - part 001.
  News , articles and tutorials about programming with python with source code and examples under Windows and Linux operating systems.
  Catalin George Festila: Python 3.8.5 : Testing the pyre tool  - part 001.
Link: http://python-catalin.blogspot.com/2020/08/python-385-testing-pyre-tool-parts-001.html
The Pyre is a static analysis tool to detect and prevent security issues in Python code that can be found on the official website.
The Pyre tool supports the Language Server Protocol and has an extens
  
  Link: http://python-catalin.blogspot.com/2020/08/python-385-testing-pyre-tool-parts-001.html
The Pyre is a static analysis tool to detect and prevent security issues in Python code that can be found on the official website.
The Pyre tool supports the Language Server Protocol and has an extens
Blogspot
  
  Python 3.8.5 : Testing the pyre tool  - part 001.
  News , articles and tutorials about programming with python with source code and examples under Windows and Linux operating systems.
  Catalin George Festila: Python 3.8.5 : Testing with openpyxl - part 001 .
Link: http://python-catalin.blogspot.com/2020/08/python-385-testing-with-openpyxl-parts.html
The Python executes the code line by line because is an interpreter language.
This allows users to solve issues in the programming area, fast and easy.
I use python versiono 3.8.5 build on Aug 12 2020
  
  Link: http://python-catalin.blogspot.com/2020/08/python-385-testing-with-openpyxl-parts.html
The Python executes the code line by line because is an interpreter language.
This allows users to solve issues in the programming area, fast and easy.
I use python versiono 3.8.5 build on Aug 12 2020
Blogspot
  
  Python 3.8.5 : Testing with openpyxl - part 001 .
  News , articles and tutorials about programming with python with source code and examples under Windows and Linux operating systems.
  Catalin George Festila: Python 3.8.5 : Testing with openpyxl - part 002 .
Link: http://python-catalin.blogspot.com/2020/08/python-385-testing-with-openpyxl-parts_30.html
Today I will show you how can use Levenshtein ratio and distance between two strings, see wikipedia.
I used three files created with LibreOffice and save it like xlsx file type.
All of these files com
  
  Link: http://python-catalin.blogspot.com/2020/08/python-385-testing-with-openpyxl-parts_30.html
Today I will show you how can use Levenshtein ratio and distance between two strings, see wikipedia.
I used three files created with LibreOffice and save it like xlsx file type.
All of these files com
Blogspot
  
  Python 3.8.5 : Testing with openpyxl - part 002 .
  News , articles and tutorials about programming with python with source code and examples under Windows and Linux operating systems.
  Catalin George Festila: Python 3.8.5 : Linked List - part 001.
Link: http://python-catalin.blogspot.com/2020/09/python-385-linked-list-part-001.html
In computer science, a linked list is a linear collection of data elements whose order is not given by their physical placement in memory. see wikipedia.org.In this tutorial I will show you how these
  
  Link: http://python-catalin.blogspot.com/2020/09/python-385-linked-list-part-001.html
In computer science, a linked list is a linear collection of data elements whose order is not given by their physical placement in memory. see wikipedia.org.In this tutorial I will show you how these
Blogspot
  
  Python 3.8.5 : Linked List - part 001.
  News , articles and tutorials about programming with python with source code and examples under Windows and Linux operating systems.