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Žiga Pregelj
18,126 PointsRegister API challenge
from flask import Flask
import models
from resources.ingredients import ingredients_api
from resources.recipes import recipes_api
app = Flask(__name__)
app.register_blueprint(ingredients_api)
app.register_blueprint(recipes_api)
if __name__ == '__main__':
models.initialize()
app.run()
from flask.ext.restful import Resource
from flask import Blueprint
from flask.ext.restful import Api
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_resources(
IngredientList,
'/api/v1/ingredients',
endpoint = 'ingredients'
)
api.add_resources(
Ingredient,
'/api/v1/ingredients/<int:id>',
endpoint = 'ingredient'
)
from flask.ext.restful import Resource
from flask import Blueprint
from flask.ext.restful import Api
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_resources(
RecipeList,
'/api/v1/recipes',
endpoint = 'recipes'
)
api.add_resources(
Recipe,
'/api/v1/recipes/<int:id>',
endpoint = 'recipe'
)
https://teamtreehouse.com/library/flask-rest-api/resourceful-blueprints/register-api
Any idea why this doesn't work ? Trying to figure it out for 2h now, but don't have a clue what it could be wrong.
Thanks.
3 Answers
Jason Anders
Treehouse Moderator 145,860 PointsHey Ziga,
You are using api.add_resources
with an "s". It should be api.add_resource
without the "s"
Keep Coding! :)
Žiga Pregelj
18,126 PointsNah, it doesn't work.
Cindy Lea
Courses Plus Student 6,497 PointsTry this:
api.py
from flask import Flask
app = Flask(__name__)
if __name__ == '__main__':
app.run()
resources/ingredients.py
from flask.ext.restful import Resource
from flask import Blueprint
from flask.ext.restful import Api
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)
recipes_api = Blueprint('ingredients.recipes',__name__)
api = Api(ingredients_api)
)
api.add_resources(
Ingredient,
'/api/v1/ingredients/<int:id>',
endpoint = 'ingredient'
)
resources/recipes.py
from flask.ext.restful import Resource
from flask import Blueprint
from flask.ext.restful import Api
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_resources(
RecipeList,
'/api/v1/recipes',
endpoint = 'recipes'
)
api.add_resources(
Recipe,
'/api/v1/recipes/<int:id>',
endpoint = 'recipe'
)