3

I am used to developing application using CodeIgniter (PHP), I would like to know is there any framework as flexible as CodeIgniter in python 3.X? Thanks.

2 Answers 2

2

Check out Bottle (runs on Python 3 since version 0.5), CherryPy, (since 3.2) and Pyramid (in 1.3, out in alpha at the moment).

The are all small flexible frameworks. And I think they all use MVC too, like CodeIgniter.

Sign up to request clarification or add additional context in comments.

1 Comment

as far as I know, bottle and cherrypy is micro-framework. they don't have MVC pattern. But it is still possible to have such a MVC in bottle. This one is an example: github.com/goFrendiAsgard/kokoropy
2

We are on the same boat. And I think the answer is no, there aren't (yet). I am also a PHP coder, and very familiar with CodeIgniter. Nowadays, people move to a "better" framework called Laravel. It has composer and namespace support.

For me, both of the features (namespace and composer) sounds like python's namespace and easy_install. So moving to python is a right decision (I hope)

As I can't find any framework which is as easy as CodeIgniter in both, python and PHP realm. I try to make one here https://github.com/goFrendiAsgard/kokoropy. It is still in the early stage of development, and it has CodeIgniter like design. Maybe it will also be useful for you.

1 Comment

Good job, goFrendiAsgard! I am also looking for a CodeIgniter-like framework written in python!

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.