<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>KomunitasWeb &#187; python</title>
	<atom:link href="http://komunitasweb.com/tag/python/feed/" rel="self" type="application/rss+xml" />
	<link>http://komunitasweb.com</link>
	<description>Gilang Chandrasa&#039;s personal website. Talking about Python, Django, PHP, jQuery, and everything else about the web.</description>
	<lastBuildDate>Mon, 31 Oct 2011 14:51:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>snippet : Generate n Length Random String using Python</title>
		<link>http://komunitasweb.com/2011/09/snippet-generate-n-length-random-string-using-python/</link>
		<comments>http://komunitasweb.com/2011/09/snippet-generate-n-length-random-string-using-python/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 06:25:51 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[CodeLog]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=980</guid>
		<description><![CDATA[I always forget stuff, so I&#8217;ll start to post my snippet here. Generate n length random string 1 2 3 4 5 6 import random &#160; def random_string&#40;n&#41;: &#34;&#34;&#34; Create n length random string &#34;&#34;&#34; code = ''.join&#40;&#91;random.choice&#40;'abcdefghijklmnoprstuvwyxzABCDEFGHIJKLMNOPRSTUVWXYZ0123456789'&#41; for i in range&#40;n&#41;&#93;&#41; return code Related posts:Django Tutorial &#8211; Simple Notes Application PHP Tips and Tricks [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2010/02/django-tutorial-simple-notes-application/' rel='bookmark' title='Django Tutorial &#8211; Simple Notes Application'>Django Tutorial &#8211; Simple Notes Application</a></li>
<li><a href='http://komunitasweb.com/2009/04/php-tips-and-trick/' rel='bookmark' title='PHP Tips and Tricks'>PHP Tips and Tricks</a></li>
<li><a href='http://komunitasweb.com/2011/06/handling-404-page-on-feincms/' rel='bookmark' title='Handling 404 Page on FeinCMS'>Handling 404 Page on FeinCMS</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2011/09/snippet-generate-n-length-random-string-using-python/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Programmatically Post to Facebook Wall</title>
		<link>http://komunitasweb.com/2011/07/how-to-programmatically-post-to-facebook-wall/</link>
		<comments>http://komunitasweb.com/2011/07/how-to-programmatically-post-to-facebook-wall/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 04:59:27 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[CodeLog]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=907</guid>
		<description><![CDATA[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, if you don&#8217;t have any then you can go to this page https://developers.facebook.com/apps and create new application. Grant permission [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2009/04/linux-commands-you-need-to-know-as-web-developer/' rel='bookmark' title='Linux Commands You Need to Know as Web Developer'>Linux Commands You Need to Know as Web Developer</a></li>
<li><a href='http://komunitasweb.com/2011/09/jack-the-sailor-alpha-release/' rel='bookmark' title='Jack the Sailor Alpha Release'>Jack the Sailor Alpha Release</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2011/07/how-to-programmatically-post-to-facebook-wall/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Handling 404 Page on FeinCMS</title>
		<link>http://komunitasweb.com/2011/06/handling-404-page-on-feincms/</link>
		<comments>http://komunitasweb.com/2011/06/handling-404-page-on-feincms/#comments</comments>
		<pubDate>Sun, 05 Jun 2011 03:42:58 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=863</guid>
		<description><![CDATA[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 django.template import RequestContext from feincms.module.page.models import Page &#160; def page_not_found&#40;request, template_name='404.html'&#41;: page = Page.objects.best_match_for_request&#40;request&#41; return render_to_response&#40;template_name, &#123;'feincms_page' : page&#125;, context_instance=RequestContext&#40;request&#41;&#41; In urls.py add the following [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2010/11/getting-started-with-django-cms/' rel='bookmark' title='Getting Started With Django-CMS'>Getting Started With Django-CMS</a></li>
<li><a href='http://komunitasweb.com/2010/02/django-tutorial-simple-notes-application/' rel='bookmark' title='Django Tutorial &#8211; Simple Notes Application'>Django Tutorial &#8211; Simple Notes Application</a></li>
<li><a href='http://komunitasweb.com/2010/09/a-quick-tutorial-on-django-mptt/' rel='bookmark' title='A Quick Tutorial on Django MPTT'>A Quick Tutorial on Django MPTT</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2011/06/handling-404-page-on-feincms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Reset Django Admin Password</title>
		<link>http://komunitasweb.com/2011/05/how-to-reset-django-admin-password/</link>
		<comments>http://komunitasweb.com/2011/05/how-to-reset-django-admin-password/#comments</comments>
		<pubDate>Tue, 10 May 2011 02:38:57 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=816</guid>
		<description><![CDATA[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 shell Now, get your account and set new password. from django.contrib.auth.models import User &#160; user = User.objects.get&#40;username='admin'&#41; user.set_password&#40;'new_password'&#41; user.save&#40;&#41; [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2010/06/sending-email-using-gmail-account-in-django/' rel='bookmark' title='Sending Email Using Gmail Account in Django'>Sending Email Using Gmail Account in Django</a></li>
<li><a href='http://komunitasweb.com/2010/02/django-tutorial-simple-notes-application/' rel='bookmark' title='Django Tutorial &#8211; Simple Notes Application'>Django Tutorial &#8211; Simple Notes Application</a></li>
<li><a href='http://komunitasweb.com/2010/11/getting-started-with-django-cms/' rel='bookmark' title='Getting Started With Django-CMS'>Getting Started With Django-CMS</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2011/05/how-to-reset-django-admin-password/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Getting Started With Django-CMS</title>
		<link>http://komunitasweb.com/2010/11/getting-started-with-django-cms/</link>
		<comments>http://komunitasweb.com/2010/11/getting-started-with-django-cms/#comments</comments>
		<pubDate>Sun, 21 Nov 2010 07:54:18 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=719</guid>
		<description><![CDATA[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 specific need. I&#8217;ll walk you through from installing to writing your first page. So, let&#8217;s go. Ingredient : Django 1.2.3 Django-CMS trunk [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2011/06/handling-404-page-on-feincms/' rel='bookmark' title='Handling 404 Page on FeinCMS'>Handling 404 Page on FeinCMS</a></li>
<li><a href='http://komunitasweb.com/2010/09/a-quick-tutorial-on-django-mptt/' rel='bookmark' title='A Quick Tutorial on Django MPTT'>A Quick Tutorial on Django MPTT</a></li>
<li><a href='http://komunitasweb.com/2010/11/django-and-tinymce/' rel='bookmark' title='Django and TinyMCE'>Django and TinyMCE</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2010/11/getting-started-with-django-cms/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Dynamic Module Loading in Python from a Directory</title>
		<link>http://komunitasweb.com/2010/09/dynamic-module-loading-in-python-from-a-directory/</link>
		<comments>http://komunitasweb.com/2010/09/dynamic-module-loading-in-python-from-a-directory/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 05:11:30 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[CodeLog]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=669</guid>
		<description><![CDATA[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 list&#40;pkgutil.iter_modules&#40;&#91;&#34;plugins&#34;&#93;&#41;&#41;: __import__&#40;&#34;plugins.%s&#34; % module&#91;1&#93;, fromlist=&#91;&#34;&#34;&#93;&#41; If you have better solution, please let me know. Thanks. Related posts:Python [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2010/01/python-reading-list/' rel='bookmark' title='Python Reading List'>Python Reading List</a></li>
<li><a href='http://komunitasweb.com/2011/09/snippet-generate-n-length-random-string-using-python/' rel='bookmark' title='snippet : Generate n Length Random String using Python'>snippet : Generate n Length Random String using Python</a></li>
<li><a href='http://komunitasweb.com/2011/06/how-to-install-osqa-in-ubuntu-server/' rel='bookmark' title='How to Install OSQA in Ubuntu Server'>How to Install OSQA in Ubuntu Server</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2010/09/dynamic-module-loading-in-python-from-a-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Django 101</title>
		<link>http://komunitasweb.com/2010/02/django-101/</link>
		<comments>http://komunitasweb.com/2010/02/django-101/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 13:50:13 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=446</guid>
		<description><![CDATA[Django has excellent documentation, and it&#8217;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 on other sites, but some of them are very old and they probably  don&#8217;t work with current Django stable version (1.1.1 [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2009/03/komunitasweb-march-2009-summary/' rel='bookmark' title='KomunitasWeb March 2009 Summary'>KomunitasWeb March 2009 Summary</a></li>
<li><a href='http://komunitasweb.com/2010/02/10-django-apps-i-cant-live-without/' rel='bookmark' title='10 Django Apps I Can&#8217;t Live Without'>10 Django Apps I Can&#8217;t Live Without</a></li>
<li><a href='http://komunitasweb.com/2009/03/101-php-tutorials-for-php-programmer-wannabe/' rel='bookmark' title='101 PHP Tutorials for PHP Programmer Wannabe'>101 PHP Tutorials for PHP Programmer Wannabe</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2010/02/django-101/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>10 Django Apps I Can&#8217;t Live Without</title>
		<link>http://komunitasweb.com/2010/02/10-django-apps-i-cant-live-without/</link>
		<comments>http://komunitasweb.com/2010/02/10-django-apps-i-cant-live-without/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 06:49:39 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=448</guid>
		<description><![CDATA[I love Django pluggable applications. Basically you just need to install the application, and you&#8217;re done. How many hours do you spend to create registration system for your new project? Well, in Django you just need to use django-registration, set up the urls and everything is up and running. In this way you can save [...]


Related posts:<ol><li><a href='http://komunitasweb.com/2010/02/django-tutorial-simple-notes-application/' rel='bookmark' title='Django Tutorial &#8211; Simple Notes Application'>Django Tutorial &#8211; Simple Notes Application</a></li>
<li><a href='http://komunitasweb.com/2010/02/django-101/' rel='bookmark' title='Django 101'>Django 101</a></li>
<li><a href='http://komunitasweb.com/2010/06/receiving-email-using-appengine-and-django/' rel='bookmark' title='Receiving Email Using AppEngine and Django'>Receiving Email Using AppEngine and Django</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2010/02/10-django-apps-i-cant-live-without/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>[Link] MongoEngine</title>
		<link>http://komunitasweb.com/2010/02/link-mongoengine/</link>
		<comments>http://komunitasweb.com/2010/02/link-mongoengine/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 20:04:39 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[mongodb]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=403</guid>
		<description><![CDATA[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


Related posts:<ol><li><a href='http://komunitasweb.com/2011/06/mongodb-basic-operations/' rel='bookmark' title='MongoDB Basic Operations'>MongoDB Basic Operations</a></li>
<li><a href='http://komunitasweb.com/2010/02/link-django-advent/' rel='bookmark' title='[Link] Django Advent'>[Link] Django Advent</a></li>
<li><a href='http://komunitasweb.com/2010/06/beginner-step-into-mongodb/' rel='bookmark' title='Beginner Step Into MongoDB'>Beginner Step Into MongoDB</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2010/02/link-mongoengine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Links &#8211; Top 10 tips to a new django developer</title>
		<link>http://komunitasweb.com/2010/01/links-top-10-tips-to-a-new-django-developer/</link>
		<comments>http://komunitasweb.com/2010/01/links-top-10-tips-to-a-new-django-developer/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 11:07:28 +0000</pubDate>
		<dc:creator>Gilang Chandrasa</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://komunitasweb.com/?p=380</guid>
		<description><![CDATA[New beginner gotcha, help yourself by reading this. Top 10 tips to a new django developer Related posts:PHP Tips and Tricks


Related posts:<ol><li><a href='http://komunitasweb.com/2009/04/php-tips-and-trick/' rel='bookmark' title='PHP Tips and Tricks'>PHP Tips and Tricks</a></li>
</ol>]]></description>
		<wfw:commentRss>http://komunitasweb.com/2010/01/links-top-10-tips-to-a-new-django-developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

