In Python REST APIs, handling failures gracefully is essential for providing a good user experience and maintaining application stability. This involves implementing proper error handling mechanisms, returning appropriate HTTP status codes and messages, and logging errors for debugging purposes.
from flask import Flask, jsonify, request
app = Flask(__name__)
@app.route('/api/resource', methods=['GET'])
def get_resource():
try:
# Simulating a potential error (e.g., resource not found)
resource = fetch_resource_from_database()
if resource is None:
return jsonify({'error': 'Resource not found'}), 404
return jsonify(resource), 200
except Exception as e:
# Log the error
app.logger.error(f'An error occurred: {e}')
return jsonify({'error': 'Internal Server Error'}), 500
def fetch_resource_from_database():
# Simulated function to fetch a resource
return None # Simulating resource not found for this example
if __name__ == '__main__':
app.run(debug=True)
How do I avoid rehashing overhead with std::set in multithreaded code?
How do I find elements with custom comparators with std::set for embedded targets?
How do I erase elements while iterating with std::set for embedded targets?
How do I provide stable iteration order with std::unordered_map for large datasets?
How do I reserve capacity ahead of time with std::unordered_map for large datasets?
How do I erase elements while iterating with std::unordered_map in multithreaded code?
How do I provide stable iteration order with std::map for embedded targets?
How do I provide stable iteration order with std::map in multithreaded code?
How do I avoid rehashing overhead with std::map in performance-sensitive code?
How do I merge two containers efficiently with std::map for embedded targets?