Skip to main content

valar for morghulis

Project description

valar for morghulis

1. install

pip install valar

1. settings

from django.core.management.utils import get_random_secret_key
from pathlib import Path

"""       Compulsory settings       """

DEBUG = True
BASE_DIR = Path(__file__).resolve().parent.parent
BASE_APP = str(BASE_DIR.name)
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
SECRET_KEY = get_random_secret_key()



"""       Valar Options       """

HANDLER_MAPPING = "%s.urls.channel_mapping" % BASE_APP
MONGO_URI = 'mongodb://root:19870120@121.41.111.175:27017/'
MINIO_URL = "s3://admin:password@120.27.8.186:9000"



"""       Minimized compulsory settings       """

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': BASE_DIR / 'db.sqlite3',
    }
}
INSTALLED_APPS = [
    'django.contrib.sessions',
    "corsheaders",
    'channels',
    'valar',
]
MIDDLEWARE = [
    'django.contrib.sessions.middleware.SessionMiddleware',
    'corsheaders.middleware.CorsMiddleware',
    'django.middleware.common.CommonMiddleware',
]
CHANNEL_LAYERS = {
    "default": {
        "BACKEND": "channels.layers.InMemoryChannelLayer"
    }
}
CORS_ORIGIN_ALLOW_ALL = True
CORS_ALLOW_CREDENTIALS = True
ROOT_URLCONF = "%s.urls" % BASE_APP
ASGI_APPLICATION = "%s.asgi.application" % BASE_APP

"""       Optional settings       """

ALLOWED_HOSTS = ['*']
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'Asia/Shanghai'
USE_I18N = True
USE_TZ = False
SESSION_SAVE_EVERY_REQUEST = True
SESSION_COOKIE_AGE = 60 * 60
FILE_UPLOAD_MAX_MEMORY_SIZE = 1024 * 1024 * 100
DATA_UPLOAD_MAX_MEMORY_SIZE = 1024 * 1024 * 100

2. asgi

from django.core.asgi import get_asgi_application
from channels.routing import ProtocolTypeRouter, URLRouter
from django.urls import re_path
from valar.channels.consumer import ValarConsumer

application = ProtocolTypeRouter({
    'http': get_asgi_application(),
    'websocket': URLRouter([
        re_path(r'(?P<client>\w+)/$', ValarConsumer.as_asgi()),
    ])
})

3. migrate

no need, valar will auto migration

4. root urls

no need, valar will auto set urlpatterns

5. how to use valar_channel

5.1 set HANDLER_MAPPING in settings

HANDLER_MAPPING = "%s.urls.channel_mapping" % BASE_APP

5.2 create a handler

from valar.channels.sender import ValarSocketSender
def test_handler(sender: ValarSocketSender):
    data = sender.data
    length = data.get('length',30)
    counter = sender.create_counter(length)
    for i in range(length):
        # sync method
        sender.to_clients(counter.tick() ,sender.client, wait=True)

5.3 register handler in channel_mapping

channel_mapping = {
    'test': test_handler,
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

valar-1.1.4.tar.gz (11.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

valar-1.1.4-py3-none-any.whl (14.3 kB view details)

Uploaded Python 3

File details

Details for the file valar-1.1.4.tar.gz.

File metadata

  • Download URL: valar-1.1.4.tar.gz
  • Upload date:
  • Size: 11.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.6

File hashes

Hashes for valar-1.1.4.tar.gz
Algorithm Hash digest
SHA256 9f1d3033f15dea19a71172cc9d5027ac56fcf6f08587addeead984b120510d93
MD5 96b5a3e2d64fe1966dc1746e2eab9ede
BLAKE2b-256 9890cd1fb6cd8528a197f1696f879da0d7bf6fa6a9d66ba8c80e2057bc26579b

See more details on using hashes here.

File details

Details for the file valar-1.1.4-py3-none-any.whl.

File metadata

  • Download URL: valar-1.1.4-py3-none-any.whl
  • Upload date:
  • Size: 14.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.6

File hashes

Hashes for valar-1.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 a431c60403afc2a83147ec2e57ffca874174584cf4396e4fde456b045c1e8569
MD5 17fc4798c4e6e32cf9b39fa4d51cd092
BLAKE2b-256 cddcb422338b3dce7781ad785bb2291775bcf0a4985698461df31bfe0f1bcfe9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page