Skip to content

Commit

Permalink
Merge pull request #137 from davidmegginson/dev
Browse files Browse the repository at this point in the history
Add support for &recipe parameter per #136
  • Loading branch information
davidmegginson authored Oct 26, 2016
2 parents b85929f + 58e6454 commit 4442a64
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions hxl_proxy/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ def setup_filters(recipe):
# Basic input source
source = hxl.data(make_tagged_input(recipe['args']))

# Do we have a JSON recipe? Load it first.
if recipe['args'].get('recipe'):
source = source.recipe(recipe['args'].get('recipe'))

# Intercept missing hashtags here
try:
source.columns
Expand Down

0 comments on commit 4442a64

Please sign in to comment.