Metadata-Version: 2.1
Name: django-socket-framework
Version: 0.1.6
Summary: Socket consumer environment with more systematic methods/events and auth
Author: Lia Va
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# django-socket-framework
Socket consumer environment with separated methods/events and token authentication.

## Installation
```console
pip install -i https://test.pypi.org/simple/ django-socket-framework
```

## Usage

#### Basic channels setup:
*show channels setting up*

#### Then we can create our consumer:
```python
*imports*

class ChatConsumer(JWTAuthConsumer):
....
```

*then some test*


