from django.urls import re_path from . import consumers websocket_routes = [ re_path(r'ebay/(?P\w+)/(?P\w+)$', consumers.EbayConsumer), ]