Я пытаюсь подключить django к dasastax casandra, но я не могу этого сделать. моя база данных здесь:
`DATABASES = {`
`from cassandra.auth import PlainTextAuthProvider`
`from cassandra.cluster import Cluster`
`'default': {`
`cloud_config= {`
` 'secure_connect_bundle': 'secure-connect-okul.zip'`
`}`
`auth_provider = PlainTextAuthProvider('mahmut215', 'm11223344m')`
`cluster = Cluster(cloud=cloud_config, auth_provider=auth_provider)`
`session = cluster.connect()`
` }`
`}`
`