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/1e89aai
# 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/1e89aai
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
AWS EC2 + RDS + S3 = so expensive, even with zero users
Hey folks!
I launched my SaaS project(and it has zero user) an he is my monthly cost:
AWS
Relational Database ServiceUSD - 17.91
Elastic Compute CloudUSD - 10.71
Virtual Private CloudUSD - 6.82
Route 53USD - 0.51
Simple Storage Service - 0.03
Total: 35.98$
Mailgul(email notification):
35$ - 50k monthly emails 10 domains
So it comes down to \~$70/mon
Two thoughts:
1. I used AWS because I new how to set it up quickly.
2. Mailgun was recommend to me by a friend. I though my project will get users, but unfortunately it is not getting any. I'm switching to a cheaper plan that is 15$ per month now.
Can you please recommend what is cheaper alternatives out there. I now data bases could get expensive, but in case I even didn't git 100 users and I'm already paying so much.
Thank you.
/r/django
https://redd.it/1e8dkwd
Hey folks!
I launched my SaaS project(and it has zero user) an he is my monthly cost:
AWS
Relational Database ServiceUSD - 17.91
Elastic Compute CloudUSD - 10.71
Virtual Private CloudUSD - 6.82
Route 53USD - 0.51
Simple Storage Service - 0.03
Total: 35.98$
Mailgul(email notification):
35$ - 50k monthly emails 10 domains
So it comes down to \~$70/mon
Two thoughts:
1. I used AWS because I new how to set it up quickly.
2. Mailgun was recommend to me by a friend. I though my project will get users, but unfortunately it is not getting any. I'm switching to a cheaper plan that is 15$ per month now.
Can you please recommend what is cheaper alternatives out there. I now data bases could get expensive, but in case I even didn't git 100 users and I'm already paying so much.
Thank you.
/r/django
https://redd.it/1e8dkwd
Reddit
From the django community on Reddit
Explore this post and more from the django community
Dont really know how to structure/organize templates + static files in project.
I feel so much pain and cringe with my spaghetti ui/template but-functioning-as-for-now code
Dont know how to Connect all this insights or ideas into a "structured way" of doing things in Django UI part.
I have 3 different layouts one is full width other is with a drawer another is without the drawer.
There are elements/components/ in tables or forms that may be shared across apps.
From a DX perspective for JS code sometimes i prever "intra-file" script tag. Sometimes add it via Django Template Inheritance block feels ok. But also use webpack and may import js code directly to webpack entrypoint/entryfile.
My new best friend htmx and template-partials with or without the Carlton Gibson package
I would love if django provided an opinionated way of writing and storing html/js code and files. Taking into consideration the simple but diverse a fully functiong web Application could be in terms of ui related code and how easy it is to constantly repeat yourself and store code in all Parts of the project.
/r/django
https://redd.it/1e8eikq
I feel so much pain and cringe with my spaghetti ui/template but-functioning-as-for-now code
Dont know how to Connect all this insights or ideas into a "structured way" of doing things in Django UI part.
I have 3 different layouts one is full width other is with a drawer another is without the drawer.
There are elements/components/ in tables or forms that may be shared across apps.
From a DX perspective for JS code sometimes i prever "intra-file" script tag. Sometimes add it via Django Template Inheritance block feels ok. But also use webpack and may import js code directly to webpack entrypoint/entryfile.
My new best friend htmx and template-partials with or without the Carlton Gibson package
I would love if django provided an opinionated way of writing and storing html/js code and files. Taking into consideration the simple but diverse a fully functiong web Application could be in terms of ui related code and how easy it is to constantly repeat yourself and store code in all Parts of the project.
/r/django
https://redd.it/1e8eikq
GitHub
GitHub - carltongibson/django-template-partials: Reusable named inline partials for the Django Template Language.
Reusable named inline partials for the Django Template Language. - carltongibson/django-template-partials
I created a datestamp tool to add datestamps to your photos from metadata
# What My Project Does
I created a tool that extracts the date a photo was taken from the metadata and adds the datestamp to the photo. I was motivated to create this project, because I saw someone asking for a tool like this on a photography subreddit.
Flask was my web library of choice and pillow was used to extract metadata and edit the images. The frontend is a barebones HTML form without CSS and JavaScript. I am hosting this app on pythonanywhere.
# Target Audience
People who feel nostalgic about their old photos.
# Comparison
I haven't seen any web-hosted alternatives to this tool, but one possible option is to use the imagemagick CLI. My tool is more user friendly as it does not require the user to interact with a terminal application.
Repo: https://github.com/ch-iv/image-datestamp/
Website: https://datestamp.noivan.dev/
/r/Python
https://redd.it/1e82dqq
# What My Project Does
I created a tool that extracts the date a photo was taken from the metadata and adds the datestamp to the photo. I was motivated to create this project, because I saw someone asking for a tool like this on a photography subreddit.
Flask was my web library of choice and pillow was used to extract metadata and edit the images. The frontend is a barebones HTML form without CSS and JavaScript. I am hosting this app on pythonanywhere.
# Target Audience
People who feel nostalgic about their old photos.
# Comparison
I haven't seen any web-hosted alternatives to this tool, but one possible option is to use the imagemagick CLI. My tool is more user friendly as it does not require the user to interact with a terminal application.
Repo: https://github.com/ch-iv/image-datestamp/
Website: https://datestamp.noivan.dev/
/r/Python
https://redd.it/1e82dqq
GitHub
GitHub - ch-iv/image-datestamp: Adds datestamps to your images
Adds datestamps to your images. Contribute to ch-iv/image-datestamp development by creating an account on GitHub.
Building Fullstack Chatbot with PyTorch, NumPy, NLTK, and Next.js - Complete Tutorial in 2024
https://youtu.be/NoHtQiwoanA?si=SLxrKRPVXSwYq4ZX
/r/flask
https://redd.it/1e8c0nb
https://youtu.be/NoHtQiwoanA?si=SLxrKRPVXSwYq4ZX
/r/flask
https://redd.it/1e8c0nb
YouTube
Building AI Chatbot with PyTorch, NumPy, MongoDB, and Next.js - Complete Tutorial in 2024
Description:
In this tutorial, we will build a fullstack chatbot using modern technologies. We will leverage PyTorch for our deep learning model, NumPy for efficient numerical computations, NLTK for natural language processing, and Next.js for the frontend.β¦
In this tutorial, we will build a fullstack chatbot using modern technologies. We will leverage PyTorch for our deep learning model, NumPy for efficient numerical computations, NLTK for natural language processing, and Next.js for the frontend.β¦
Flask wont serve audio on iOS
Hey guys,
I made a translator app and it uses elevenlabs to generate tts, but for some reason it wont serve the audio to my iphone, but works literally everywhere else.
Please help!
thanksss
/r/flask
https://redd.it/1e874k8
Hey guys,
I made a translator app and it uses elevenlabs to generate tts, but for some reason it wont serve the audio to my iphone, but works literally everywhere else.
Please help!
thanksss
/r/flask
https://redd.it/1e874k8
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
Iβm thrilled to announce the release of my new Django package
π Introducing Django Data Seed: Your Solution for Database Test Data! πIβm thrilled to announce the release of my new Django package, Django Data Seed! π
This tool is designed to make the lives of developers easier by simplifying the process of populating databases with test data. Whether youβre working on a small project or a large-scale application, Django Data Seed helps you quickly generate realistic data for your development and testing needs.
With Django Data Seed, you can efficiently manage and populate your database with just a single command. It's perfect for ensuring that your applications are rigorously tested and ready for production.
I invite you to check out Django Data Seed on PyPI and GitHub:
π PyPI: https://pypi.org/project/django-data-seed/
π GitHub: https://github.com/rohith-baggam/django-data-seed
π Linkedin : https://www.linkedin.com/in/rohith-raj-baggam/
Thank you for your support, and I look forward to seeing how Django Data Seed can help streamline your development process! Keep an eye on the PyPI package for exciting new features in upcoming versions.
u/django u/python u/backenddevelopment u/djangoorms
/r/Python
https://redd.it/1e8e3hh
π Introducing Django Data Seed: Your Solution for Database Test Data! πIβm thrilled to announce the release of my new Django package, Django Data Seed! π
This tool is designed to make the lives of developers easier by simplifying the process of populating databases with test data. Whether youβre working on a small project or a large-scale application, Django Data Seed helps you quickly generate realistic data for your development and testing needs.
With Django Data Seed, you can efficiently manage and populate your database with just a single command. It's perfect for ensuring that your applications are rigorously tested and ready for production.
I invite you to check out Django Data Seed on PyPI and GitHub:
π PyPI: https://pypi.org/project/django-data-seed/
π GitHub: https://github.com/rohith-baggam/django-data-seed
π Linkedin : https://www.linkedin.com/in/rohith-raj-baggam/
Thank you for your support, and I look forward to seeing how Django Data Seed can help streamline your development process! Keep an eye on the PyPI package for exciting new features in upcoming versions.
u/django u/python u/backenddevelopment u/djangoorms
/r/Python
https://redd.it/1e8e3hh
PyPI
django-data-seed
A Django app to generate and seed database models with random data.
Activation Email
I am new to django and was working on a project and got to this error while I was trying to build the auth system. I tried to send a activation email to the mail in the registerd field but got this error in a file called app_settings.py it is related to the allauth package.
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/threading.py", line 1045, in _bootstrap_inner
self.run()
File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/threading.py", line 982, in run
self._target(*self._args, **self._kwargs)
File "/Users/Adwait/.local/share/virtualenvs/game_advisior-8eIvWGTq/lib/python3.11/site-packages/django/utils/autoreload.py", line 64, in wrapper
fn(*args, **kwargs)
File "/Users/Adwait/.local/share/virtualenvs/game_advisior-8eIvWGTq/lib/python3.11/site-packages/django/core/management/commands/runserver.py", line 125, in inner_run
autoreload.raise_last_exception()
File "/Users/Adwait/.local/share/virtualenvs/game_advisior-8eIvWGTq/lib/python3.11/site-packages/django/utils/autoreload.py", line 87, in raise_last_exception
raise _exception[1\]
File "/Users/Adwait/.local/share/virtualenvs/game_advisior-8eIvWGTq/lib/python3.11/site-packages/django/core/management/__init__.py", line 394, in execute
autoreload.check_errors(django.setup)()
File "/Users/Adwait/.local/share/virtualenvs/game_advisior-8eIvWGTq/lib/python3.11/site-packages/django/utils/autoreload.py", line 64, in wrapper
fn(*args, **kwargs)
File "/Users/Adwait/.local/share/virtualenvs/game_advisior-8eIvWGTq/lib/python3.11/site-packages/django/__init__.py", line 24, in setup
apps.populate(settings.INSTALLED_APPS)
File "/Users/Adwait/.local/share/virtualenvs/game_advisior-8eIvWGTq/lib/python3.11/site-packages/django/apps/registry.py", line 116, in populate
app_config.import_models()
File "/Users/Adwait/.local/share/virtualenvs/game_advisior-8eIvWGTq/lib/python3.11/site-packages/django/apps/config.py", line 269, in import_models
self.models_module = import_module(models_module_name)
\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^
File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/importlib/__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:\], package, level)
\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^
File "<frozen importlib._bootstrap>", line 1204, in _gcd_import
File "<frozen importlib._bootstrap>", line 1176, in _find_and_load
File "<frozen importlib._bootstrap>", line 1147, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 690, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 940, in exec_module
File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
File "/Users/Adwait/.local/share/virtualenvs/game_advisior-8eIvWGTq/lib/python3.11/site-packages/allauth/account/models.py", line
/r/django
https://redd.it/1e7xsj8
I am new to django and was working on a project and got to this error while I was trying to build the auth system. I tried to send a activation email to the mail in the registerd field but got this error in a file called app_settings.py it is related to the allauth package.
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/threading.py", line 1045, in _bootstrap_inner
self.run()
File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/threading.py", line 982, in run
self._target(*self._args, **self._kwargs)
File "/Users/Adwait/.local/share/virtualenvs/game_advisior-8eIvWGTq/lib/python3.11/site-packages/django/utils/autoreload.py", line 64, in wrapper
fn(*args, **kwargs)
File "/Users/Adwait/.local/share/virtualenvs/game_advisior-8eIvWGTq/lib/python3.11/site-packages/django/core/management/commands/runserver.py", line 125, in inner_run
autoreload.raise_last_exception()
File "/Users/Adwait/.local/share/virtualenvs/game_advisior-8eIvWGTq/lib/python3.11/site-packages/django/utils/autoreload.py", line 87, in raise_last_exception
raise _exception[1\]
File "/Users/Adwait/.local/share/virtualenvs/game_advisior-8eIvWGTq/lib/python3.11/site-packages/django/core/management/__init__.py", line 394, in execute
autoreload.check_errors(django.setup)()
File "/Users/Adwait/.local/share/virtualenvs/game_advisior-8eIvWGTq/lib/python3.11/site-packages/django/utils/autoreload.py", line 64, in wrapper
fn(*args, **kwargs)
File "/Users/Adwait/.local/share/virtualenvs/game_advisior-8eIvWGTq/lib/python3.11/site-packages/django/__init__.py", line 24, in setup
apps.populate(settings.INSTALLED_APPS)
File "/Users/Adwait/.local/share/virtualenvs/game_advisior-8eIvWGTq/lib/python3.11/site-packages/django/apps/registry.py", line 116, in populate
app_config.import_models()
File "/Users/Adwait/.local/share/virtualenvs/game_advisior-8eIvWGTq/lib/python3.11/site-packages/django/apps/config.py", line 269, in import_models
self.models_module = import_module(models_module_name)
\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^
File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/importlib/__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:\], package, level)
\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^
File "<frozen importlib._bootstrap>", line 1204, in _gcd_import
File "<frozen importlib._bootstrap>", line 1176, in _find_and_load
File "<frozen importlib._bootstrap>", line 1147, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 690, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 940, in exec_module
File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
File "/Users/Adwait/.local/share/virtualenvs/game_advisior-8eIvWGTq/lib/python3.11/site-packages/allauth/account/models.py", line
/r/django
https://redd.it/1e7xsj8
Reddit
From the django community on Reddit
Explore this post and more from the django community
Extracting data from (tricky) PDFs for Excel using Python (both API and DIY)
Hey Python learners, I'd like to share how to use AI (specifically Google's new Gemini model) to extract structured data into a CSV/XLSX format from PDFs.
I'm sharing this because most traditional solutions that don't use AI seem to fail for very complicated PDFs.
These docs covers how to do this entirely with an API, and the API github linked in the guide has further instructions on how you can do this whole process for yourself with Python with an LLM provider.
Have fun!
/r/Python
https://redd.it/1e8m8l2
Hey Python learners, I'd like to share how to use AI (specifically Google's new Gemini model) to extract structured data into a CSV/XLSX format from PDFs.
I'm sharing this because most traditional solutions that don't use AI seem to fail for very complicated PDFs.
These docs covers how to do this entirely with an API, and the API github linked in the guide has further instructions on how you can do this whole process for yourself with Python with an LLM provider.
Have fun!
/r/Python
https://redd.it/1e8m8l2
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
odex - python object index for fast, declarative retrieval
# What My Project Does
Odex provides a set-like collection called `IndexedSet` which allows for fast, declarative queries on native python objects:
from odex import IndexedSet, attr, and_
class X:
def __init__(self, a, b):
self.a = a
self.b = b
iset = IndexedSet(
[
X(a=1, b=4),
X(a=2, b=5),
X(a=2, b=6),
X(a=3, b=7),
],
indexes=["a"]
)
# Filter objects with SQL-like expressions:
iset.filter("a = 2 AND b = 5") == {X(a=2, b=5)}
/r/Python
https://redd.it/1e8o4jg
# What My Project Does
Odex provides a set-like collection called `IndexedSet` which allows for fast, declarative queries on native python objects:
from odex import IndexedSet, attr, and_
class X:
def __init__(self, a, b):
self.a = a
self.b = b
iset = IndexedSet(
[
X(a=1, b=4),
X(a=2, b=5),
X(a=2, b=6),
X(a=3, b=7),
],
indexes=["a"]
)
# Filter objects with SQL-like expressions:
iset.filter("a = 2 AND b = 5") == {X(a=2, b=5)}
/r/Python
https://redd.it/1e8o4jg
Reddit
From the Python community on Reddit: odex - python object index for fast, declarative retrieval
Explore this post and more from the Python community
Pilgram, a texting based idle MMO RPG
Pilgram is a telegram bot entirely built in python that lets you play a grimdark idle MMO RPG powered by AI.
In Pilgram you can go on endless quests, fight endless monsters, craft powerful artifacts, cast spells, join guilds & cults, find powerful loot & become the ultimate adventurer!
# What my project does
The bot provides a text interface with wich you can play an endless online idle loot based adventure game
# Target audience
RPG players will probably like it. It's a toy project that i initially made out of boredom, also it sounded cool. I kept developing it after it got a small community by adding requested features like guild taxes, combat & loot.
# Comparison
The game is kind of similar to a MUD (Multi User Dungeon) but it has idle game elements & Diablo style loot generation.
# More info
How is it infinite? The secret is AI. Every quest, event, monster & artifact in the game is generated by AI depending on the demand of the players, so in practice you'll never run out of new stuff to see.
The interface is exclusively text based, but the command interpreter i wrote is pretty easy to integrate in other places, even in GUIs if
/r/Python
https://redd.it/1e8pt2b
Pilgram is a telegram bot entirely built in python that lets you play a grimdark idle MMO RPG powered by AI.
In Pilgram you can go on endless quests, fight endless monsters, craft powerful artifacts, cast spells, join guilds & cults, find powerful loot & become the ultimate adventurer!
# What my project does
The bot provides a text interface with wich you can play an endless online idle loot based adventure game
# Target audience
RPG players will probably like it. It's a toy project that i initially made out of boredom, also it sounded cool. I kept developing it after it got a small community by adding requested features like guild taxes, combat & loot.
# Comparison
The game is kind of similar to a MUD (Multi User Dungeon) but it has idle game elements & Diablo style loot generation.
# More info
How is it infinite? The secret is AI. Every quest, event, monster & artifact in the game is generated by AI depending on the demand of the players, so in practice you'll never run out of new stuff to see.
The interface is exclusively text based, but the command interpreter i wrote is pretty easy to integrate in other places, even in GUIs if
/r/Python
https://redd.it/1e8pt2b
Reddit
From the Python community on Reddit: Pilgram, a texting based idle MMO RPG
Explore this post and more from the Python community
Wrote some absolutely atrocious code and Im kinda proud of it.
In a project I was working on I needed to take out a username from a facebook link. Say the input is: "https://www.facebook.com/some.username/" the output should be a string: "some.username". Whats funny is this is genuinely the first idea I came up with when faced with this problem.
Without further a do here is my code:
I know.
its bad.
/r/Python
https://redd.it/1e8p16u
In a project I was working on I needed to take out a username from a facebook link. Say the input is: "https://www.facebook.com/some.username/" the output should be a string: "some.username". Whats funny is this is genuinely the first idea I came up with when faced with this problem.
Without further a do here is my code:
def get_username(url): return url[::-1][1 : url[::-1].find("/", 1)][::-1]I know.
its bad.
/r/Python
https://redd.it/1e8p16u
500+ Python Questions Quiz
Compiled 500+ Python questions into a quiz. I'm trying to improve my understanding of Python so this was helpful.
Quiz
I'll keep refining the questions to make sure it covers all the important topics in Python.
If you come across a question whose answer you doubt, please leave a comment and I'll check it again. Any recommendations or changes, please let me know.
So what's your score?
PS. This was built for Applyre users, who might want to use it for interview prep.
/r/Python
https://redd.it/1e8ry4p
Compiled 500+ Python questions into a quiz. I'm trying to improve my understanding of Python so this was helpful.
Quiz
I'll keep refining the questions to make sure it covers all the important topics in Python.
If you come across a question whose answer you doubt, please leave a comment and I'll check it again. Any recommendations or changes, please let me know.
So what's your score?
PS. This was built for Applyre users, who might want to use it for interview prep.
/r/Python
https://redd.it/1e8ry4p
Automate job applications with Applyre AI
Applyre uses AI to search and apply for jobs automatically for you. Applyre will tailor your resume to each job that matches your preferences
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/1e90f3e
# 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/1e90f3e
I created a script that predicts Premier League football (soccer) results
Hi everyone,
I had a script that I made a while ago to predict football (soccer) results in the Premier League, and I've just made it into a webpage so everyone can use it.
Page: https://jimmyrustles.pythonanywhere.com/football
Github: https://github.com/sgriffin53/footballpredictorflask
It uses a Gaussian Naive Bayes model to predict results based on past data. It uses the data from the 2021-2024 seasons.
What My Project Does
It shows predictions for the next 30 days of football matches in the Premier League with predictions for scores for each match. The predictions are based on a probability model based on past performance. You can also input custom teams to see what the result would be in a match between them.
Target Audience (e.g., Is it meant for production, just a toy project, etc.
This is originally just for myself and my friend Jay. We've been using it to place accumulators on Premier League matches based on the predictions, only small longshot bets that would result in big payouts. We haven't won any money, but the bot has got a few 1 - 0 and 0 - 0 results correct in the time we've been using it. I made it into a Flask page so that everyone can use the predictions. It's intended
/r/Python
https://redd.it/1e8ym80
Hi everyone,
I had a script that I made a while ago to predict football (soccer) results in the Premier League, and I've just made it into a webpage so everyone can use it.
Page: https://jimmyrustles.pythonanywhere.com/football
Github: https://github.com/sgriffin53/footballpredictorflask
It uses a Gaussian Naive Bayes model to predict results based on past data. It uses the data from the 2021-2024 seasons.
What My Project Does
It shows predictions for the next 30 days of football matches in the Premier League with predictions for scores for each match. The predictions are based on a probability model based on past performance. You can also input custom teams to see what the result would be in a match between them.
Target Audience (e.g., Is it meant for production, just a toy project, etc.
This is originally just for myself and my friend Jay. We've been using it to place accumulators on Premier League matches based on the predictions, only small longshot bets that would result in big payouts. We haven't won any money, but the bot has got a few 1 - 0 and 0 - 0 results correct in the time we've been using it. I made it into a Flask page so that everyone can use the predictions. It's intended
/r/Python
https://redd.it/1e8ym80
Help: I am new to Django and I feel lost
I want to progress in my Python programming using Django. I feel stuck because I don't know where to source learning materials and there aren't many Django lovers where I am coming from and YouTube didn't offer much help.
I would appreciate it if I could get help and ideas here
/r/django
https://redd.it/1e90dax
I want to progress in my Python programming using Django. I feel stuck because I don't know where to source learning materials and there aren't many Django lovers where I am coming from and YouTube didn't offer much help.
I would appreciate it if I could get help and ideas here
/r/django
https://redd.it/1e90dax
Reddit
From the django community on Reddit
Explore this post and more from the django community
DRF Giveaway
https://www.udemy.com/course/the-complete-django-rest-framework-bootcamp-2024-latest/?couponCode=WEEKENDOFFER
/r/djangolearning
https://redd.it/1e8p2w4
https://www.udemy.com/course/the-complete-django-rest-framework-bootcamp-2024-latest/?couponCode=WEEKENDOFFER
/r/djangolearning
https://redd.it/1e8p2w4
Udemy
The Complete Django Rest Framework Bootcamp 2024 [Latest]
Master Django Rest Framework in 2024: A Comprehensive Bootcamp for Building Powerful APIs with Python
Protean - Opensource DDD/CQRS/ES Python Framework
**Protean is an open-source Python framework designed to build ambitious applications that scale and evolve.**
Sourcecode: [https://github.com/proteanhq/protean/](https://github.com/proteanhq/protean/)
Documentation is under construction and available at [https://docs.proteanhq.com/](https://docs.proteanhq.com/).
# What My Project Does
**Protean offers CQRS and Event-Sourcing tools and patterns for creating sustainable, domain-driven codebases.** It aims to tackle complexity in high-stakes domains and keep the codebase sustainable and maintainable.
At its core, Protean adopts a Domain-Driven Design (DDD) approach to development, supporting patterns to succinctly and precisely express your domain.
A Protean domain model sits at the center of the application. Infrastructure concerns like ORMs, API frameworks, and message brokers are plugged into it via configuration.
Protean has a ports-and-adapters architecture. When ready, developers can seamlessly plug technologies like databases, message brokers, and caches, and Protean will take care of the rest.
# Comparison
Protean is an alternative to Django but without the constraints that come with a monolithic system or full-stack frameworks. One can start with one domain hosted as one service but fragment the domain into multiple bounded contexts over time, deployed as microservices. Each piece of technology/infrastructure can be plugged in or swapped out with configuration.
# Target Audience
Protean is an ideal framework for:
* **Startups**: because they start small and want to get to market fast, and still want
/r/Python
https://redd.it/1e8v29e
**Protean is an open-source Python framework designed to build ambitious applications that scale and evolve.**
Sourcecode: [https://github.com/proteanhq/protean/](https://github.com/proteanhq/protean/)
Documentation is under construction and available at [https://docs.proteanhq.com/](https://docs.proteanhq.com/).
# What My Project Does
**Protean offers CQRS and Event-Sourcing tools and patterns for creating sustainable, domain-driven codebases.** It aims to tackle complexity in high-stakes domains and keep the codebase sustainable and maintainable.
At its core, Protean adopts a Domain-Driven Design (DDD) approach to development, supporting patterns to succinctly and precisely express your domain.
A Protean domain model sits at the center of the application. Infrastructure concerns like ORMs, API frameworks, and message brokers are plugged into it via configuration.
Protean has a ports-and-adapters architecture. When ready, developers can seamlessly plug technologies like databases, message brokers, and caches, and Protean will take care of the rest.
# Comparison
Protean is an alternative to Django but without the constraints that come with a monolithic system or full-stack frameworks. One can start with one domain hosted as one service but fragment the domain into multiple bounded contexts over time, deployed as microservices. Each piece of technology/infrastructure can be plugged in or swapped out with configuration.
# Target Audience
Protean is an ideal framework for:
* **Startups**: because they start small and want to get to market fast, and still want
/r/Python
https://redd.it/1e8v29e
GitHub
GitHub - proteanhq/protean: Pragmatic Framework for Ambitious Applications
Pragmatic Framework for Ambitious Applications. Contribute to proteanhq/protean development by creating an account on GitHub.
Want to contribute and learn from some django based mid sized projects.
I have been working in django DRF and react for couple of years. I hvae used vultr and aws for the deployments. However I am interestd to see how mid size projects are organized where there are more than 5-6 devs working on the same project. Would love to know if there is any open source project or if anyone want to let me see how they organize their code.
/r/django
https://redd.it/1e95rkk
I have been working in django DRF and react for couple of years. I hvae used vultr and aws for the deployments. However I am interestd to see how mid size projects are organized where there are more than 5-6 devs working on the same project. Would love to know if there is any open source project or if anyone want to let me see how they organize their code.
/r/django
https://redd.it/1e95rkk
Reddit
From the django community on Reddit
Explore this post and more from the django community
AWS EC2 Auto Scaling vs AWS ECS Fargate for Django
Which one would be more suitable for a site that has 2000 active users? and how much would it cost to use EC2 Auto Scaling vs ECS Fargate? please share your experience. I'm using Supbase database.
/r/django
https://redd.it/1e95eq4
Which one would be more suitable for a site that has 2000 active users? and how much would it cost to use EC2 Auto Scaling vs ECS Fargate? please share your experience. I'm using Supbase database.
/r/django
https://redd.it/1e95eq4
Reddit
From the django community on Reddit
Explore this post and more from the django community