help@rskworld.in +91 93305 39277
RSK World
  • Home
  • Development
    • Web Development
    • Mobile Apps
    • Software
    • Games
    • Project
  • Technologies
    • Data Science
    • AI Development
    • Cloud Development
    • Blockchain
    • Cyber Security
    • Dev Tools
    • Testing Tools
  • About
  • Contact

Theme Settings

Color Scheme
Display Options
Font Size
100%
Back to Project
RSK World
recipe-assistant-bot
RSK World
recipe-assistant-bot
Recipe Assistant Bot - Python + Flask + AI Chatbot + Recipe Suggestions + Cooking Tips + Meal Planning
recipe-assistant-bot
  • __pycache__
  • app
  • config
  • data
  • static
  • templates
  • tests
  • .env.example679 B
  • .gitignore716 B
  • ADVANCED_FEATURES.md8.8 KB
  • ERROR_CHECK_REPORT.md4.4 KB
  • GITHUB_RELEASE_NOTES.md2.9 KB
  • LICENSE2.8 KB
  • README.md7.2 KB
  • RELEASE_NOTES.md7.8 KB
  • config.py4.6 KB
  • requirements.txt1.1 KB
  • run.py2.3 KB
run.py
run.py
Raw Download
Find: Go to:
"""
Recipe Assistant Bot - Main Application Runner
Author: RSK World (https://rskworld.in)
Founder: Molla Samser
Designer & Tester: Rima Khatun
Contact: help@rskworld.in, +91 93305 39277
Year: 2026
"""

import os
from app import create_app
from config import get_config

# Get configuration based on environment
config_class = get_config()
app = create_app()

# Configure app with the selected config
app.config.from_object(config_class)

if __name__ == '__main__':
    # Development server
    port = int(os.environ.get('PORT', 5000))
    host = os.environ.get('HOST', '127.0.0.1')
    debug = app.config.get('DEBUG', False)
    
    print(f"""
    ╔══════════════════════════════════════════════════════════════╗
    ║           Recipe Assistant Bot - RSK World                   ║
    ╠══════════════════════════════════════════════════════════════╣
    ║  Version: 1.0.0                                              ║
    ║  Author: RSK World                                           ║
    ║  Founder: Molla Samser                                       ║
    ║  Designer & Tester: Rima Khatun                             ║
    ║  Contact: help@rskworld.in, +91 93305 39277                 ║
    ║  Website: https://rskworld.in                               ║
    ║  Year: 2026                                                  ║
    ╠══════════════════════════════════════════════════════════════╣
    ║  Starting server...                                          ║
    ║  URL: http://{host}:{port}                                   ║
    ║  Debug Mode: {debug}                                          ║
    ╚══════════════════════════════════════════════════════════════╝
    """)
    
    app.run(host=host, port=port, debug=debug)
46 lines•2.3 KB
python

About RSK World

Founded by Molla Samser, with Designer & Tester Rima Khatun, RSK World is your one-stop destination for free programming resources, source code, and development tools.

Founder: Molla Samser
Designer & Tester: Rima Khatun

Development

  • Game Development
  • Web Development
  • Mobile Development
  • AI Development
  • Development Tools

Legal

  • Terms & Conditions
  • Privacy Policy
  • Disclaimer

Contact Info

Nutanhat, Mongolkote
Purba Burdwan, West Bengal
India, 713147

+91 93305 39277

hello@rskworld.in
support@rskworld.in

© 2026 RSK World. All rights reserved.

Content used for educational purposes only. View Disclaimer