This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env python | |
"0MQ messaging test" | |
import zmq | |
CONTEXT = zmq.Context.instance() | |
def get_opts(): | |
"Get program options" | |
from argparse import ArgumentParser | |
parser = ArgumentParser() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Written by [email protected] March 14 2012 | |
# Modified by [email protected] November 12 2012 | |
# | |
# Disable global warning, we need to store OPTS globally | |
# pylint: disable-msg=W0603 | |
# | |
"Joystick event echoer using Pygame." | |
import pygame |
NewerOlder