From aca3ecdb5ccceafa995e6bf2005d42d083c07ef1 Mon Sep 17 00:00:00 2001 From: Laurent Ghigonis Date: Thu, 24 Oct 2013 23:48:13 +0200 Subject: move skylog to github https://github.com/looran/skylog git clone https://github.com/looran/skylog --- skylog/skylog.py | 60 -------------------------------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 skylog/skylog.py (limited to 'skylog/skylog.py') diff --git a/skylog/skylog.py b/skylog/skylog.py deleted file mode 100644 index 40f7020..0000000 --- a/skylog/skylog.py +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/env python - -# skylog.py v0.4 -# Logs skype users status changes to stdout in CSV format -# On startup all online users are added to CSV -# On startup, exit and local user status change, lines from simulated user -# "syslog-info" are added to CSV -# Format: 20130219-154801,Marimounette,OFFLINE -# Usage: python skylog.py >> skylog.csv & -# 2013, Laurent Ghigonis - -import Skype4Py -import time -import sys -import atexit - -do_exit = False - -def cb_exit(): - print sys.stderr, "cb_exit()" - print_csv("<<> sys.stderr, "cb_attachmentstatus: %s" % status - if status != Skype4Py.apiAttachSuccess: - print >> sys.stderr, "Disconnected from skype ! exiting" - do_exit = True - -def cb_userstatus(status): - print_csv("***skylog-info", status) - -def cb_onlinestatus(user, status): - print_csv(user.Handle, status) - -def print_csv(user, status): - t = time.strftime("%Y%m%d-%H%M%S", time.localtime()) - print "%s,%s,%s" % (t, user, status) - sys.stdout.flush() - -def print_online_users(skype): - for f in skype.Friends: - if f.OnlineStatus != Skype4Py.cusOffline: - print_csv(f.Handle, f.OnlineStatus) - -atexit.register(cb_exit) -skype = Skype4Py.Skype() -skype.RegisterEventHandler('AttachmentStatus', cb_attachmentstatus) -skype.RegisterEventHandler('UserStatus', cb_userstatus) -skype.RegisterEventHandler('OnlineStatus', cb_onlinestatus) -skype.Attach() -print >> sys.stderr, 'Started' -print_csv(">>>skylog-info", "STARTUP") - -print_online_users(skype) -while True: - time.sleep(0.1) - if do_exit is True: - break -- cgit v1.2.3-59-g8ed1b