Skip to content
#

start

Here are 177 public repositories matching this topic...

This amazing app was written for easy running from tray the most used programs, especially for don’t have a link in Start, and also for any documents, that you have to open. In addition, it may be used for running your scripts. Эта замечательная программа написана для облегчения запуска из трея наиболее часто используемых программ, особенно для тех, для которых нет ярлыка, а также для любых других документов, которые приходится когда-либо открывать. Также она может быть полезна для запуска каких-либо скриптов.

  • Updated Dec 19, 2021
  • Pascal
PyDever
PyDever commented Apr 23, 2018

Integers are currently not interpreted as integers.



from flask import Flask 
import cookie

app = Flask(__name__)

@app.route('/')
def home_page ():
	return "Hello, world!"

@cookie.cookie
def run (port=None):
	app.run(debug=True, port=port)

if __name__ == "__main__":
	run() 

the above snippet WILL NOT WORK unless you first
convert port to an integer using int()

enhancement help wanted good first issue question

Improve this page

Add a description, image, and links to the start topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the start topic, visit your repo's landing page and select "manage topics."

Learn more