D Monthly Who's Hiring and Who wants to be Hired?
For Job Postings please use this template
>Hiring: [Location\], Salary:[\], [Remote | Relocation\], [Full Time | Contract | Part Time\] and [Brief overview, what you're looking for\]
For Those looking for jobs please use this template
>Want to be Hired: [Location\], Salary Expectation:[\], [Remote | Relocation\], [Full Time | Contract | Part Time\] Resume: [Link to resume\] and [Brief overview, what you're looking for\]
​
Please remember that this community is geared towards those with experience.
/r/MachineLearning
https://redd.it/1ie5qoh
For Job Postings please use this template
>Hiring: [Location\], Salary:[\], [Remote | Relocation\], [Full Time | Contract | Part Time\] and [Brief overview, what you're looking for\]
For Those looking for jobs please use this template
>Want to be Hired: [Location\], Salary Expectation:[\], [Remote | Relocation\], [Full Time | Contract | Part Time\] Resume: [Link to resume\] and [Brief overview, what you're looking for\]
​
Please remember that this community is geared towards those with experience.
/r/MachineLearning
https://redd.it/1ie5qoh
Reddit
From the MachineLearning community on Reddit
Explore this post and more from the MachineLearning community
Introducing Kreuzberg: A Simple, Modern Library for PDF and Document Text Extraction in Python
Hey folks! I recently created Kreuzberg, a Python library that makes text extraction from PDFs and other documents simple and hassle-free.
I built this while working on a RAG system and found that existing solutions either required expensive API calls were overly complex for my text extraction needs, or involved large docker images and complex deployments.
Key Features:
- Modern Python with async support and type hints
- Extract text from PDFs (both searchable and scanned), images, and office documents
- Local processing - no API calls needed
- Lightweight - no GPU requirements
- Extensive error handling for easy debugging
## Target Audience:
This library is perfect for developers working on RAG systems, document processing pipelines, or anyone needing reliable text extraction without the complexity of commercial APIs. It's designed to be simple to use while handling a wide range of document formats.
```python
from kreuzberg import extract_bytes, extract_file
# Extract text from a PDF file
async def extract_pdf():
result = await extract_file("document.pdf")
print(f"Extracted text: {result.content}")
print(f"Output mime type: {result.mime_type}")
# Extract text from an image
async def extract_image():
result = await extract_file("scan.png")
print(f"Extracted text: {result.content}")
# Or extract from a byte string
# Extract text from PDF
/r/Python
https://redd.it/1if3axy
Hey folks! I recently created Kreuzberg, a Python library that makes text extraction from PDFs and other documents simple and hassle-free.
I built this while working on a RAG system and found that existing solutions either required expensive API calls were overly complex for my text extraction needs, or involved large docker images and complex deployments.
Key Features:
- Modern Python with async support and type hints
- Extract text from PDFs (both searchable and scanned), images, and office documents
- Local processing - no API calls needed
- Lightweight - no GPU requirements
- Extensive error handling for easy debugging
## Target Audience:
This library is perfect for developers working on RAG systems, document processing pipelines, or anyone needing reliable text extraction without the complexity of commercial APIs. It's designed to be simple to use while handling a wide range of document formats.
```python
from kreuzberg import extract_bytes, extract_file
# Extract text from a PDF file
async def extract_pdf():
result = await extract_file("document.pdf")
print(f"Extracted text: {result.content}")
print(f"Output mime type: {result.mime_type}")
# Extract text from an image
async def extract_image():
result = await extract_file("scan.png")
print(f"Extracted text: {result.content}")
# Or extract from a byte string
# Extract text from PDF
/r/Python
https://redd.it/1if3axy
Reddit
From the Python community on Reddit: Introducing Kreuzberg: A Simple, Modern Library for PDF and Document Text Extraction in Python
Explore this post and more from the Python community
Add Login and Logout in Django
In this post, we’re setting up Login & Logout functionality, building forms, and using Django authentication & CSRF tokens.
Blog Link : [Add Login and Logout in Django – Simple Guide](https://django-learning.hashnode.dev/add-login-and-logout-in-django-simple-guide)
In the last blog, we built a Django template.
Previous Blog Link : Django Templates Explained: A Guide to Dynamic Web Pages
Give it a read and let me know your thoughts in the comments! 💬 Your feedback helps me make these guides even better! 😊
/r/django
https://redd.it/1if2uam
In this post, we’re setting up Login & Logout functionality, building forms, and using Django authentication & CSRF tokens.
Blog Link : [Add Login and Logout in Django – Simple Guide](https://django-learning.hashnode.dev/add-login-and-logout-in-django-simple-guide)
In the last blog, we built a Django template.
Previous Blog Link : Django Templates Explained: A Guide to Dynamic Web Pages
Give it a read and let me know your thoughts in the comments! 💬 Your feedback helps me make these guides even better! 😊
/r/django
https://redd.it/1if2uam
Django
Add Login and Logout in Django – Simple Guide
Learn how to add login and logout functionality in Django with easy steps.
Suggest me free Flask course or tutorial
I've learned Python fundamentals and frontend. Now I want to start learning Flask for backend.
I've tried Miguel Grinberg's course. But I failed to understand.
Can you guys suggest me some other good Flask courses or tutorials that start from beginner topics and cover advanced topics?
/r/flask
https://redd.it/1if5x86
I've learned Python fundamentals and frontend. Now I want to start learning Flask for backend.
I've tried Miguel Grinberg's course. But I failed to understand.
Can you guys suggest me some other good Flask courses or tutorials that start from beginner topics and cover advanced topics?
/r/flask
https://redd.it/1if5x86
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
Automation Framework for Python
What My Project Does
Basically I was making a lot of automations for my clients and developed a toolset that i am using for most of my automation projects.
It is on Python + Playwright (for ui browser automation) + requests (covered with base modules for API automation) + DB module. I believe it maybe useful for someone of you, and I’ll appreciate your stars/comments/pull-requests:
https://github.com/eshut/Inject-Framework
I understand it may be very «specialized» thing for someone, but if you need to automate something like website or api - it makes the solution structured and fast.
Feel free to ask your questions.
Target Audience
Anyone who is looking for software automation on Python for websites or some API
Comparison
I believe there are similar libraries on Typescript as codecept and maybe something similar on python , but usually it is project specific
/r/Python
https://redd.it/1if6nk0
What My Project Does
Basically I was making a lot of automations for my clients and developed a toolset that i am using for most of my automation projects.
It is on Python + Playwright (for ui browser automation) + requests (covered with base modules for API automation) + DB module. I believe it maybe useful for someone of you, and I’ll appreciate your stars/comments/pull-requests:
https://github.com/eshut/Inject-Framework
I understand it may be very «specialized» thing for someone, but if you need to automate something like website or api - it makes the solution structured and fast.
Feel free to ask your questions.
Target Audience
Anyone who is looking for software automation on Python for websites or some API
Comparison
I believe there are similar libraries on Typescript as codecept and maybe something similar on python , but usually it is project specific
/r/Python
https://redd.it/1if6nk0
GitHub
GitHub - eshut/Inject-Framework: [Playwright] Autotests / Automation Framework
[Playwright] Autotests / Automation Framework . Contribute to eshut/Inject-Framework development by creating an account on GitHub.
Customize Inline Model Position in Django Admin
Hello everyone!
A few days ago, I ran into an issue while working on one of my projects—a university course selection system. The problem was how to change the placement of inline models.
By default, Django places them at the bottom of the page, but I wanted to position them wherever I needed.
After extensive searching and using AI tools, I couldn’t find a solution. So, I decided to figure it out myself—and finally, I found the answer!
I talked about it in detail on my YouTube channel and shared the final solution in a tutorial.
Hope you find it helpful!
Watch the video here :
https://youtu.be/utUuwUj67oc?si=3MV74_pDHL6PoEkp
/r/django
https://redd.it/1ifhjwj
Hello everyone!
A few days ago, I ran into an issue while working on one of my projects—a university course selection system. The problem was how to change the placement of inline models.
By default, Django places them at the bottom of the page, but I wanted to position them wherever I needed.
After extensive searching and using AI tools, I couldn’t find a solution. So, I decided to figure it out myself—and finally, I found the answer!
I talked about it in detail on my YouTube channel and shared the final solution in a tutorial.
Hope you find it helpful!
Watch the video here :
https://youtu.be/utUuwUj67oc?si=3MV74_pDHL6PoEkp
/r/django
https://redd.it/1ifhjwj
YouTube
Customize Inline Model Position in Django Admin
In this video, I’ll show you how to move the Inline Model in Django Admin to any position you want! 🚀 By default, Django places it at the bottom, but I’ll teach you how to override the template and position it wherever you like.
📌 Topics Covered:
✅ Overriding…
📌 Topics Covered:
✅ Overriding…
News Tulu 3 model performing better than 4o and Deepseek?
Has anyone used this model released by the Allen Institute for AI on Thursday? It seems to outperform 4o and DeepSeek in a lot of places, but for some reason there's been little to no coverage. Thoughts?
https://www.marktechpost.com/2025/01/31/the-allen-institute-for-ai-ai2-releases-tulu-3-405b-scaling-open-weight-post-training-with-reinforcement-learning-from-verifiable-rewards-rlvr-to-surpass-deepseek-v3-and-gpt-4o-in-key-benchmarks/
/r/MachineLearning
https://redd.it/1ifetmm
Has anyone used this model released by the Allen Institute for AI on Thursday? It seems to outperform 4o and DeepSeek in a lot of places, but for some reason there's been little to no coverage. Thoughts?
https://www.marktechpost.com/2025/01/31/the-allen-institute-for-ai-ai2-releases-tulu-3-405b-scaling-open-weight-post-training-with-reinforcement-learning-from-verifiable-rewards-rlvr-to-surpass-deepseek-v3-and-gpt-4o-in-key-benchmarks/
/r/MachineLearning
https://redd.it/1ifetmm
MarkTechPost
The Allen Institute for AI (AI2) Releases Tülu 3 405B: Scaling Open-Weight Post-Training with Reinforcement Learning from Verifiable…
Post-training techniques, such as instruction tuning and reinforcement learning from human feedback, have become essential for refining language models. But, open-source approaches often fall behind proprietary models due to a lack of transparency in training…
Problem with connection with server
I'm creating a flask app following the mega-tutorial of Miguel. I'm trying to send an email to me but i receive this error:
ConnectionRefusedError: [WinError 10061\] No connection could be made because the target machine actively refused it
How can i resolve it? I think because the client port is different from server port.
/r/flask
https://redd.it/1if5erj
I'm creating a flask app following the mega-tutorial of Miguel. I'm trying to send an email to me but i receive this error:
ConnectionRefusedError: [WinError 10061\] No connection could be made because the target machine actively refused it
How can i resolve it? I think because the client port is different from server port.
/r/flask
https://redd.it/1if5erj
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
htmx + Django + Cursor AI is a legit dream.
I am legit blown away. I've been using Cursor lately and I don't think I can go back anymore. Especially when it comes to fullstack development. For those of you not using AI to level up your development I would highly recommend starting.
backstory - I wanted to add a public playground section for my application which included a backend, frontend, and some internal integrations with my existing stuff and about 30 new files and 8k new lines of code later its working just how I want. The best part is it took me 1 day and just prompted the entire thing. Didn't write one bit of html for it. I've been in software engineering for 8 years so I've seen trends come and go but at this point I'm 100% sold on this.
This thing handles django templates with htmx so unbelievably well that I'm convinced anyone can build something very impactful in very little time.
Here's a video of the whole thing https://app.arcade.software/share/4BHHh6THSWxGWCzRBwTd
I wanted
1. To share with you all that this combo, whatever new acronym people end up calling it, is awesome. Big win for the SSR community.
2. Should I live code a session or
/r/django
https://redd.it/1ifnpjz
I am legit blown away. I've been using Cursor lately and I don't think I can go back anymore. Especially when it comes to fullstack development. For those of you not using AI to level up your development I would highly recommend starting.
backstory - I wanted to add a public playground section for my application which included a backend, frontend, and some internal integrations with my existing stuff and about 30 new files and 8k new lines of code later its working just how I want. The best part is it took me 1 day and just prompted the entire thing. Didn't write one bit of html for it. I've been in software engineering for 8 years so I've seen trends come and go but at this point I'm 100% sold on this.
This thing handles django templates with htmx so unbelievably well that I'm convinced anyone can build something very impactful in very little time.
Here's a video of the whole thing https://app.arcade.software/share/4BHHh6THSWxGWCzRBwTd
I wanted
1. To share with you all that this combo, whatever new acronym people end up calling it, is awesome. Big win for the SSR community.
2. Should I live code a session or
/r/django
https://redd.it/1ifnpjz
Arcade
KitchenAI
Parameters for each Django Model Field
I'm really new to django and I cannot find an itemized list of the optional parameters available for each model field. There don't seem to be complete listings in the model fields reference. Anyone know where I can find this information? It's proving much harder than I imagined.
/r/djangolearning
https://redd.it/1ifg7yp
I'm really new to django and I cannot find an itemized list of the optional parameters available for each model field. There don't seem to be complete listings in the model fields reference. Anyone know where I can find this information? It's proving much harder than I imagined.
/r/djangolearning
https://redd.it/1ifg7yp
Reddit
From the djangolearning community on Reddit
Explore this post and more from the djangolearning community
Sunday Daily Thread: What's everyone working on this week?
# Weekly Thread: What's Everyone Working On This Week? 🛠️
Hello /r/Python! It's time to share what you've been working on! Whether it's a work-in-progress, a completed masterpiece, or just a rough idea, let us know what you're up to!
## How it Works:
1. Show & Tell: Share your current projects, completed works, or future ideas.
2. Discuss: Get feedback, find collaborators, or just chat about your project.
3. Inspire: Your project might inspire someone else, just as you might get inspired here.
## Guidelines:
Feel free to include as many details as you'd like. Code snippets, screenshots, and links are all welcome.
Whether it's your job, your hobby, or your passion project, all Python-related work is welcome here.
## Example Shares:
1. Machine Learning Model: Working on a ML model to predict stock prices. Just cracked a 90% accuracy rate!
2. Web Scraping: Built a script to scrape and analyze news articles. It's helped me understand media bias better.
3. Automation: Automated my home lighting with Python and Raspberry Pi. My life has never been easier!
Let's build and grow together! Share your journey and learn from others. Happy coding! 🌟
/r/Python
https://redd.it/1ifk63x
# Weekly Thread: What's Everyone Working On This Week? 🛠️
Hello /r/Python! It's time to share what you've been working on! Whether it's a work-in-progress, a completed masterpiece, or just a rough idea, let us know what you're up to!
## How it Works:
1. Show & Tell: Share your current projects, completed works, or future ideas.
2. Discuss: Get feedback, find collaborators, or just chat about your project.
3. Inspire: Your project might inspire someone else, just as you might get inspired here.
## Guidelines:
Feel free to include as many details as you'd like. Code snippets, screenshots, and links are all welcome.
Whether it's your job, your hobby, or your passion project, all Python-related work is welcome here.
## Example Shares:
1. Machine Learning Model: Working on a ML model to predict stock prices. Just cracked a 90% accuracy rate!
2. Web Scraping: Built a script to scrape and analyze news articles. It's helped me understand media bias better.
3. Automation: Automated my home lighting with Python and Raspberry Pi. My life has never been easier!
Let's build and grow together! Share your journey and learn from others. Happy coding! 🌟
/r/Python
https://redd.it/1ifk63x
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
FastAPI Deconstructed: Anatomy of a Modern ASGI Framework
Recently I had the opportunity to talk about the FastAPI under the hood at PyCon APAC 2024. The title of the talk was “FastAPI Deconstructed: Anatomy of a Modern ASGI Framework”. Then, I thought why not have a written version of the talk. And, I have decided to write. Something like a blog post. So, here it is.
https://rafiqul.dev/blog/fastapi-deconstructed-anatomy-of-modern-asgi-framework
/r/Python
https://redd.it/1ifu2sv
Recently I had the opportunity to talk about the FastAPI under the hood at PyCon APAC 2024. The title of the talk was “FastAPI Deconstructed: Anatomy of a Modern ASGI Framework”. Then, I thought why not have a written version of the talk. And, I have decided to write. Something like a blog post. So, here it is.
https://rafiqul.dev/blog/fastapi-deconstructed-anatomy-of-modern-asgi-framework
/r/Python
https://redd.it/1ifu2sv
Recently Wrote a Blog Post About Python Without the GIL – Here’s What I Found! 🚀
Python 3.13 introduces an experimental option to disable the Global Interpreter Lock (GIL), something the community has been discussing for years.
I wanted to see how much of a difference it actually makes, so I explored and ran benchmarks on CPU-intensive workloads, including:
- Docker Setup: Creating a GIL-disabled Python environment
- Prime Number Calculation: A pure computational task
- Loan Risk Scoring Benchmark: A real-world financial workload using Pandas
🔍 Key takeaways from my benchmarks:
- Multi-threading with No-GIL can be up to 2x faster for CPU-bound tasks.
- Single-threaded performance can be slower due to reliance on the GIL and still experimental mode of the build.
- Some libraries still assume the GIL exists, requiring manual tweaks.
📖 I wrote a full blog post with my findings and detailed benchmarks:
https://simonontech.hashnode.dev/exploring-python-313-hands-on-with-the-gil-disablement
What do you think? Will No-GIL Python change how we use Python for CPU-intensive and parallel tasks?
/r/Python
https://redd.it/1ift077
Python 3.13 introduces an experimental option to disable the Global Interpreter Lock (GIL), something the community has been discussing for years.
I wanted to see how much of a difference it actually makes, so I explored and ran benchmarks on CPU-intensive workloads, including:
- Docker Setup: Creating a GIL-disabled Python environment
- Prime Number Calculation: A pure computational task
- Loan Risk Scoring Benchmark: A real-world financial workload using Pandas
🔍 Key takeaways from my benchmarks:
- Multi-threading with No-GIL can be up to 2x faster for CPU-bound tasks.
- Single-threaded performance can be slower due to reliance on the GIL and still experimental mode of the build.
- Some libraries still assume the GIL exists, requiring manual tweaks.
📖 I wrote a full blog post with my findings and detailed benchmarks:
https://simonontech.hashnode.dev/exploring-python-313-hands-on-with-the-gil-disablement
What do you think? Will No-GIL Python change how we use Python for CPU-intensive and parallel tasks?
/r/Python
https://redd.it/1ift077
PedroReports-An Open Source LLM Powered Automated Data Analysis Report Generator Tool
Hey devs! Sharing my first project - an AI-powered PDF Report Generator! 🐍📊
## GitHub: https://github.com/bobinsingh/PedroReports-LLM-Powered-Report-Tool
I recently switched my career from life sciences to coding, and I wanted to create something useful after learning. So I built a tool that generates professional data analysis PDF reports from any tabular dataset. You just need to input what you want to analyze, and it does the job for you. Thought you might find it interesting!
# What My Project Does:
- Takes your dataset and analysis requirements as input in the form of questions
- Uses Gemini API to generate graphs and relevant stats to answer your questions
- Generates a professional PDF with proper formatting
- Handles TOC, styling, and page numbers automatically
# Target Audience:
- Data Analysts, BI reporters
- Data Science beginners who want quick data insights
- Researchers who are not friendly with coding
# Comparison
- There are a lot of BI tools out there but not sure if they generate PDF reports or not.
## Tech Stack:
- Python + ReportLab for PDF generation
- React + Vite for frontend and development server
- LangChain + Gemini API for analysis
- Pandas/Numpy/Matplotlib for data processing
The workflow is simple: feed it your data, and it handles everything from
/r/Python
https://redd.it/1ifqz4j
Hey devs! Sharing my first project - an AI-powered PDF Report Generator! 🐍📊
## GitHub: https://github.com/bobinsingh/PedroReports-LLM-Powered-Report-Tool
I recently switched my career from life sciences to coding, and I wanted to create something useful after learning. So I built a tool that generates professional data analysis PDF reports from any tabular dataset. You just need to input what you want to analyze, and it does the job for you. Thought you might find it interesting!
# What My Project Does:
- Takes your dataset and analysis requirements as input in the form of questions
- Uses Gemini API to generate graphs and relevant stats to answer your questions
- Generates a professional PDF with proper formatting
- Handles TOC, styling, and page numbers automatically
# Target Audience:
- Data Analysts, BI reporters
- Data Science beginners who want quick data insights
- Researchers who are not friendly with coding
# Comparison
- There are a lot of BI tools out there but not sure if they generate PDF reports or not.
## Tech Stack:
- Python + ReportLab for PDF generation
- React + Vite for frontend and development server
- LangChain + Gemini API for analysis
- Pandas/Numpy/Matplotlib for data processing
The workflow is simple: feed it your data, and it handles everything from
/r/Python
https://redd.it/1ifqz4j
GitHub
GitHub - bobinsingh/PedroReports-LLM-Powered-Report-Tool
Contribute to bobinsingh/PedroReports-LLM-Powered-Report-Tool development by creating an account on GitHub.
I made this! Flask and Jinja templates, and MongoDB for the database.
https://www.spacetranslate.org/
/r/flask
https://redd.it/1ify31e
https://www.spacetranslate.org/
/r/flask
https://redd.it/1ify31e
Django looks like a play
I can see why Quentin wants to do theatre plays I think he could do a TV series as well Django looks like a live play lol
/r/django
https://redd.it/1ig7eu8
I can see why Quentin wants to do theatre plays I think he could do a TV series as well Django looks like a live play lol
/r/django
https://redd.it/1ig7eu8
Reddit
From the django community on Reddit
Explore this post and more from the django community
Problem with sending email system
i'm trying to config a Gmail account's email server, bit when i run the application, i receive this error:
smtplib.SMTPAuthenticationError: (535, b'5.7.8 Username and Password not accepted. For more information, go to\n5.7.8
https://support.google.com/mail/?p=BadCredentials
5b1f17b1804b1-438e244f38esm124208605e9.26 - gsmtp')
My configuration is:
MAIL_SERVER=smtp.googlemail.com
MAIL_PORT=587
MAIL_USE_TLS=1
MAIL_USERNAME=my.username1234
MAIL_PASSWORD=my google app password (I tried to write it attached but i receive the same error)
/r/flask
https://redd.it/1ifz6gh
i'm trying to config a Gmail account's email server, bit when i run the application, i receive this error:
smtplib.SMTPAuthenticationError: (535, b'5.7.8 Username and Password not accepted. For more information, go to\n5.7.8
https://support.google.com/mail/?p=BadCredentials
5b1f17b1804b1-438e244f38esm124208605e9.26 - gsmtp')
My configuration is:
MAIL_SERVER=smtp.googlemail.com
MAIL_PORT=587
MAIL_USE_TLS=1
MAIL_USERNAME=my.username1234
MAIL_PASSWORD=my google app password (I tried to write it attached but i receive the same error)
/r/flask
https://redd.it/1ifz6gh
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
How do you design your project?
So, I'm currently in the process of learning back-end development. Knowing python from before, i decided on starting out with Django.
I was wondering how should i design me project. Like the layout (how many & what apps, models, etc). The first step i figured would be to list out all the features i would like in my project.
I'm stumped on what to do after this though.
So, can y'all tell me how you guys go about it?
Any tips & tricks would be very helpful as well.
/r/djangolearning
https://redd.it/1icm5u1
So, I'm currently in the process of learning back-end development. Knowing python from before, i decided on starting out with Django.
I was wondering how should i design me project. Like the layout (how many & what apps, models, etc). The first step i figured would be to list out all the features i would like in my project.
I'm stumped on what to do after this though.
So, can y'all tell me how you guys go about it?
Any tips & tricks would be very helpful as well.
/r/djangolearning
https://redd.it/1icm5u1
Reddit
From the djangolearning community on Reddit
Explore this post and more from the djangolearning community
Monday Daily Thread: Project ideas!
# Weekly Thread: Project Ideas 💡
Welcome to our weekly Project Ideas thread! Whether you're a newbie looking for a first project or an expert seeking a new challenge, this is the place for you.
## How it Works:
1. **Suggest a Project**: Comment your project idea—be it beginner-friendly or advanced.
2. **Build & Share**: If you complete a project, reply to the original comment, share your experience, and attach your source code.
3. **Explore**: Looking for ideas? Check out Al Sweigart's ["The Big Book of Small Python Projects"](https://www.amazon.com/Big-Book-Small-Python-Programming/dp/1718501242) for inspiration.
## Guidelines:
* Clearly state the difficulty level.
* Provide a brief description and, if possible, outline the tech stack.
* Feel free to link to tutorials or resources that might help.
# Example Submissions:
## Project Idea: Chatbot
**Difficulty**: Intermediate
**Tech Stack**: Python, NLP, Flask/FastAPI/Litestar
**Description**: Create a chatbot that can answer FAQs for a website.
**Resources**: [Building a Chatbot with Python](https://www.youtube.com/watch?v=a37BL0stIuM)
# Project Idea: Weather Dashboard
**Difficulty**: Beginner
**Tech Stack**: HTML, CSS, JavaScript, API
**Description**: Build a dashboard that displays real-time weather information using a weather API.
**Resources**: [Weather API Tutorial](https://www.youtube.com/watch?v=9P5MY_2i7K8)
## Project Idea: File Organizer
**Difficulty**: Beginner
**Tech Stack**: Python, File I/O
**Description**: Create a script that organizes files in a directory into sub-folders based on file type.
**Resources**: [Automate the Boring Stuff: Organizing Files](https://automatetheboringstuff.com/2e/chapter9/)
Let's help each other grow. Happy
/r/Python
https://redd.it/1igbnik
# Weekly Thread: Project Ideas 💡
Welcome to our weekly Project Ideas thread! Whether you're a newbie looking for a first project or an expert seeking a new challenge, this is the place for you.
## How it Works:
1. **Suggest a Project**: Comment your project idea—be it beginner-friendly or advanced.
2. **Build & Share**: If you complete a project, reply to the original comment, share your experience, and attach your source code.
3. **Explore**: Looking for ideas? Check out Al Sweigart's ["The Big Book of Small Python Projects"](https://www.amazon.com/Big-Book-Small-Python-Programming/dp/1718501242) for inspiration.
## Guidelines:
* Clearly state the difficulty level.
* Provide a brief description and, if possible, outline the tech stack.
* Feel free to link to tutorials or resources that might help.
# Example Submissions:
## Project Idea: Chatbot
**Difficulty**: Intermediate
**Tech Stack**: Python, NLP, Flask/FastAPI/Litestar
**Description**: Create a chatbot that can answer FAQs for a website.
**Resources**: [Building a Chatbot with Python](https://www.youtube.com/watch?v=a37BL0stIuM)
# Project Idea: Weather Dashboard
**Difficulty**: Beginner
**Tech Stack**: HTML, CSS, JavaScript, API
**Description**: Build a dashboard that displays real-time weather information using a weather API.
**Resources**: [Weather API Tutorial](https://www.youtube.com/watch?v=9P5MY_2i7K8)
## Project Idea: File Organizer
**Difficulty**: Beginner
**Tech Stack**: Python, File I/O
**Description**: Create a script that organizes files in a directory into sub-folders based on file type.
**Resources**: [Automate the Boring Stuff: Organizing Files](https://automatetheboringstuff.com/2e/chapter9/)
Let's help each other grow. Happy
/r/Python
https://redd.it/1igbnik
YouTube
Build & Integrate your own custom chatbot to a website (Python & JavaScript)
In this fun project you learn how to build a custom chatbot in Python and then integrate this to a website using Flask and JavaScript.
Starter Files: https://github.com/patrickloeber/chatbot-deployment
Get my Free NumPy Handbook: https://www.python-engi…
Starter Files: https://github.com/patrickloeber/chatbot-deployment
Get my Free NumPy Handbook: https://www.python-engi…
Pyttings – A Minimalist Python Settings Manager Inspired by Django
I wanted to share Pyttings, a lightweight Python settings manager with namespacing, modular files, and automatic type parsing. It’s inspired by Django’s settings but designed to be minimal and flexible.
GitHub: https://github.com/ruitcatarino/pyttings
# What My Project Does
Pyttings simplifies application configuration by allowing you to:
Namespaced Settings: Use a prefix (e.g., `PYTTING_`) to avoid conflicts.
Custom Prefix: Change the prefix using
Modular Settings: Load settings from a module with `PYTTING_SETTINGS_MODULE`.
Environment Variables: Override settings easily, with automatic type parsing.
# Target Audience
Pyttings is production-ready and ideal for:
Developers who want a simple, minimal settings manager.
Applications that need modular, environment-based configurations.
Users looking for an alternative to `pydantic-settings` or Django-style settings.
# Comparison
Compared to Django’s settings, Pyttings is framework-agnostic and much lighter.
Compared to `pydantic-settings`, Pyttings has:
A smaller footprint – no external dependencies.
Minimalist design – no validation, just simple settings management.
Explicit and easy-to-use API – define settings as plain Python variables.
Would love your feedback! Let me know what you think or if you have suggestions.
/r/Python
https://redd.it/1iga8kx
I wanted to share Pyttings, a lightweight Python settings manager with namespacing, modular files, and automatic type parsing. It’s inspired by Django’s settings but designed to be minimal and flexible.
GitHub: https://github.com/ruitcatarino/pyttings
# What My Project Does
Pyttings simplifies application configuration by allowing you to:
Namespaced Settings: Use a prefix (e.g., `PYTTING_`) to avoid conflicts.
Custom Prefix: Change the prefix using
PYTTING_ENV_PREFIX.Modular Settings: Load settings from a module with `PYTTING_SETTINGS_MODULE`.
Environment Variables: Override settings easily, with automatic type parsing.
# Target Audience
Pyttings is production-ready and ideal for:
Developers who want a simple, minimal settings manager.
Applications that need modular, environment-based configurations.
Users looking for an alternative to `pydantic-settings` or Django-style settings.
# Comparison
Compared to Django’s settings, Pyttings is framework-agnostic and much lighter.
Compared to `pydantic-settings`, Pyttings has:
A smaller footprint – no external dependencies.
Minimalist design – no validation, just simple settings management.
Explicit and easy-to-use API – define settings as plain Python variables.
Would love your feedback! Let me know what you think or if you have suggestions.
/r/Python
https://redd.it/1iga8kx
GitHub
GitHub - ruitcatarino/pyttings: Python settings management with namespacing and modular files. Inspired by Django.
Python settings management with namespacing and modular files. Inspired by Django. - ruitcatarino/pyttings