Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

phpMyAdmin equivalent in python? [closed]

Is there a python equivalent of phpMyAdmin?

Here's why I'm looking for a python version of phpmyadmin: While I agree that phpmyadmin really rocks, I don't want to run php on my server. I'd like to move from apache2-prefork to apache2-mpm-worker. Worker blows the doors off of prefork for performance, but php5 doesn't work with worker. (Technically it does, but it's far more complicated.) The extra memory and performance penalty for having php on this server is large to me.

like image 986
Rob Powell Avatar asked Sep 26 '09 04:09

Rob Powell


People also ask

Can I use phpMyAdmin with Python?

You can use phpMyAdmin for python project, because phpMyAdmin is meant for MySQL databases. If you are using MySQL, then regardless of whether you are using PHP or python, you can use phpMyAdmin.

Is phpMyAdmin only for MySQL?

No. To use phpMyAdmin, you'll need a client (your local web browser), a web server, and a MySQL instance -- and those three can exist in any combination that works for you.


2 Answers

I don't think there is an alternative to phpMyAdmin. pythonMyAdmin doesn't seems mature.

The philosophy in python is to create the databease with the ORM and after to manage it through the web framework admin page (like the one in Django).

A lightweight alternative is using Flask and Flask-Admin with a SQLAlchemy model.

like image 26
Alexis Benoist Avatar answered Oct 02 '22 14:10

Alexis Benoist


You can use phpMyAdmin for python project, because phpMyAdmin is meant for MySQL databases. If you are using MySQL, then regardless of whether you are using PHP or python, you can use phpMyAdmin.

like image 162
Graviton Avatar answered Oct 02 '22 16:10

Graviton