Metadata-Version: 2.1
Name: djankiserv
Version: 0.0.9
Summary: Django-based synchronisation and API server for Anki
Home-page: https://github.com/ankicommunity/djankiserv
License: AGPL-3.0-or-later
Author: Anton Melser
Author-email: anton@melser.org
Maintainer: Anton Melser
Maintainer-email: anton@melser.org
Requires-Python: >=3.8,<4
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Provides-Extra: mysql
Provides-Extra: pgsql
Requires-Dist: django (>=3.1,<4.0)
Requires-Dist: django-k8s (>=0.2.9,<0.3.0)
Requires-Dist: djangorestframework (>=3.11.1,<4.0.0)
Requires-Dist: djangorestframework-simplejwt (>=4.4.0,<5.0.0)
Requires-Dist: gunicorn (>=20.0.4,<21.0.0)
Requires-Dist: mysqlclient (>=2.0.1,<3.0.0); extra == "mysql"
Requires-Dist: psycopg2-binary (>=2.8.6,<3.0.0); extra == "pgsql"
Project-URL: Repository, https://github.com/ankicommunity/djankiserv
Description-Content-Type: text/markdown

# djankiserv

`djankiserv` is an open source Django-based implementation of a synchronisation server for Anki 2.1+. It includes a user manager (the native Django user system).

[Installation](doc/Installation.md) - [Connecting Anki to the sync server](doc/ConnectingAnki.md) - [Development](doc/Development.md) - [Contributing](doc/CONTRIBUTING.md)

## About this implementation

This implementation was initially developed in order to support the spaced repetition functionality for [`Transcrobes`](https://transcrob.es), an open source language learning platform/ecosystem.

Any requests or functionality that don't interfere with using this project for that will definitely be entertained. Ideally the server would do everything that Ankiweb does, and much more. PRs are obviously always welcome!

### Technical differences

Unlike the other popular open source Anki synchronisation server [`anki-sync-server`](https://github.com/ankicommunity/anki-sync-server), `djankiserv` stores the user data in a "proper" RDBMS. There are two 'database connections' that can be set - those for the 'system' (sessions, users, etc.) and those for user data. The 'system' stuff is just plain old Django, so any supported database can be used. The user data part currently uses either `postgresql` schemas or `mysql` databases, and currently only supports those two, though supporting other RDBMSes will definitely be considered later. `sqlite3` is an embedded database and works great for that. It is not appropriate for use in modern web applications in the opinion of the maintainer, so will never be supported by `djankiserv`.

There is a basic API for getting certain, per-user collection-related information (decks, deck configuration, models, tags) and also `notes` for a given user. It may evolve to include other functions, statistics and even doing cards, though the focus is currently on getting and maintaining proper synchronisation as well as the basic API for `notes`.

### Limitations

This is alpha software with some occasional data loss bugs. It works, sorta, if you hold it right. If it kills your kittens then you were forewarned!

Current known limitations (bugs!):

- it doesn't support abort and if it crashes in the middle of a sync then the server will have a corrupt view of the database. You should force an upload sync on next synchronisation if this ever happens!
- The v2 scheduler is not supported, and it is unclear how difficult this might be to implement.

