250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 파이썬
- test
- Topics
- mysql
- pytorch
- 이력서
- 방식으로 텍스트
- 幼稚园杀手(유치원킬러)
- 토픽추출
- 지마켓
- 자바
- lda
- RESFUL
- 과학백과사전
- java
- oracle
- 게시판 만들기
- r
- jsp 파일 설정
- (깃)git bash
- Gmarket
- tomoto
- 코사인 유사도
- 네이버뉴스
- Websocket
- db
- spring MVC(모델2)방식
- Python
- 크롤링
- word2vec
Archives
- Today
- Total
무회blog
python: websocket, client,server 본문
websocket_client.py
###############################################################
#!/usr/bin/env python
# WS client example
import asyncio
import websockets
async def hello():
uri = "ws://localhost:8765"
async with websockets.connect(uri) as websocket:
name = input("What's your name? ")
await websocket.send(name)
print(f"> {name}")
greeting = await websocket.recv()
print(f"< {greeting}")
asyncio.get_event_loop().run_until_complete(hello())
##########################################
#!/usr/bin/env python
# WS server example
import asyncio
import websockets
async def hello(websocket, path):
name = await websocket.recv()
print(f"< {name}")
greeting = f"Hello {name}!"
await websocket.send(greeting)
print(f"> {greeting}")
start_server = websockets.serve(hello, "localhost", 8080)
asyncio.get_event_loop().run_until_complete(start_server)
asyncio.get_event_loop().run_forever()
'Python' 카테고리의 다른 글
python: websocket, 파이썬서버 , 파이썬 클라이언트, 003 (0) | 2020.08.27 |
---|---|
python: websocket, 파이썬서버, 웹클라이언트, 002 (0) | 2020.08.27 |
python: restFul, REST API, _inputOutput_02, rest,조회,GET,입력,POST, (0) | 2020.08.25 |
200819-,텔레그램 챗봇, 멜론차트 , 테스트 001 (0) | 2020.08.19 |
python: 200805-keras001.py, 파이참 모듈에서 테스트 (0) | 2020.08.05 |
Comments