From Docker CLI to Docker Compose
In this post I will show you how and why Docker Compose is useful, building a simple application written in Python that uses PostgreSQL.
https://www.thedigitalcatonline.com/blog/2022/02/19/from-docker-cli-to-docker-compose/
In this post I will show you how and why Docker Compose is useful, building a simple application written in Python that uses PostgreSQL.
https://www.thedigitalcatonline.com/blog/2022/02/19/from-docker-cli-to-docker-compose/
Thedigitalcatonline
From Docker CLI to Docker Compose
A hands-on post that shows how to build a system with Docker and which problems Docker Compose solves
Pybudget: A Solution to My Small-Brain Financial Decisions
https://www.reddit.com/r/Python/comments/sx5km0/pybudget_a_solution_to_my_smallbrain_financial/
https://www.reddit.com/r/Python/comments/sx5km0/pybudget_a_solution_to_my_smallbrain_financial/
reddit
Pybudget: A Solution to My Small-Brain Financial Decisions
Posted in r/Python by u/Throwaway_632u5 • 309 points and 36 comments
Show HN: Programming Time - Playing card game to teach your kids Python
https://punkjazz.org/programming-time/
https://punkjazz.org/programming-time/
requirements.txt vs setup.py in Python
Understanding the purpose of requirements.txt, setup.py and setup.cfg in Python when developing and ...
https://towardsdatascience.com/requirements-vs-setuptools-python-ae3ee66e28af
Understanding the purpose of requirements.txt, setup.py and setup.cfg in Python when developing and ...
https://towardsdatascience.com/requirements-vs-setuptools-python-ae3ee66e28af
D-Tale: One of the Best Python Libraries You Have Ever Seen
Here is my take on this must-have Python library and why you should give it a tryContinue reading ...
https://towardsdatascience.com/d-tale-one-of-the-best-python-libraries-you-have-ever-seen-c2deecdfd2b
Here is my take on this must-have Python library and why you should give it a tryContinue reading ...
https://towardsdatascience.com/d-tale-one-of-the-best-python-libraries-you-have-ever-seen-c2deecdfd2b
Working With Audio Data in Python
In this video Kaggle Grandmaster Rob shows you how to use python and librosa to work with audio data.
https://www.youtube.com/watch?v=ZqpSb5p1xQo
In this video Kaggle Grandmaster Rob shows you how to use python and librosa to work with audio data.
https://www.youtube.com/watch?v=ZqpSb5p1xQo
YouTube
Audio Data Processing in Python
In this video Kaggle Grandmaster Rob shows you how to use python and librosa to work with audio data. We import play and visualize the data.
Timeline:
00:00 Introduction
00:54 The Dataset
01:44 Package Imports
03:20 Audio Terms to Know
05:30 Reading and…
Timeline:
00:00 Introduction
00:54 The Dataset
01:44 Package Imports
03:20 Audio Terms to Know
05:30 Reading and…
How to create 1000+ unique NFT-style images (like Cryptopunk)
Learn how to use Python to generate a collection of unique profile-picture avatar by layering images from a directory. This is the technique used bymany popular NFT collections like Cryptopunks or Bored Ape.
https://www.youtube.com/watch?v=o0qNS_pOVqw
Learn how to use Python to generate a collection of unique profile-picture avatar by layering images from a directory. This is the technique used bymany popular NFT collections like Cryptopunks or Bored Ape.
https://www.youtube.com/watch?v=o0qNS_pOVqw
YouTube
How to create 1000+ unique NFT-style images (like Cryptopunk) | Python Tutorial
In this project, we will use Python to generate a collection of unique profile-picture avatar by layering images from a directory. This is the technique used bymany popular NFT collections like Cryptopunks or Bored Ape.
🖼 Download Images: https://pixegami…
🖼 Download Images: https://pixegami…
Optimizing Memory Usage in Python Applications
Find out why your Python apps are using too much memory and reduce their RAM usage with these simple tricks and efficient data structures.
https://martinheinz.dev/blog/68
Find out why your Python apps are using too much memory and reduce their RAM usage with these simple tricks and efficient data structures.
https://martinheinz.dev/blog/68
martinheinz.dev
Optimizing Memory Usage in Python Applications
<p>
When it comes to performance optimization, people usually focus only on speed and CPU usage. Rarely is anyone concerned with memory consumption, well, ...
When it comes to performance optimization, people usually focus only on speed and CPU usage. Rarely is anyone concerned with memory consumption, well, ...
gkbrk / slowloris
Low bandwidth DoS tool. Slowloris rewrite in Python.
https://github.com/gkbrk/slowloris
Low bandwidth DoS tool. Slowloris rewrite in Python.
https://github.com/gkbrk/slowloris
GitHub
GitHub - gkbrk/slowloris: Low bandwidth DoS tool. Slowloris rewrite in Python.
Low bandwidth DoS tool. Slowloris rewrite in Python. - gkbrk/slowloris
A Gentle Introduction to Serialization for Python
In this post, you will discover how to use two common serialization libraries in Python to serialize data objects (namely pickle and HDF5) such as dictionaries and Tensorflow models in Python for storage and transmission
https://machinelearningmastery.com/a-gentle-introduction-to-serialization-for-python/
In this post, you will discover how to use two common serialization libraries in Python to serialize data objects (namely pickle and HDF5) such as dictionaries and Tensorflow models in Python for storage and transmission
https://machinelearningmastery.com/a-gentle-introduction-to-serialization-for-python/
MachineLearningMastery.com
A Gentle Introduction to Serialization for Python - MachineLearningMastery.com
Serialization refers to the process of converting a data object (e.g., Python objects, Tensorflow models) into a format that allows us to store or transmit the data and then recreate the object when needed using the reverse process of deserialization. There…
Simple code to unlock all read-only PDFs in current folder without the password
https://www.reddit.com/r/Python/comments/t32z2o/simple_code_to_unlock_all_readonly_pdfs_in/
https://www.reddit.com/r/Python/comments/t32z2o/simple_code_to_unlock_all_readonly_pdfs_in/
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
Build a User-Friendly CLI from Pure Python Functions
DynaCLI (Dynamic CLI) is a cloud-friendly, open source library for converting pure Python functions into Linux Shell commands. This article explains how DynaCLI makes writing Command Line Interfaces in Python easy and efficient, using as an example a function to generate a QR code that records a person’s vaccination status.
https://rzayev-sehriyar.medium.com/build-a-user-friendly-cli-from-pure-python-functions-348858c61022
DynaCLI (Dynamic CLI) is a cloud-friendly, open source library for converting pure Python functions into Linux Shell commands. This article explains how DynaCLI makes writing Command Line Interfaces in Python easy and efficient, using as an example a function to generate a QR code that records a person’s vaccination status.
https://rzayev-sehriyar.medium.com/build-a-user-friendly-cli-from-pure-python-functions-348858c61022
Medium
Build a User-Friendly CLI from Pure Python Functions
DynaCLI (Dynamic CLI) is a cloud-friendly, open source library for converting pure Python functions into Linux Shell commands. This article…
A Better Structlog Processor for Python for CloudWatch Logs Using AWS Lambda
https://dltj.org/article/python-structlog-for-aws-lambda-cloudwatch/
https://dltj.org/article/python-structlog-for-aws-lambda-cloudwatch/
Disruptive Library Technology Jester
A Better Structlog Processor for Python for CloudWatch Logs Using AWS Lambda
I was introduced to structured logs at work, and this ol’ hacker thinks that is a darn good idea. For a new program I’m writing, I wanted to put that into use. The program uses AWS Lambdas, and the log entries for the Lambdas end up in CloudWatch Logs.…