2020年11月09日

FastAPI




uvicorn main:app --reload
uvicorn main:app --reload --host 0.0.0.0 --port 8000




API 外部 アクセス
if __name__ == "__main__":
    uvicorn.run(app, host="0.0.0.0", port=8000)


python main.py


posted by a23 at 09:21| Comment(0) | Python

2020年08月07日

pyinstaller


pyinstaller --onefile --windowed your_python_file.py 
posted by a23 at 15:28| Comment(0) | Python

Kivy

2020/5 時点では,Python 2.7 か 3.5 か 3.6 か 3.7.x

2020/5 時点では,Python 2.7 か 3.5 か 3.6 か 3.7.x

続きを読む
posted by a23 at 10:25| Comment(0) | Python