Rss Feed
Tweeter button
Facebook button
Technorati button
Reddit button
Myspace button
Linkedin button
Webonews button
Delicious button
Digg button
Flickr button
Stumbleupon button
Newsvine button
Youtube button

Home » Python

SSHController.py – Skrip Python untuk koneksi SSH

Intipadi.com – Ada sebuah project yang sedang dirancang oleh intipadi dengan bahasa python. Project ini membutuhkan fitur untuk terkoneksi secara secure ke server dengan basis keamanan SSH. Nah, adakah class python yang telah dikembangkan untuk kebutuhan ini? Adalah SSHController.py, sebuah class python untuk koneksi SSH yang di buat oleh Corey Goldberg. Dependensinya juga cukup lumrah, cukup... 

darkjumper – Python Blind SQL Injection tools

Intipadi.com – Telah direlease darkjumper versi ke 5 oleh my brother gunslinger dengan pengembangan 2 dari darkjumper versi 4. Fungsi – fungsi tool ini terfokus pada penetrasi terhadap suatu server shared hosting, antara lain: 1. User enumeration 2. Scan sqli, blind sqli, lfi dan rfi pada tiap web yang dihost di server yang sama 3. Scanning CGI dan struktur path umum web 4. Port Scan AKPC_IDS... 

Membuat Aplikasi GUI sederhana dengan Python-QT

intipadi.com – KDE users love the look of all those pretty applications. The key is the toolkit KDE uses: Qt. Qt’s Python bindings — called Python-Qt — make it easy to build up a good-looking application quickly. The best way to get Python-Qt is via your distro: for instance, on Ubuntu, look for the package called python-qt4. To install from source, follow the links at Installing... 

MetaPython 0.2.2 with Hygienic Macros

In my ever-expanding quest to, as @jgustak recently tweeted, “introduce evil to Python to prevent even scarier evil,” I have released MetaPython 0.2.2 Once again, if you aren’t familiar with MetaPython, a good place to start is the tutorialwhich walks you through the construction of a macro-ized collections.namedtuple from the Python 2.6 standard library. If you already know MetaPython,... 

MetaPython 0.2 Release

For those intrepid souls who are interested in generating Python code from the macros and code quoting facilities of MetaPython, I have spun a new release. If you aren’t familiar with MetaPython, a good place to start is the tutorial, which walks you through the construction of a macro for generating a macro-ized version of collections.namedtuple from the Python 2.6 standard library. If you... 

MetaPython Presentation

Last night at the Python Atlanta meetup I gave a brief talk on MetaPython, including the motivations for doing something so profane as adding macros and code quoting to Python. The video is on blip.tv and you can find the slides on the MetaPython.org Enjoy! AKPC_IDS += "279,";Popularity: 1% [?] [Translate]  Read More →

Announcing MetaPython – Macros for Python

As I mentioned in my last post, I have been considering writing some version of macros for Python and was looking for use cases. Well, having gotten the use cases I so desired from my wonderful commenters, I went ahead and put together an import hook and Google Code project that I’m calling MetaPython — all just in time for PyCon! (I have no talks, but I will be there, and would love to have... 

Python Macros?

I’ve been thinking a bit about macros and what use they might be in Python. Basically, I was contemplating writing an import hook that would allow you to use code quoting and unquoting and stuff for your Python modules. My motive was just that Lisp people seem to rave about how awesome macros are all the time, so I figured they must be cool. As I sat down to actually start figuring out what...