# HG changeset patch # User Jeff Hammel # Date 1341431604 25200 # Node ID bf637ccfcae57a6929cbcfd1827c49fd0f71c34d initial stub diff -r 000000000000 -r bf637ccfcae5 INSTALL.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/INSTALL.py Wed Jul 04 12:53:24 2012 -0700 @@ -0,0 +1,67 @@ +#!/usr/bin/env python + +""" +installation script for memeomatic +RESTful and CLI meme generator +""" + +import os +import sys +import urllib2 +import subprocess +try: + from subprocess import check_call as call +except: + from subprocess import call + +REPO='http://k0s.org/hg/memeomatic' +DEST='memeomatic' # name of the virtualenv +VIRTUALENV='https://raw.github.com/pypa/virtualenv/develop/virtualenv.py' + +def which(binary, path=os.environ['PATH']): + dirs = path.split(os.pathsep) + for dir in dirs: + if os.path.isfile(os.path.join(dir, fileName)): + return os.path.join(dir, fileName) + if os.path.isfile(os.path.join(dir, fileName + ".exe")): + return os.path.join(dir, fileName + ".exe") + +def main(args=sys.argv[1:]): + + # create a virtualenv + virtualenv = which('virtualenv') or which('virtualenv.py') + if virtualenv: + call([virtualenv, DEST]) + else: + process = subproces.Popen([sys.executable, '-', DEST], stdin=subprocess.PIPE) + process.communicate(stdin=urllib2.urlopen(VIRTUALENV).read()) + + # create a src directory + src = os.path.join(DEST, 'src') + os.mkdir(src) + + # clone the repository + call(['hg', 'clone', REPO], cwd=src) + + # find the virtualenv python + python = None + for path in (('bin', 'python'), ('Scripts', 'python.exe')): + _python = os.path.join(DEST, *path) + if os.path.exists(_python) + python = _python + break + else: + raise Exception("Python binary not found in %s" % DEST) + + # find the clone + filename = REPO.rstrip('/') + filename = filename.split('/')[-1] + clone = os.path.join(src, filename) + assert os.path.exists(clone), "Clone directory not found in %s" % src + + # ensure setup.py exists + assert os.path.exists(os.path.join(clone, 'setup.py')), 'setup.py not found in %s' % clone + + # install the package in develop mode + call([python 'setup.py', 'develop'], cwd=clone) + diff -r 000000000000 -r bf637ccfcae5 README.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README.txt Wed Jul 04 12:53:24 2012 -0700 @@ -0,0 +1,11 @@ +memeomatic +=========== + +RESTful and CLI meme generator + +---- + +Jeff Hammel + +http://k0s.org/hg/memeomatic + diff -r 000000000000 -r bf637ccfcae5 memeomatic/__init__.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/memeomatic/__init__.py Wed Jul 04 12:53:24 2012 -0700 @@ -0,0 +1,3 @@ +# +from main import * + diff -r 000000000000 -r bf637ccfcae5 memeomatic/fonts/impact.ttf Binary file memeomatic/fonts/impact.ttf has changed diff -r 000000000000 -r bf637ccfcae5 memeomatic/main.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/memeomatic/main.py Wed Jul 04 12:53:24 2012 -0700 @@ -0,0 +1,41 @@ +#!/usr/bin/env python + +""" +CLI meme generator +""" + +import meme +import sys +import optparse + +def main(args=sys.argv[:]): + + # parse command line options + usage = '%prog [options] path/to/image.file' + class PlainDescriptionFormatter(optparse.IndentedHelpFormatter): + """description formatter for console script entry point""" + def format_description(self, description): + if description: + return description.strip() + '\n' + else: + return '' + parser = optparse.OptionParser(usage=usage, description=__doc__, formatter=PlainDescriptionFormatter()) + parser.add_option('-h', '--header', dest='header', + help="text for the top of the image") + parser.add_option('-f', '--footer', dest='footer', + help="text for the bottom of the image") + parser.add_option('-o', '--output', dest='output', + help="output path for image") + options, args = parser.parse_args(args) + + if len(args) != 1: + parser.error("Please supply path to image") + + if not options.header and not options.footer: + parser.error("Please supply --header and/or --footer text") + + + +if __name__ == '__main__': + main() + diff -r 000000000000 -r bf637ccfcae5 memeomatic/meme.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/memeomatic/meme.py Wed Jul 04 12:53:24 2012 -0700 @@ -0,0 +1,22 @@ + +""" + +References: + +- http://www.pythonware.com/library/pil/handbook/imagedraw.htm +- http://python-catalin.blogspot.com/2010/06/add-text-on-image-with-pil-module.html +""" + +# TODO: +# - http://code.activestate.com/recipes/474116-drop-shadows-with-pil/ +# - fonts: Arial-black or impact + +class MemeGenerator(object): + def __init__(self, font, default_size=25): + pass + + def __call__(self, path, header=None, footer=None): + """generate a meme""" + + # font + # http://www.pythonware.com/library/pil/handbook/imagefont.htm diff -r 000000000000 -r bf637ccfcae5 memeomatic/web.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/memeomatic/web.py Wed Jul 04 12:53:24 2012 -0700 @@ -0,0 +1,26 @@ +#!/usr/bin/env python + +""" +web handler for memeomatic +""" + +from webob import Request, Response, exc + +class Handler(object): + + def __init__(self, **kw): + pass + + def __call__(self, environ, start_response): + request = Request(environ) + response = Response(content_type='text/plain', + body="memeomatic") + return response(environ, start_response) + +if __name__ == '__main__': + from wsgiref import simple_server + app = Handler() + server = simple_server.make_server(host='0.0.0.0', port=8080, app=app) + server.serve_forever() + + diff -r 000000000000 -r bf637ccfcae5 setup.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Wed Jul 04 12:53:24 2012 -0700 @@ -0,0 +1,55 @@ +""" +setup packaging script for memeomatic +""" + +import os +from pkg_resources import require, DistributionNotFound + +version = "0.0" +dependencies = ['webob'] + +# Dependency check at run time +# If PIL is not found, then it is added in the ``install_requires`` list +install_requires = [] # Empty list if PIL is found +try: + try: + require('PIL') + except DistributionNotFound: + require('Image') +except DistributionNotFound: + install_requires = ['PIL'] + +# allow use of setuptools/distribute or distutils +kw = {} +try: + from setuptools import setup + kw['entry_points'] = """ + [console_scripts] + meme-o-matic = memeomatic.main:main +""" + kw['install_requires'] = dependencies +except ImportError: + from distutils.core import setup + kw['requires'] = dependencies + +try: + here = os.path.dirname(os.path.abspath(__file__)) + description = file(os.path.join(here, 'README.txt')).read() +except IOError: + description = '' + + +setup(name='memeomatic', + version=version, + description="RESTful and CLI meme generator", + long_description=description, + classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers + author='Jeff Hammel', + author_email='jhammel@mozilla.com', + url='http://k0s.org/hg/memeomatic', + license='', + packages=['memeomatic'], + include_package_data=True, + zip_safe=False, + **kw + ) diff -r 000000000000 -r bf637ccfcae5 tests/doctest.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/doctest.txt Wed Jul 04 12:53:24 2012 -0700 @@ -0,0 +1,11 @@ +Test memeomatic +================ + +The obligatory imports: + + >>> import memeomatic + +Run some tests. This test will fail, please fix it: + + >>> assert True == False + diff -r 000000000000 -r bf637ccfcae5 tests/test.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test.py Wed Jul 04 12:53:24 2012 -0700 @@ -0,0 +1,61 @@ +#!/usr/bin/env python + +""" +doctest runner +""" + +import doctest +import os +import sys +from optparse import OptionParser + + +def run_tests(raise_on_error=False, report_first=False): + + # add results here + results = {} + + # doctest arguments + directory = os.path.dirname(os.path.abspath(__file__)) + extraglobs = {'here': directory} + doctest_args = dict(extraglobs=extraglobs, raise_on_error=raise_on_error) + doctest_args['optionsflags'] = doctest.ELLIPSIS + if report_first: + doctest_args['optionflags'] |= doctest.REPORT_ONLY_FIRST_FAILURE + + # gather tests + tests = [test for test in os.listdir(directory) + if test.endswith('.txt')] + + # run the tests + for test in tests: + try: + results[test] = doctest.testfile(test, **doctest_args) + except doctest.DocTestFailure, failure: + raise + except doctest.UnexpectedException, failure: + raise failure.exc_info[0], failure.exc_info[1], failure.exc_info[2] + + return results + +def main(args=sys.argv[1:]): + + # parse command line args + parser = OptionParser(description=__doc__) + parser.add_option('--raise', dest='raise_on_error', + default=False, action='store_true', + help="raise on first error") + parser.add_option('--report-first', dest='report_first', + default=False, action='store_true', + help="report the first error only (all tests will still run)") + options, args = parser.parse_args(args) + + # run the tests + results = run_tests(**options.__dict__) + if sum([i.failed for i in results.values()]): + sys.exit(1) # error + + +if __name__ == '__main__': + main() + diff -r 000000000000 -r bf637ccfcae5 tests/unit.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/unit.py Wed Jul 04 12:53:24 2012 -0700 @@ -0,0 +1,21 @@ +#!/usr/bin/env python + +""" +unit tests +""" + +import os +import sys +import unittest + +# globals +here = os.path.dirname(os.path.abspath(__file__)) + +class memeomaticUnitTest(unittest.TestCase): + + def test_memeomatic(self): + pass + +if __name__ == '__main__': + unittest.main() +