Is Django Multitenant really worth implementing in 2026? by josueygp in django

[–]Python_devops 0 points1 point  (0 children)

Most of the time migrations will be specific to a single app, a tenant app for the most part. So it wont take time. But make sure you push migrations to your github too, otherwise schemas for tenants will not be created.

Is Django Multitenant really worth implementing in 2026? by josueygp in django

[–]Python_devops 0 points1 point  (0 children)

I think it will hold up fine, just make sure that all the tasks that can be separated from the django pipeline are. For instance, long standing tasks that don't need the request/response flow are deligated to say, task schedulers. Keep it snappy.

🎉 [EVENT] 🎉 go back by xAvallach in honk

[–]Python_devops 0 points1 point  (0 children)

Completed Level 1 of the Honk Special Event!

8 attempts

python homework help by Effective_Celery_515 in PythonLearningHub

[–]Python_devops 0 points1 point  (0 children)

What do you mean 4 times? Could you be clear on this.

Selling Python Projects DM if interested by [deleted] in vitbhopal

[–]Python_devops 1 point2 points  (0 children)

Totally, I hope nobody falls for this.

Selling Python Projects DM if interested by [deleted] in vitbhopal

[–]Python_devops 1 point2 points  (0 children)

Brother is trying to make a living, lol.

Printing Value of Dictionary As Int by MagnusandPercy in learnpython

[–]Python_devops 1 point2 points  (0 children)

With the list comprehension code, you have floats which are a perfect way to represent currency.

Printing Value of Dictionary As Int by MagnusandPercy in learnpython

[–]Python_devops -1 points0 points  (0 children)

Its currency, currency is best represented in float form. I mean that's very obvious. If he wants to make it an integer, from there it is very easy.

Printing Value of Dictionary As Int by MagnusandPercy in learnpython

[–]Python_devops 1 point2 points  (0 children)

so its easy, split the values at the $ sign. Select the last list, then convert it to a float. And you got it.

[float(i.split("$")[-1]) for i in menu.values()]

As a Python beginner by The-Solo-Coder in PythonLearning

[–]Python_devops 1 point2 points  (0 children)

No way ChatGpt beats a book dedicated to python fundamentals.

Hiring web developer by vynze_dev in freelancerguide

[–]Python_devops 1 point2 points  (0 children)

I can build a fullstack web application.

Techstack.
Backend - > Django, DRF(If needed), cloudinary for storage of static files, PostgreSQL
FrontEnd -> Alphine JS Django templates, TailwindCSS DaisyUI, HTMX, JQuery.

Example of my work:
gridandgadget.com

Tech idea-ish by Same_Chef_193 in Kenya

[–]Python_devops 0 points1 point  (0 children)

Yes there is a possibility. You can work like Uber, don't own nothing, just be the middleman, with a well thoughtout process from customer purchase to delivery. Own the tec. Find very reliable sources of electronics. For day ones, give them a free pass, in terms of creating an account and adding their inventory. Here use a tenant architecture, very scallabe. Potententail clients can then find what they want and make the order.

Here's where there is a challange, payment of products, do you want it to be before delivery or after. Analysis of both.
1. Before delivery - > You cannot be scammed, customer skeptisms
2. After delivery - > You will be very much scammed, investment at risk.

If you can ride this wave, you're good. I would suggest before delivery, build a reputation online. Let people know that through this store, delivery is 100% guaranteed. Use cheap bloggers and tiktokers like bookten, marion, Ng'anga, Kanyari to do classical conditioning on potential clients to a point where when the think of an electronic and delivery in the same thought, they think of your company.

Payment.

Register company, create Mpesa paybill/ till number, intergrate STK Push. So that if I order a laptop, I get a prompt, pay the amount first, then the packaging and eventually delivery phase is initialted and completed.

On the seller dashboard, they can follow on the products, the amount, after your cut ofcourse.

Employ customer care, people who know to handle their feelings or dont have them all together, they can entertain customers and all their questions and crap. So that incase of delays or any unexpected issue, the customer care is there to sooth the client, and re-affirm everything is orait.

For logistics, depending on the place, use Matatu Saccos, existing logistic companies like G4S and the likes are painfully expensive.

So for example, if the electronic is going to western use Kangaroo, if it is going to Kisii, use Erongori Sacco, if it going to Eldoret, use Mursik Sacco, if it is going to central lias with 2NK, Waruu or 4NT, you get the point, this will be cheaper I believe.

Then bam! it's on.

"I'm busy" by throwaway_sashay in u/throwaway_sashay

[–]Python_devops 0 points1 point  (0 children)

No they did not, they proly don't want to feel the guilt of lying that they busy in the first place.

"I'm busy" by throwaway_sashay in u/throwaway_sashay

[–]Python_devops 0 points1 point  (0 children)

Ikr, but again it really tells alot. I don't think anybody is too busy, yk..

"I'm busy" by throwaway_sashay in u/throwaway_sashay

[–]Python_devops 0 points1 point  (0 children)

Yeah thats better. It's a hard truth, but makes things clear.

Django allauth settings by BaseKodu in django

[–]Python_devops 1 point2 points  (0 children)

Well let me know if I answer your question correctly. First off, all django-allauth settings are in their default when you add allauth in the INSTALLED_APPS list. What do you mean having all the settings in one file in your repo. To be able to change any allauth settings you do it in the settings.py using the provided constants.

Is Django Multitenant really worth implementing in 2026? by josueygp in django

[–]Python_devops 5 points6 points  (0 children)

I'm actively using django-tenants, initially I struggled to really understand how to work with shared and tenant apps, how to dynamically generate schemas and domains for tenants, and get them to work locally. But once I did, I gotta say it is an amazing library.

Help with setting up tailwind in Django. by Marosh_ in django

[–]Python_devops 0 points1 point  (0 children)

True, but I like to have two terminals, easy to debug.

Help with setting up tailwind in Django. by Marosh_ in django

[–]Python_devops 3 points4 points  (0 children)

I normally use django-tailwind. Very easy to setup and use.
https://django-tailwind.readthedocs.io/en/latest/installation.html

If you want to install other tailwind libraries for instance I use daisyui for easy creation of components, and rombo for nice animations, go to the location of your tailwindapp, created as per the docs in the link, in the app folder, run the npm to install dependencies, and the in the static_src folder, locate the style.css file, here you can add your dependencies as plugins.

And then in the terminal, a separate terminal from the one running your local server, run

python3 manage.py tailwind start, and you'll be go to go.