Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env python
#-*- coding:utf-8 -*-
"""Command line tool to configure Homie devices."""
__author__ = "Emmanuel Navarro <enavarro222@gmail.com>"
__license__ = "WTFPL"
import sys
import getpass
import argparse
@enavarro222
enavarro222 / jugglable_ip.py
Last active December 17, 2015 09:49
Stupide script that list all jugglable IP adress of a range (ipv4 only)
#!/usr/bin/env python
#-*- coding:utf-8 -*-
""" Petit script bourrin qui liste toutes les IP jonglables d'une plage donnée
Dépend de iptools: http://code.google.com/p/python-iptools/
Auteur: Emmanuel Navarro
Date: 20130516
"""
@enavarro222
enavarro222 / talismane_python.py
Last active October 13, 2015 17:58
DEPRECATED : there is a proper repo now : https://github.com/enavarro222/talismane_python
#!/usr/bin/env python
#-*- coding:utf-8 -*-
""" This python module propose a simple wrapper to Talismane syntax analyzer.
Talismane is run in a different thread and the communication with python is
made through stdin/stdout.
"""
__author__ = "Emmanuel Navarro <enavarro222@gmail.com>"
__copyright__ = "Copyright (c) 2012 Emmanuel Navarro"
__license__ = "GNU Affero General Public License, version >= 3"