Skip to content
View thestargir's full-sized avatar

Block or report thestargir

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
thestargir/README.md

import eventlet import socketio

sio = socketio.Server() app = socketio.WSGIApp(sio, static_files={ '/': {'content_type': 'text/html', 'filename': 'index.html'} })

@sio.event def connect(sid, environ): print('connect ', sid)

@sio.event def my_message(sid, data): print('message ', data)

@sio.event def disconnect(sid): print('disconnect ', sid)

if name == 'main': eventlet.wsgi.server(eventlet.listen

Popular repositories Loading

  1. srar srar Public

    1

  2. misc misc Public

    Forked from ncoghlan/misc

    IPython notebooks, miscellaneous Python essays (including the Py3 Q&A), random snippets of code and proto-modules.

    HTML

  3. liv liv Public

    coding

  4. thestargir thestargir Public

    Config files for my GitHub profile.

  5. python-socketio python-socketio Public

    Forked from miguelgrinberg/python-socketio

    Python Socket.IO server and client

    Python

  6. Coding Coding Public