Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialVashco Mukanangana
34,487 Pointskeep getting bummer "ingredients" not defined. What am I missing here?
I am supposed to register the blueprint in app.py
from flask import Flask
app = Flask(__name__)
app.register_blueprint(ingredients_api)
app.register_blueprint(recipes_api)
if __name__ == '__main__':
app.run()
from flask.ext.restful import Resource, Api
from flask import Blueprint
import models
class IngredientList(Resource):
def get(self):
return 'IngredientList'
class Ingredient(Resource):
def get(self, id):
return 'Ingredient'
ingredients_api = Blueprint('resources.ingredients',__name__)
api = Api(ingredients_api)
api.add_resource(
IngredientList,
'/api/v1/ingredients',
endpoint='ingredients'
)
api.add_resource(
Ingredient,
'/api/v1/ingredients/<int:id>',
endpoint='ingredient'
)
from flask.ext.restful import Resource, Api
from flask import Blueprint
import models
class RecipeList(Resource):
def get(self):
return 'RecipeList'
class Recipe(Resource):
def get(self, id):
return 'Recipe'
recipes_api = Blueprint('resources.recipes',__name__)
api = Api(recipes_api)
api.add_resource(
RecipeList,
'/api/v1/recipes',
endpoint='recipes'
)
api.add_resource(
Recipe,
'/api/v1/recipes/<int:id>',
endpoint='recipe'
)
3 Answers
Steven Parker
231,236 PointsYou got really close there!
The final task is "import the blueprints into app.py
and register them both with app
."
It looks like you registered them properly, but you forgot to import them:
from resources.ingredients import ingredients_api
from resources.recipes import recipes_api
Vashco Mukanangana
34,487 PointsThank you so much Steven!
Steven Parker
231,236 PointsGlad to help, and happy coding!
Vashco Mukanangana
34,487 PointsThanks for the reminder. Much appreciated!