Python and GoHigh Level Integration
I am looking to have python read a list of names from GoHigh Level CRM and this list contains names that clicked in a link I sent them through email. Then I want python to compare that list to anotherr list that I will be feeding into a folder on my computer on a daily basis and this list contains the names of people from the first list but at this point this new list will say witch of those people actually are confirmed to have signed up. Python will compare these two lists and feed the list of those confirmed people back to the CRM so they can continue on my pipeline. Can this be done?
/r/Python
https://redd.it/1h1pq0x
I am looking to have python read a list of names from GoHigh Level CRM and this list contains names that clicked in a link I sent them through email. Then I want python to compare that list to anotherr list that I will be feeding into a folder on my computer on a daily basis and this list contains the names of people from the first list but at this point this new list will say witch of those people actually are confirmed to have signed up. Python will compare these two lists and feed the list of those confirmed people back to the CRM so they can continue on my pipeline. Can this be done?
/r/Python
https://redd.it/1h1pq0x
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
PixelPurge: Game Cleanup Tool
Hey everyone 👋
I’m excited to introduce you to PixelPurge, my latest side project!
# What PixelPurge Does
PixelPurge is a lightweight Python tool designed to help gamers clean up after trying new games. It’s perfect for anyone who loves testing games but hates the leftover files. It tracks new files and folders created while you play and lets you delete them effortlessly.
You can find images and details in the project repository.
# Target Audience
If you’re a gamer who frequently downloads and uninstalls new noscripts, you’ll love PixelPurge. It’s also great for anyone who wants to reclaim storage space by ensuring no leftover game files clutter your system. While it’s aimed at Windows users, macOS users can use it too.
# Comparison
You might be thinking, “Why not just manually delete leftover files?” Sure, you can, but PixelPurge takes the guesswork out of the process by:
• Automatically tracking changes in monitored directories while games are running.
• Providing an easy GUI for reviewing and selecting files to delete.
• Supporting recursive folder monitoring so nothing is missed.
# Links
• Repository: https://github.com/izaan17/PixelPurge
If you’re curious or have feedback, I’d love for you to check it out. Feel free to contribute, suggest features, or just share your thoughts—this project is all about
/r/Python
https://redd.it/1h1plj9
Hey everyone 👋
I’m excited to introduce you to PixelPurge, my latest side project!
# What PixelPurge Does
PixelPurge is a lightweight Python tool designed to help gamers clean up after trying new games. It’s perfect for anyone who loves testing games but hates the leftover files. It tracks new files and folders created while you play and lets you delete them effortlessly.
You can find images and details in the project repository.
# Target Audience
If you’re a gamer who frequently downloads and uninstalls new noscripts, you’ll love PixelPurge. It’s also great for anyone who wants to reclaim storage space by ensuring no leftover game files clutter your system. While it’s aimed at Windows users, macOS users can use it too.
# Comparison
You might be thinking, “Why not just manually delete leftover files?” Sure, you can, but PixelPurge takes the guesswork out of the process by:
• Automatically tracking changes in monitored directories while games are running.
• Providing an easy GUI for reviewing and selecting files to delete.
• Supporting recursive folder monitoring so nothing is missed.
# Links
• Repository: https://github.com/izaan17/PixelPurge
If you’re curious or have feedback, I’d love for you to check it out. Feel free to contribute, suggest features, or just share your thoughts—this project is all about
/r/Python
https://redd.it/1h1plj9
GitHub
GitHub - Izaan17/PixelPurge: PixelPurge is a simple, efficient tool for gamers who love testing new games but want to keep their…
PixelPurge is a simple, efficient tool for gamers who love testing new games but want to keep their system clean. It allows you to quickly delete game-created files and folders, making it easy to f...
Django Protego - A Flexible and Dynamic Circuit Breaker
Hi folks,
I'm excited to share a project I've been working on: Django Protego, a dynamic and configurable Circuit Breaker for Django applications.
What is Django Protego?
Django Protego is a library that helps to protect your services from cascading failures by providing a Circuit Breaker mechanism. It's simple to integrate, dynamic, and works seamlessly with Django-based applications.
Key Features:
Dynamic Configuration: Configure failure thresholds, reset timeouts, and half-open retries at runtime.
Global Registry: The circuit breaker state is shared across views via a global registry, ensuring centralized control of your application’s fault tolerance.
Easy to Use: Just decorate your views with @/protego.protect to wrap your views in the circuit breaker logic.
Flexible: Supports multiple circuit breakers in the same project, all configurable independently.
In-Memory: Implements a highly efficient in-memory circuit breaker with no external dependencies.
How It Works:
Protego Client: For each service, the circuit breaker maintains its state (open, closed, half-open) and tracks failures.
Thresholds and Timeout: You can dynamically adjust failure thresholds, reset timeouts, and half-open retries via a central configuration in your Django app.
Global Access: Protego ensures that circuit breakers are initialized once and are accessible globally in your project.
/r/django
https://redd.it/1h18ua0
Hi folks,
I'm excited to share a project I've been working on: Django Protego, a dynamic and configurable Circuit Breaker for Django applications.
What is Django Protego?
Django Protego is a library that helps to protect your services from cascading failures by providing a Circuit Breaker mechanism. It's simple to integrate, dynamic, and works seamlessly with Django-based applications.
Key Features:
Dynamic Configuration: Configure failure thresholds, reset timeouts, and half-open retries at runtime.
Global Registry: The circuit breaker state is shared across views via a global registry, ensuring centralized control of your application’s fault tolerance.
Easy to Use: Just decorate your views with @/protego.protect to wrap your views in the circuit breaker logic.
Flexible: Supports multiple circuit breakers in the same project, all configurable independently.
In-Memory: Implements a highly efficient in-memory circuit breaker with no external dependencies.
How It Works:
Protego Client: For each service, the circuit breaker maintains its state (open, closed, half-open) and tracks failures.
Thresholds and Timeout: You can dynamically adjust failure thresholds, reset timeouts, and half-open retries via a central configuration in your Django app.
Global Access: Protego ensures that circuit breakers are initialized once and are accessible globally in your project.
/r/django
https://redd.it/1h18ua0
Reddit
From the django community on Reddit: Django Protego - A Flexible and Dynamic Circuit Breaker
Explore this post and more from the django community
What are you all-time favorite Python talks?
I recently discovered https://pyvideo.org/ with its 19 163 talks from Python conferences.
Do you have any favorite talks or speakers you can recommend?
/r/Python
https://redd.it/1h1qun7
I recently discovered https://pyvideo.org/ with its 19 163 talks from Python conferences.
Do you have any favorite talks or speakers you can recommend?
/r/Python
https://redd.it/1h1qun7
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
I'm using Google Cloud AppEngine to run a flask python app. Is working just fine. Is there any advantage if I create a docker container for this?
Since Google AppEngine is already a container and I will need to install OS dependencies like Microsoft Visual C++ 14.0 for python-Levenshtein-wheels on Windows (if I want to develop in windows). I don't see any advantage on "dockerize" my project. Am'I missing something?
Edit: Just to clarify "When installing the "python-Levenshtein-wheel" package in Python, you might need to install C++ build tools because the package often includes a compiled C++ component that needs to be built during installation, and your system needs the necessary compilers and build tools to compile this component from source code." Extra build is neccesary while enabling this dependency so is harder to create a truly portable docker image. You will need some different OS dependencies in linux to enable this dependency.
/r/flask
https://redd.it/1h1ecgu
Since Google AppEngine is already a container and I will need to install OS dependencies like Microsoft Visual C++ 14.0 for python-Levenshtein-wheels on Windows (if I want to develop in windows). I don't see any advantage on "dockerize" my project. Am'I missing something?
Edit: Just to clarify "When installing the "python-Levenshtein-wheel" package in Python, you might need to install C++ build tools because the package often includes a compiled C++ component that needs to be built during installation, and your system needs the necessary compilers and build tools to compile this component from source code." Extra build is neccesary while enabling this dependency so is harder to create a truly portable docker image. You will need some different OS dependencies in linux to enable this dependency.
/r/flask
https://redd.it/1h1ecgu
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
D Theory behind modern diffusion models
Hi everyone,
I recently attended some lectures at university regarding diffusion models. Those explained all the math behind the original DDPM (Denoiding Diffusion Probabilistic Model) in great detail (especially in the appendices), actually better than anything else I have found online. So it has been great for learning the basics behind diffusion models (slides are available in the link in the readme here if you are interesed: https://github.com/julioasotodv/ie-C4-466671-diffusion-models)
However, I am struggling to find resources with similar level of detail for modern approaches—such as flow matching/rectified flows, how the different ODE solvers for sampling work, etc. There are some, but everything that I have found is either quite outdated (like from 2023 or so) or very superficial—like for non-technical or scientific audiences.
Therefore, I am wondering: has anyone encountered a good compendium of theoretical eplanations beyond the basic diffusion model (besides the original papers)? The goal is to let my team deep dive into the actual papers should they desire, but giving 70% of what those deliver in one or more decent compilations.
I really believe that SEO is making any search a living nightmare nowadays. Either that or my googling skills are tanking for some reason.
Thank you all!
/r/MachineLearning
https://redd.it/1h1vxe1
Hi everyone,
I recently attended some lectures at university regarding diffusion models. Those explained all the math behind the original DDPM (Denoiding Diffusion Probabilistic Model) in great detail (especially in the appendices), actually better than anything else I have found online. So it has been great for learning the basics behind diffusion models (slides are available in the link in the readme here if you are interesed: https://github.com/julioasotodv/ie-C4-466671-diffusion-models)
However, I am struggling to find resources with similar level of detail for modern approaches—such as flow matching/rectified flows, how the different ODE solvers for sampling work, etc. There are some, but everything that I have found is either quite outdated (like from 2023 or so) or very superficial—like for non-technical or scientific audiences.
Therefore, I am wondering: has anyone encountered a good compendium of theoretical eplanations beyond the basic diffusion model (besides the original papers)? The goal is to let my team deep dive into the actual papers should they desire, but giving 70% of what those deliver in one or more decent compilations.
I really believe that SEO is making any search a living nightmare nowadays. Either that or my googling skills are tanking for some reason.
Thank you all!
/r/MachineLearning
https://redd.it/1h1vxe1
GitHub
GitHub - julioasotodv/ie-c4-466671-diffusion-models: Material for lectures on Diffusion models at IE university
Material for lectures on Diffusion models at IE university - julioasotodv/ie-c4-466671-diffusion-models
Creating an AI-powered Image Generation API Service with FLUX, Python, and Diffusers
https://herahaven.ai/blog/creating-an-ai-powered-image-generation-api-service-with-flux-python-and-diffusers/
/r/Python
https://redd.it/1h1tx73
https://herahaven.ai/blog/creating-an-ai-powered-image-generation-api-service-with-flux-python-and-diffusers/
/r/Python
https://redd.it/1h1tx73
HeraHaven AI | Blog
Creating an AI-powered Image Generation API Service with FLUX, Python, and Diffusers
FLUX (by Black Forest Labs) has taken the world of AI image generation by storm in the last few months. Not only has it beat Stable Diffusion (the prior open-source king) on many benchmarks, it has also surpassed proprietary models like Dall-E or Midjourney…
D Why aren't Stella embeddings more widely used despite topping the MTEB leaderboard?
https://huggingface.co/spaces/mteb/leaderboard
I've been looking at embedding models and noticed something interesting: Stella embeddings are crushing it on the MTEB leaderboard, outperforming OpenAI's models while being way smaller (1.5B/400M params) and apache 2.0. Makes hosting them relatively cheap.
For reference, Stella-400M scores 70.11 on MTEB vs OpenAI's text-embedding-3-large 64.59. The 1.5B version scores even higher at 71.19
Yet I rarely see them mentioned in production use cases or discussions. Has anyone here used Stella embeddings in production? What's been your experience with performance, inference speed, and reliability compared to OpenAI's offerings?
Just trying to understand if there's something I'm missing about why they haven't seen wider adoption despite the impressive benchmarks.
Would love to hear your thoughts and experiences!
/r/MachineLearning
https://redd.it/1h1u814
https://huggingface.co/spaces/mteb/leaderboard
I've been looking at embedding models and noticed something interesting: Stella embeddings are crushing it on the MTEB leaderboard, outperforming OpenAI's models while being way smaller (1.5B/400M params) and apache 2.0. Makes hosting them relatively cheap.
For reference, Stella-400M scores 70.11 on MTEB vs OpenAI's text-embedding-3-large 64.59. The 1.5B version scores even higher at 71.19
Yet I rarely see them mentioned in production use cases or discussions. Has anyone here used Stella embeddings in production? What's been your experience with performance, inference speed, and reliability compared to OpenAI's offerings?
Just trying to understand if there's something I'm missing about why they haven't seen wider adoption despite the impressive benchmarks.
Would love to hear your thoughts and experiences!
/r/MachineLearning
https://redd.it/1h1u814
huggingface.co
MTEB Leaderboard - a Hugging Face Space by mteb
Select and customize benchmarks for different tasks like image-text, domain-specific, and language-specific evaluations. Choose from multilingual options, specific languages, and various domains in...
django-fastdev 1.13 released
Django-fastdev is a collection of improvement to Django. The focus is on better error handling/messages.
New since last time I posted:
- Improved TemplateNotFound errors
- Adds a new monkey patch for
- Reintroduced invalid block check with fixes
https://github.com/boxed/django-fastdev/
/r/django
https://redd.it/1h1yjsi
Django-fastdev is a collection of improvement to Django. The focus is on better error handling/messages.
New since last time I posted:
- Improved TemplateNotFound errors
- Adds a new monkey patch for
Model.__repr__ to fix infinite recursion in error messages for DoesNotExist and MultipleObjectsReturned (the first is a fastdev bug and the second is a Django bug)- Reintroduced invalid block check with fixes
https://github.com/boxed/django-fastdev/
/r/django
https://redd.it/1h1yjsi
GitHub
GitHub - boxed/django-fastdev: An app to make it safer, faster and more fun to develop in Django
An app to make it safer, faster and more fun to develop in Django - boxed/django-fastdev
Friday Daily Thread: r/Python Meta and Free-Talk Fridays
# Weekly Thread: Meta Discussions and Free Talk Friday 🎙️
Welcome to Free Talk Friday on /r/Python! This is the place to discuss the r/Python community (meta discussions), Python news, projects, or anything else Python-related!
## How it Works:
1. Open Mic: Share your thoughts, questions, or anything you'd like related to Python or the community.
2. Community Pulse: Discuss what you feel is working well or what could be improved in the /r/python community.
3. News & Updates: Keep up-to-date with the latest in Python and share any news you find interesting.
## Guidelines:
All topics should be related to Python or the /r/python community.
Be respectful and follow Reddit's Code of Conduct.
## Example Topics:
1. New Python Release: What do you think about the new features in Python 3.11?
2. Community Events: Any Python meetups or webinars coming up?
3. Learning Resources: Found a great Python tutorial? Share it here!
4. Job Market: How has Python impacted your career?
5. Hot Takes: Got a controversial Python opinion? Let's hear it!
6. Community Ideas: Something you'd like to see us do? tell us.
Let's keep the conversation going. Happy discussing! 🌟
/r/Python
https://redd.it/1h293f6
# Weekly Thread: Meta Discussions and Free Talk Friday 🎙️
Welcome to Free Talk Friday on /r/Python! This is the place to discuss the r/Python community (meta discussions), Python news, projects, or anything else Python-related!
## How it Works:
1. Open Mic: Share your thoughts, questions, or anything you'd like related to Python or the community.
2. Community Pulse: Discuss what you feel is working well or what could be improved in the /r/python community.
3. News & Updates: Keep up-to-date with the latest in Python and share any news you find interesting.
## Guidelines:
All topics should be related to Python or the /r/python community.
Be respectful and follow Reddit's Code of Conduct.
## Example Topics:
1. New Python Release: What do you think about the new features in Python 3.11?
2. Community Events: Any Python meetups or webinars coming up?
3. Learning Resources: Found a great Python tutorial? Share it here!
4. Job Market: How has Python impacted your career?
5. Hot Takes: Got a controversial Python opinion? Let's hear it!
6. Community Ideas: Something you'd like to see us do? tell us.
Let's keep the conversation going. Happy discussing! 🌟
/r/Python
https://redd.it/1h293f6
Redditinc
Reddit Rules
Reddit Rules - Reddit
Creating an intranet
So I've created a flask app and I've hosted it through python anywhere. I want to learn how to create and intranet. Any resource or guidance on how I can make a web app that can only be accessed on a specific network? I know this may not be a flask specific question but that my background.
/r/flask
https://redd.it/1h21rrq
So I've created a flask app and I've hosted it through python anywhere. I want to learn how to create and intranet. Any resource or guidance on how I can make a web app that can only be accessed on a specific network? I know this may not be a flask specific question but that my background.
/r/flask
https://redd.it/1h21rrq
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
Conda kernel not found in Visual Studio Code
I'm trying to get back into machine learning. I tried six months ago, but my operating system crashed and I had to reinstall it completely, which was a bit of a shame!
The software might have had some updates since then, which is probably why I'm having trouble. I'm trying to select a kernel with Visual Studio Code, but I'm unsure if I'm doing it right. I followed the method given by VSCode, but I'm still stuck on kernel selection.
I'm happy to say that installing the extensions and creating the Conda environment went well! However, when I select the kernel, I get this message:
https://preview.redd.it/9vvywmhqon3e1.png?width=370&format=png&auto=webp&s=c7c3d0348462346cfd95dc4f4a31f7a10ce7922f
I thought I'd share the list of extensions I've installed in case it helps:
https://preview.redd.it/j2pcqllron3e1.png?width=280&format=png&auto=webp&s=979a3235f150e8bd2fccfd61c3bfca3ebba03dec
I've done a lot of research online, but sadly none of the solutions I found worked.
/r/IPython
https://redd.it/1h2fruc
I'm trying to get back into machine learning. I tried six months ago, but my operating system crashed and I had to reinstall it completely, which was a bit of a shame!
The software might have had some updates since then, which is probably why I'm having trouble. I'm trying to select a kernel with Visual Studio Code, but I'm unsure if I'm doing it right. I followed the method given by VSCode, but I'm still stuck on kernel selection.
I'm happy to say that installing the extensions and creating the Conda environment went well! However, when I select the kernel, I get this message:
https://preview.redd.it/9vvywmhqon3e1.png?width=370&format=png&auto=webp&s=c7c3d0348462346cfd95dc4f4a31f7a10ce7922f
I thought I'd share the list of extensions I've installed in case it helps:
https://preview.redd.it/j2pcqllron3e1.png?width=280&format=png&auto=webp&s=979a3235f150e8bd2fccfd61c3bfca3ebba03dec
I've done a lot of research online, but sadly none of the solutions I found worked.
/r/IPython
https://redd.it/1h2fruc
Visualstudio
Data Science in VS Code tutorial
Python data science tutorial demonstrating the use of common data science and machine learning libraries with Visual Studio code Jupyter Notebook support.
What are the best cache backends available in Django?
Hey Django devs! I'm looking to optimize my web application's performance and want to dive deep into caching. What cache backends have you found most effective?
/r/django
https://redd.it/1h2dt34
Hey Django devs! I'm looking to optimize my web application's performance and want to dive deep into caching. What cache backends have you found most effective?
/r/django
https://redd.it/1h2dt34
Reddit
From the django community on Reddit
Explore this post and more from the django community
Flask Assets does not detect changes to less files on save but rebuilds with changes.
Hi, my workflow would be such that flask-assets would detect any changes in my less files and automatically restart the flask server and rebuild the assets. Relatively easy frontend development.
I loaded up an older project and reinstalled dependencies to current versions and noticed this funtionaliy changing. While the static files do update on a restart of the development server, the server does not detect changes to less file. Any suggestions on what would be causing this? Running flask 3.1 and flask assets 2.1
/r/flask
https://redd.it/1h1bptd
Hi, my workflow would be such that flask-assets would detect any changes in my less files and automatically restart the flask server and rebuild the assets. Relatively easy frontend development.
I loaded up an older project and reinstalled dependencies to current versions and noticed this funtionaliy changing. While the static files do update on a restart of the development server, the server does not detect changes to less file. Any suggestions on what would be causing this? Running flask 3.1 and flask assets 2.1
/r/flask
https://redd.it/1h1bptd
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
Django templates vs React
Hi everyone, why would I use React over Django’s templating system if I have below 500k users for anything? I feel like using React is pretty overkill for most web applications even if it needs to be dynamic, unless it’s a really custom app that needs to be highly dynamic. I feel that if I really wanted some front end reactivity, I could use libraries like AlpineJS and snabbdom, and that should be enough?
FYI, I can be a big noob. Looking for what people experience and a difference in opinions and perspectives. I ask this question more to find out what others think because I feel like web development can quickly become overkill and overly complex for no reason. So I’m a proponent for keeping things simple. Please share your thoughts/experience! Would kindly appreciate it.
/r/django
https://redd.it/1h2fl3y
Hi everyone, why would I use React over Django’s templating system if I have below 500k users for anything? I feel like using React is pretty overkill for most web applications even if it needs to be dynamic, unless it’s a really custom app that needs to be highly dynamic. I feel that if I really wanted some front end reactivity, I could use libraries like AlpineJS and snabbdom, and that should be enough?
FYI, I can be a big noob. Looking for what people experience and a difference in opinions and perspectives. I ask this question more to find out what others think because I feel like web development can quickly become overkill and overly complex for no reason. So I’m a proponent for keeping things simple. Please share your thoughts/experience! Would kindly appreciate it.
/r/django
https://redd.it/1h2fl3y
Reddit
From the django community on Reddit
Explore this post and more from the django community
Web scraping linkedin , indeed like platforms
I am working on my project which fetches job applications from platforms like linkedin , indeed , etc.. and showing the output on my platform.
I just wanted to know is their any api or package which already fetches such stuff ? or i gotta build it myself ?
What are the challenges i will face while building this ?
/r/Python
https://redd.it/1h2huo4
I am working on my project which fetches job applications from platforms like linkedin , indeed , etc.. and showing the output on my platform.
I just wanted to know is their any api or package which already fetches such stuff ? or i gotta build it myself ?
What are the challenges i will face while building this ?
/r/Python
https://redd.it/1h2huo4
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
Best library for Magic Links
I've seen there are several libraries for this (django-magiclink, django-magic-link, django-sesame, django-magicauth...)
Which one do you recommend? Or which things I should take into account when choosing?
I'm a Django beginner and I'm pretty lost here.
I want to receive payments using Stripe (Stripe Checkout probably) and send a magic link to the buyers so they can access a protected URL in my Django app. I will have several products (several protected URLs).
I don't need super advanced security or complex features. Just something simple (for me and my users).
Thanks!
/r/django
https://redd.it/1h2n22v
I've seen there are several libraries for this (django-magiclink, django-magic-link, django-sesame, django-magicauth...)
Which one do you recommend? Or which things I should take into account when choosing?
I'm a Django beginner and I'm pretty lost here.
I want to receive payments using Stripe (Stripe Checkout probably) and send a magic link to the buyers so they can access a protected URL in my Django app. I will have several products (several protected URLs).
I don't need super advanced security or complex features. Just something simple (for me and my users).
Thanks!
/r/django
https://redd.it/1h2n22v
Reddit
From the django community on Reddit
Explore this post and more from the django community
What are some really awesome projects/channels you have encountered so far in YouTube?
What are some really awesome projects/channels you have encountered so far in YouTube? Looking for some ideas to work on for a long time now.
Doing same automation and using same libraries, I am feeling kinda bored now. Need some fresh ideas.
/r/Python
https://redd.it/1h2quqa
What are some really awesome projects/channels you have encountered so far in YouTube? Looking for some ideas to work on for a long time now.
Doing same automation and using same libraries, I am feeling kinda bored now. Need some fresh ideas.
/r/Python
https://redd.it/1h2quqa
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
MVP deployed
It doesn't function yet, it's not mobile ready, It doesn't use a database yet, I don't fully understand what I just did... but I'm learning day by day and finally got my django work visible somewhere besides my local.
The app is meant to help people track their poor spending habits. Eventually, a user will be able to add items they want, or need to buy, to the post-it note. Then each day they enter amounts spent on things like fast food or alcohol (anything they want to spend less money on) in the day boxes, and when the total surpasses one of the goal items the user will get a notification stating "You could've bought item 1" etc.
*NOTE: WAY BETTER ON PC (can't grab the note on mobile yet)
[Budge it!](http://laziestj.pythonanywhere.com)
For context, I'm a QA Engineer by day (haven't landed that dev job yet) and recently graduated with a software development degree that focused on java. I've built a stand-alone java app, an android app, and a portfolio website, but I wanted to try something new and django was suggested to me by a hiring manager.
My next steps are
- turning the days into individual objects for data entry and
/r/djangolearning
https://redd.it/1h25vnl
It doesn't function yet, it's not mobile ready, It doesn't use a database yet, I don't fully understand what I just did... but I'm learning day by day and finally got my django work visible somewhere besides my local.
The app is meant to help people track their poor spending habits. Eventually, a user will be able to add items they want, or need to buy, to the post-it note. Then each day they enter amounts spent on things like fast food or alcohol (anything they want to spend less money on) in the day boxes, and when the total surpasses one of the goal items the user will get a notification stating "You could've bought item 1" etc.
*NOTE: WAY BETTER ON PC (can't grab the note on mobile yet)
[Budge it!](http://laziestj.pythonanywhere.com)
For context, I'm a QA Engineer by day (haven't landed that dev job yet) and recently graduated with a software development degree that focused on java. I've built a stand-alone java app, an android app, and a portfolio website, but I wanted to try something new and django was suggested to me by a hiring manager.
My next steps are
- turning the days into individual objects for data entry and
/r/djangolearning
https://redd.it/1h25vnl
YTSage: A Modern YouTube Downloader with a Stunning PyQt6 Interface!
What My Project Does:
YTSage is a modern YouTube downloader designed for simplicity and functionality. With a sleek PyQt6 interface, it allows users to:
- 🎥 Download videos in various qualities with automatic audio merging.
- 🎵 Extract audio in multiple formats.
- 📝 Fetch both manual and auto-generated subnoscripts.
- ℹ️ View detailed video metadata (e.g., views, upload date, duration).
- 🖼️ Preview video thumbnails before downloading.
---
Target Audience:
YTSage is ideal for:
- Casual users who want an easy-to-use video and audio downloader.
- Developers looking for a robust yt-dlp-based tool with a clean GUI.
- Educators and content creators who need subnoscripts or metadata for their projects.
---
Comparison with Existing Alternatives:
- vs yt-dlp: While yt-dlp is powerful, it operates through the command line. YTSage simplifies the process with an intuitive graphical interface.
- vs other GUI downloaders: Many alternatives lack modern design or features like subnoscript support and metadata display. YTSage bridges this gap with its PyQt6-powered interface and advanced functionality.
---
Getting Started:
Download the pre-built executable from the Releases page – no installation required! For developers, source code and
/r/Python
https://redd.it/1h2ta56
What My Project Does:
YTSage is a modern YouTube downloader designed for simplicity and functionality. With a sleek PyQt6 interface, it allows users to:
- 🎥 Download videos in various qualities with automatic audio merging.
- 🎵 Extract audio in multiple formats.
- 📝 Fetch both manual and auto-generated subnoscripts.
- ℹ️ View detailed video metadata (e.g., views, upload date, duration).
- 🖼️ Preview video thumbnails before downloading.
---
Target Audience:
YTSage is ideal for:
- Casual users who want an easy-to-use video and audio downloader.
- Developers looking for a robust yt-dlp-based tool with a clean GUI.
- Educators and content creators who need subnoscripts or metadata for their projects.
---
Comparison with Existing Alternatives:
- vs yt-dlp: While yt-dlp is powerful, it operates through the command line. YTSage simplifies the process with an intuitive graphical interface.
- vs other GUI downloaders: Many alternatives lack modern design or features like subnoscript support and metadata display. YTSage bridges this gap with its PyQt6-powered interface and advanced functionality.
---
Getting Started:
Download the pre-built executable from the Releases page – no installation required! For developers, source code and
/r/Python
https://redd.it/1h2ta56
GitHub
GitHub - oop7/YTSage: Modern YouTube downloader with a clean PySide6 interface. Download videos in any quality, extract audio,…
Modern YouTube downloader with a clean PySide6 interface. Download videos in any quality, extract audio, fetch subnoscripts, sponsorBlock, and view video metadata. Built with yt-dlp for reliable perfo...