cdpm

Results 6 comments of cdpm
trafficstars

@slohse: The Ubuntu repositories seem to be stuck at Anki version 2.0.32. Did you install Anki from the package repositories? If so, does the error occur if you manually download...

Anki Desktop is being ported to Python 3: https://github.com/dae/anki/commit/15b349e3a8b34bf80c134b406c9b90f61250ee9e.

I wrote some integration tests for SyncApp using WebTest that depend on the new test helpers but don't change existing code. I'll hopefully be able to review and commit them...

Made a second commit a few weeks ago with the integration test code. In the future It might be useful to refactor ankiserverctl to use UserManager to avoid duplicate logic...

Something like this worked for me: ``` from flask import Flask from flask_sqlalchemy import SQLAlchemy from sqlalchemy_jsonapi import FlaskJSONAPI app = Flask(__name__) app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///my_existing_db.db' db = SQLAlchemy(app) class Person(db.Model):...