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 trial

Python Flask REST API Resourceful Blueprints Register API

Ron Tovbin
seal-mask
.a{fill-rule:evenodd;}techdegree
Ron Tovbin
Python Web Development Techdegree Student 6,268 Points

Any help here would be much appreciated.

Getting:

Bummer! cannot import name 'ingredients_api'

api.py
from flask import Flask
from resourses.ingredients import ingredients_api
from resourses.recipes import recipes_api

app = Flask(__name__)
app.register_blueprint(ingredients_api)
app.register_blueprint(recipes_api)


if __name__ == '__main__':
    app.run()
resources/ingredients.py
from flask.ext.restful import Resource
from flask import jsonify, Blueprint
from flask_restful import Resource, Api
import models


class IngredientList(Resource):
    def get(self):
        return 'IngredientList'


class Ingredient(Resource):
    def get(self, id):
        return 'Ingredient'

ingedient_api = Blueprint('resorces.ingredients', __name__)
api = Api(ingedient_api)
api.add_resource(
        Ingredient,'/ingredient/<int:id>',endpoint='ingredient'
        )
resources/recipes.py
from flask.ext.restful import Resource
from flask import jsonify, Blueprint
from flask_restful import Resource, Api


import models


class RecipeList(Resource):
    def get(self):
        return 'RecipeList'


class Recipe(Resource):
    def get(self, id):
        return 'Recipe'

recipe_api = Blueprint('resorces.recipes', __name__)
api = Api(recipe_api)
api.add_resource(
        Recipe,'/recipe/<int:id>',endpoint='recipe'
        )