Quantcast
Channel: KomunitasWeb » python
Browsing all 10 articles
Browse latest View live

Links – Top 10 tips to a new django developer

New beginner gotcha, help yourself by reading this. Top 10 tips to a new django developer Related posts: PHP Tips and Tricks How to Reset Django Admin Password Related posts: PHP Tips and Tricks How to...

View Article



[Link] MongoEngine

MongoEngine is a Document-Object Mapper for working with MongoDB from Python. It has similar API with Django ORM. Related posts: MongoDB Basic Operations [Link] Django Advent Beginner Step Into MongoDB...

View Article

10 Django Apps I Can’t Live Without

I love Django pluggable applications. Basically you just need to install the application, and you’re done. How many hours do you spend to create registration system for your new project? Well, in...

View Article

Django 101

Django has excellent documentation, and it’s great place to get started if you want to learn about Django framework. The second place maybe this great Django book. I also found lot of django tutorials...

View Article

Dynamic Module Loading in Python from a Directory

I have a case which need dynamic module loading from a directory. I found solution from stackoverflow that work for me and decide to share it here. Dynamic module loading in python : 1 2 for module in...

View Article


Getting Started With Django-CMS

Django CMS is content management system built in Django. You can extend the CMS via plugins, and there are already some plugins/extensions you can use or you can write custom plugin/extension for your...

View Article

How to Reset Django Admin Password

There is a time when I forgot my password for Django admin. You can create new one using createsuperuser, but if you want to reset your available account you can use django shell : python manage.py...

View Article

Handling 404 Page on FeinCMS

If you add dynamic content such as FeinCMS navigation in your 404 page then you need custom 404 handler. Create custom views for 404 page. from django.shortcuts import render_to_response from...

View Article


How to Programmatically Post to Facebook Wall

If you need to automatically publish something on your facebook wall or facebook pages wall, you can follow these steps: Get your Facebook App Id and App Secret You can get them from your facebook app,...

View Article


snippet : Generate n Length Random String using Python

I always forget stuff, so I’ll start to post my snippet here. Generate n length random string 1 2 3 4 5 6 import random   def random_string(n): """ Create n length random string """ code =...

View Article
Browsing all 10 articles
Browse latest View live




Latest Images