Pyramid framework settings in eclipse (aptana studio)
How can i set up Pyramid Framework 1.3 in Eclipse or in Aptana Studio 3? Sure, IDE is very important in software development(debugging, code assist, organize imports etc.). You can code python in...
View ArticleDebug Pyramid projects through eclipse (aptana studio)
In my previous post i wrote pyramid framework settings in eclipse (aptana studio). How can i debug pyramid projects through eclipse (aptana studio)? When you give “–reload” parameter in your project...
View ArticlePyramid framework tips : Mako Templates settings
In Pyramid framework you can use the mako templates. In development.ini and production.ini: [app:main] ... # mako template settings mako.directories = YOUR_PROJECT_NAME:templates ... It is better to...
View ArticlePyramid framework tips : Beaker session factory settings
In Pyramid framework there is default session factory as shown below: # default session factory, not secure, use pyramid beaker add-on from pyramid.session import UnencryptedCookieSessionFactoryConfig...
View ArticlePyramid framework tips : Flash messages
In Pyramid Applications you can set Flash messages in sessions. To use flash messaging, you must enable a session factory. For pyramid_beaker add-on: Pyramid framework tips : Beaker session factory...
View ArticlePyramid framework tips: Form validation
For form validation in pyramid framework there is FormEncode package. FormEncode is a validation and form generation package. pyramid_simpleform is a add-on for pyramid framework and uses FormEncode....
View ArticlePyramid framework tips : MySQL Database settings
Installing MySQL DB-API driver on Kubuntu 11.10 in Console: sudo apt-get install libmysqlclient-dev sudo apt-get install python-dev In virtual env of your Pyramid installation: $ easy_install...
View ArticlePyramid framework tips : WebHelpers html tags and Paginate
WebHelpers has many useful functions. WebHelpers html tags and paginate are very useful for Pyramid Applications.Some features are not compatible with Pyramid framework, please see documentations....
View ArticlePyramid web framework application: Customers
I’ve written a web application demo with pyramid web framework. Features : base CRUD functions, list, webhelpers paginate, search, sorting, session management, flash messages, form validation etc....
View Article