Description: Binary converter with Python.
Showing posts with label python. Show all posts
Showing posts with label python. Show all posts
Wednesday, February 29, 2012
Python - HTTP Server Information
Description: This Python script will show HTTP information on target host.
Monday, February 27, 2012
Sunday, February 26, 2012
Friday, February 24, 2012
Online Python Tutor
![]() |
| Online Python Tutor |
Situs Online Python Tutor adalah situs yang dibuat MIT dan merupakan situs untuk melakukan visualisasi kode Python yang dieksekusi oleh komputer misalnya adalah bagaimana variabel ditempatkan pada stack atau bagaimana visualiasi link pada heap. Sehingga memudahkan untuk mempelajari computer programming khususnya bahasa pemrograman Python baik untuk Python Web Development atau Python GUI Development
Wednesday, February 15, 2012
Python - Directory Folder Scanner
My old Python script. I created this script to list all files in directory folders. It work similar to 'ls' command in Linux.
Sunday, September 11, 2011
Python - Count Feedburner's Subscriber
Summary: Python script to count subsriber from Feedburner. Before run this script, Feedburner awareness API must be activated. This is script is inspired by Eric Wendelin.
#!/usr/bin/env python
# kuntoaji.blogspot.com
# IMPORTANT: Feedburner awareness API must be activated
# Replace with your own name
feedburner_name = "railsmine"
import urllib
from xml.dom import minidom
try:
dom = minidom.parse(urllib.urlopen('https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri='+feedburner_name))
entry = dom.getElementsByTagName('entry')[0]
count = entry.getAttribute('circulation')
print "total subscriber:",count
except:
print "Oops! Something went wrong. Check your feedburner's name or your internet connection."
Subscribe to:
Posts (Atom)
