This file contains hidden or 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/python | |
# Celtx HTML Film Script to Ren'Py Script Tool (Based on KeyLimePie tools) | |
# Copyright 2010 Max Battcher. Some Rights Reserved. | |
# Licensed for use under the Ms-PL. | |
from BeautifulSoup import BeautifulSoup, Tag | |
import logging | |
def tagtext(contents): | |
def txt(thing): | |
if isinstance(thing, Tag): |
This file contains hidden or 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 | |
""" | |
HTTP Link Header Parsing | |
Simple routines to parse and manipulate Link headers. | |
""" | |
__license__ = """ | |
Copyright (c) 2009 Mark Nottingham |
NewerOlder