Skip to content

Instantly share code, notes, and snippets.

@kirelagin
kirelagin / pcms_left.py
Created December 2, 2011 12:33
PCMS2 contest status and time remaining
#!/usr/bin/env python2
import sys
import datetime
from mustaine.client import HessianProxy
SERVICE_URL = 'http://neerc.ifmo.ru:8081/pcms/party'
LOGIN = '<login>'
PASSWORD = '<password>'
@kirelagin
kirelagin / group.py
Created September 18, 2011 23:45
Group properties checker
#!/usr/bin/env python3
from abc import ABCMeta, abstractmethod
class Biop(metaclass=ABCMeta):
_set = None
@property
def set(self):