Skip to content

Instantly share code, notes, and snippets.

@yavuzKomecoglu
Last active May 10, 2018 21:20
Show Gist options
  • Save yavuzKomecoglu/938964a22497430dc25d23747abe5f59 to your computer and use it in GitHub Desktop.
Save yavuzKomecoglu/938964a22497430dc25d23747abe5f59 to your computer and use it in GitHub Desktop.
ai-image-recognition-web-1
from flask import Flask
app = Flask(__name__)
@app.route("/")
def main():
return "Merhaba Flask ;)"
if __name__ == "__main__":
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment