pystatgrab Memo

0

Pystatgrab is the python binding for the libstatgrab that allow to get statistical informations about you system like cpu load, filesystem io, network io etc..

It works only for linux, that why I recommend you to take a look at psutil which works on both Linux, Windows and OSX but also provides a More >

pydmtx Memo

0

pydmtx is a module that allow to decode and encode 2 Dimentional barcodes also known as Data Matrix barcodes(or just matrix barcode).

Note: pydmtx does not work for the matrix barcode system developped by google for Android (which can be recognized by the 3 black squares, in the corners of the More >

Memo Proxy in Python + Tor

0

  • In bash

    The more dirty way to use proxy in python is to instanciate it as environment variable in bash and then launch python. (I definitely not encourage this method).

    $ http_proxy="http://www.someproxy.com:port" $ export http_proxy $ python
  • Using os module

    This method is quite similar to

More >

python-gammu SMS Listener

0

The idea of SMSListener is using python-gammu, be able to know when a sms is received. This script reflect the behavior of my phone which can vary from another one. So all the script is made to work with my phone and it can need changes to work with another. For instance the field “UnRead” of More >

python-gammu Memo

1
  • Import gammu module import gammu

 

  • Initiate connection to the phone using default file configuration “~/.gammurc” sm = gammu.StateMachine() sm.ReadConfig() sm.Init()

 

  • Send SMS message = { 'Text': 'python-gammu testing message', 'SMSC': {'Location': 1}, 'Number': More >

MouseTracker in Python (using pyHook)

0

With pyHook, you can grab keyboard events, but you can also grab mouse event and know everytime where the cursor is which buttons were clicked etc.

So I wrote a quick script which show in real-time the mouse cursor position. Of course we could do some much more with the possibilities offered by More >

Smart Keylogger in Python (for Windows)

0

Since I have discovered the pyHook module for Windows, I keeped in mind the idea to do a keylogger. I finally found the time to do it and I will show what I have done which is as small as efficient.

The mechanism is quite easy, pyHook once launched grab all input events, and you need aside More >

LyricsTagger

0

LyricsTagger is a software a made to tag lyrics into my mp3′s. Why I did it ? Simple I have not found any software that do it by an automated manner with a good enough efficiency especially for unknown artists.

I wrote this software in python using Qt and mutagen which allow id3 tags manipulation More >

Nmon: Network Monitor

0

Nmon is a Network Monitor has is name suggest it. It is based on the Nmap python module. Nmon is provided as a python module with the aim to be used by anothers scripts or modules. The idea is to provide in real-time a map of the network. Indeed a script that use this module can know More >

Webcam Stream on HTTP Server in python

0

I wanted to post a script to show webcam stream on a web page with a HTTP server. I did wrote this script it has originally been written by Don Kimber, but I have modified it to make it as simple as possible. The script is articuled around a HTML file that embed a simple “a” tag that will be More >

Go to Top