https://github.com/iml1111/flask-simple-chat
Flask-socketIO를 이용한 심플한 채팅 어플리케이션 예제 코드
https://github.com/iml1111/flask-simple-chat
chat flask python socket-io
Last synced: 8 months ago
JSON representation
Flask-socketIO를 이용한 심플한 채팅 어플리케이션 예제 코드
- Host: GitHub
- URL: https://github.com/iml1111/flask-simple-chat
- Owner: iml1111
- License: mit
- Created: 2020-12-19T11:51:35.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-10T12:14:26.000Z (almost 5 years ago)
- Last Synced: 2025-01-02T08:32:30.018Z (10 months ago)
- Topics: chat, flask, python, socket-io
- Language: Python
- Homepage:
- Size: 4.77 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Flask-Simple-Chat
Flask-socketIO를 이용한 심플한 채팅 어플리케이션 예제 코드# Dependency & Version compatibility
Socket.IO 프로토콜은 서버와 클라이언트 간의 버전이 반드시 호환되어야만 동작합니다.
정상적인 실행을 위해, 반드시 requirements.txt에 기록된 버전으로 수행해주세요.# GET STARTED
```shell
$ pip install -r requirement.txt
$ python chat.py
* Restarting with stat
* Debugger is active!
* Debugger PIN: 139-404-633
wsgi starting up on http://127.0.0.1:5000
...
```# References
https://github.com/miguelgrinberg/Flask-SocketIO-Chat
https://heodolf.tistory.com/125
https://python-socketio.readthedocs.io/en/latest/
https://flask-socketio.readthedocs.io/en/latest/