Petruchio

Petruchio used JDate, but needed to convert first.


In [1]:
import forge
from puzzle.puzzlepedia import puzzlepedia

puzzle = puzzlepedia.parse("""
LURCH (Tree in the shape of a bend after July 3rd (5) [2003])
Acetal chloride is somewhat a soft substance (4)
ASIA (Endless oasis and a continent (4))
Wrecked a trailer of some vessels (8)
Military group’s keen without Europe (4)
Easy, confused smile around April 2nd (6) [1995]
Incomplete recollection of Atlanta university (5)
Sends unwanted messages to 31-Across covering essence of rumor (5)
Short trip for club after January 5th (5) [1922]
ASPIRE (Hope for bad praise (6))
Son holding edge of easily adorned item (4-2)
Bite upset bridal gown designer Vera (4)
Abundant part of trifecta (4)
Maestro done traveling around end of July (5) [2011]
Indian city’s 50% concerned with food production (4)
Small step in healthy places (4)
Planters peanuts finally remade worse (6)
In a spooky way, Riley goes mad after November 4th (6) [2008]
FRETS (Worries about parts of a guitar (5))
Mix up alcohol in large cups? Just the opposite (5)
Small O trimmed (5)
SIERRA (In part, tarsier rappelling mountain range (6))
Possible lunch option: piece of food for dipping (around February 5th) (4) [1992]
Literary movement about...um... fruits (8)
Relative adopting Republican guys (4)
Grape juice…mmmmmmm… before October 3rd (4) [1989]
Andrew’s announced company that makes mints (5)
""", hint="cryptic")


WARNING
Max fringe size was: 2619

In [1]:
import forge
from puzzle.puzzlepedia import puzzlepedia

puzzle = puzzlepedia.parse("""
Quote from Cymbeline (4)
A place to remember...a getaway hole (5)
Tangled roots around glider tail and helicopter parts (6)
Alberts’ swamped with duties and religious performances (8)
Zorro’s mark in grass is unclear (4)
Secret meeting to hear saint (5)
Over operation after a time (4)
Red swindler covering edges (7)
Goals: sloth story (4)
Throw around a soft young tree (7)
Take cap off medicine for diseases (4)
A key for getting rid of singer (5)
Fumbler’s covered in pelts (4)
Sounds of disapproval about young lads (5)
An antelope’s recorded over (4)
Poison that doesn’t include copper is unusual (4)
Bit of pastry in tart in tube (4)
Small flower’s piously odd (4)
""", hint="cryptic")

In [3]:
import forge
from puzzle.puzzlepedia import puzzlepedia

puzzle = puzzlepedia.parse("""
Soaring wildly around regular group of soldiers (8)
Shakes with silver and straws primarily (4)
Joker’s way off and dog’s eating last of bone (7)
Instrument contains ancient sluggard (7)
Back a motion for a short amount of time (6)
Lets up, stops, doesn’t start (5)
Introduction of Tim Meadows coming first...that’s most low (5)
Agreement over damaged cruet (5)
Hiccups in format identify leaders in sound quality (2-2)
Some studies of exploding star (4)
Neckwear worn to relax in discussion (4)
Parent at a museum in New York (4)
Work with odd, unconverted 44-Across (4)
""", hint="cryptic")

In [6]:
import forge
from puzzle.puzzlepedia import puzzlepedia

# In original order:
puzzle = puzzlepedia.parse("""
LARCH
SIMPLE
FORAY
DOYEN
EERILY
SOUP
MUST
""", hint="acrostic")

# cladist, heroism, lioness.

In [1]:
import forge
from puzzle.puzzlepedia import puzzlepedia

# In chronological order:
puzzle = puzzlepedia.parse("""
FORAY
MUST
SOUP
SIMPLE
LARCH
EERILY
DOYEN
""", hint="acrostic")

# aspirin.

In [5]:
# As regex, chronological:
'[%s]' % ']['.join("""
FORAY
MUST
SOUP
SIMPLE
LARCH
EERILY
DOYEN
""".strip().lower().split('\n'))


Out[5]:
'[foray][must][soup][simple][larch][eerily][doyen]'

In [ ]: