Skip to content

Instantly share code, notes, and snippets.

@fakruboss
Created January 16, 2025 04:11
Show Gist options
  • Save fakruboss/71540c78fd6562fe04d859986784b07e to your computer and use it in GitHub Desktop.
Save fakruboss/71540c78fd6562fe04d859986784b07e to your computer and use it in GitHub Desktop.
from flask import Flask, jsonify, request
import random
app = Flask(__name__)
@app.route('/hello', methods=['GET'])
def hello_world():
name = request.args.get('name', 'world') # Default to "world" if no name is provided
return jsonify({"message": f"hello {name} !!!"})
@app.route('/random_number', methods=['POST'])
def random_number():
try:
# Get the number of digits from the request body
data = request.get_json()
num_digits = data.get('digits', 1) # Default to 1 if no digits are provided
# Ensure num_digits is a positive integer
if num_digits < 1:
return jsonify({"error": "Number of digits must be greater than 0"}), 400
# Generate a random number with the specified number of digits
random_num = random.randint(10**(num_digits-1), 10**num_digits - 1)
return jsonify({"random_number": random_num})
except Exception as e:
return jsonify({"error": str(e)}), 400
if __name__ == '__main__':
app.run(debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment