Prettify Your Data Structures With Pretty Print in Python
https://realpython.com/python-pretty-print/
https://realpython.com/python-pretty-print/
Realpython
Prettify Your Data Structures With Pretty Print in Python – Real Python
The pprint module, Python's data pretty printer, is a useful part of the standard library. You can work with it for debugging data structures and increasing the readability of your output. In this tutorial, you'll find that pprint is both straightforward…
Discussing Type Hints, Protocols, and Ducks in Python With Luciano Ramalho
https://realpython.com/podcasts/rpp/88/
https://realpython.com/podcasts/rpp/88/
Realpython
Episode #88: Discussing Type Hints, Protocols, and Ducks in Python – The Real Python Podcast
There seem to be three kinds of Python developers: those unaware of type hints or have no opinion, ones that embrace them, and others who have an allergic reaction at the mention of them. Python is famously a dynamically typed language, but there are advantages…
How to Create a Computer Virus in Python
https://thepythoncorner.com/posts/2021-08-30-how-to-create-virus-python/
https://thepythoncorner.com/posts/2021-08-30-how-to-create-virus-python/
The Python Corner
How to create a computer virus in Python
I was relaxing on a beach during my summer leave when I received a mail from a reader that asked me if it is technically possible to write a virus using Python. The short answer: YES. The longer answer: yes, BUT… Let’s start by saying that viruses are a little…
Writing Simple Python GUIs for Your Command-Line-Phobe Coworkers
https://cushychicken.github.io/python-guis-for-heretics/
https://cushychicken.github.io/python-guis-for-heretics/
Wherein The Chicken
Writing Simple Python GUIs for your Command-Line-Phobe Coworkers
If you have a modicum of coding skill, you’ve probably found some crappy little office task that you can automate away with a judicious hundred lines of Python. This typically takes the form of simple command line applications to reformat files: read in …
emacs-python-coverage: Show Python Coverage Information Directly in Emacs
https://github.com/wbolster/emacs-python-coverage
https://github.com/wbolster/emacs-python-coverage
GitHub
GitHub - wbolster/emacs-python-coverage: show python coverage information directly in emacs
show python coverage information directly in emacs - wbolster/emacs-python-coverage
pip-audit: Audits Python Environments and Dependency Trees for Known Vulnerabilities
https://github.com/trailofbits/pip-audit
https://github.com/trailofbits/pip-audit
GitHub
GitHub - pypa/pip-audit: Audits Python environments, requirements files and dependency trees for known security vulnerabilities…
Audits Python environments, requirements files and dependency trees for known security vulnerabilities, and can automatically fix them - pypa/pip-audit
pkgversions: Update Python Package Versions During Development
https://github.com/hasii2011/pkgversions
https://github.com/hasii2011/pkgversions
GitHub
GitHub - hasii2011/pkgversions: Simple CLI for my development usage
Simple CLI for my development usage. Contribute to hasii2011/pkgversions development by creating an account on GitHub.
Dynamically Creating Signals and Deciding What Emails to Send from Django Admin
https://medium.com/@Salaah01/dynamically-creating-signals-and-deciding-what-emails-to-send-from-django-admin-f66849622cfb
https://medium.com/@Salaah01/dynamically-creating-signals-and-deciding-what-emails-to-send-from-django-admin-f66849622cfb
Medium
Dynamically Creating Signals and Deciding What Emails to Send from Django Admin
Enable admins to create email templates, set up signals and send emails whenever some data changes — right form the admin panel.
Python Collections — Key for Data Science
https://dnyanesha10.medium.com/python-collections-key-for-data-science-3d1e27a82ac9
https://dnyanesha10.medium.com/python-collections-key-for-data-science-3d1e27a82ac9
Medium
Python Collections — Key for Data Science
Firstly, data scientists definitely need to know about lists, tuples, sets, dictionaries, pandas objects, etc. but only to the extent that…
Regression [With Code]: A Lighthouse for Data Scientists
https://piexchange.medium.com/regression-with-code-a-lighthouse-for-data-scientists-a3283fa5fc5b
https://piexchange.medium.com/regression-with-code-a-lighthouse-for-data-scientists-a3283fa5fc5b
Medium
Regression [With Code]: A Lighthouse for Data Scientists
While people always get fascinated by the more advanced algorithms, many real-life problems can be quickly solved using linear regression.
How to make an R model accessible via an API
https://medium.com/@kevinrejko/how-to-make-an-r-model-accessible-via-an-api-5d153d3c8be6
https://medium.com/@kevinrejko/how-to-make-an-r-model-accessible-via-an-api-5d153d3c8be6
Medium
How to make an R model accessible via an API
Ever created a cool model, script or algorithm in R and thought to yourself “It would be perfect if I could run this algorithm in my apps…