GithubHelp home page GithubHelp logo

Comments (1)

samprit-ghosh avatar samprit-ghosh commented on June 8, 2024

Creating a Flask app involves a series of steps. Flask is a lightweight web framework for Python that is widely used for building web applications. Here's a simple example to help you get started:

  1. Install Flask:
    Ensure you have Python installed on your system. You can install Flask using pip, the Python package installer. Open your terminal or command prompt and run the following command:

    pip install Flask
  2. Create Your Flask App:
    Create a new directory for your Flask app and navigate to it in the terminal.

    mkdir my_flask_app
    cd my_flask_app
  3. Create a Python Script:
    Inside your app directory, create a Python script (e.g., app.py) with the following content:

    from flask import Flask
    
    app = Flask(__name__)
    
    @app.route('/')
    def hello_world():
        return 'Hello, World!'
    
    if __name__ == '__main__':
        app.run(debug=True)
  4. Run Your Flask App:
    In the terminal, run the following command to start your Flask app:

    python app.py

    This will start the development server, and you should see output indicating that the server is running. By default, your app will be accessible at http://127.0.0.1:5000/ or http://localhost:5000/.

  5. Access Your App:
    Open a web browser and go to http://127.0.0.1:5000/ or http://localhost:5000/. You should see the "Hello, World!" message.

Congratulations! You've just created a simple Flask app. From here, you can start building more complex applications by defining additional routes, handling form submissions, and connecting to databases.

Remember that this is a basic example, and as your app grows, you may want to structure it differently, use templates for HTML rendering, and add more features based on your requirements. Refer to the Flask documentation for more detailed information and advanced topics.

from dreamhost-flask-project-setup.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.