We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0185006 commit b32c688Copy full SHA for b32c688
README.md
@@ -46,7 +46,11 @@ CSS.
46
47
You need to pass a `model_id` so that Anki can keep track of your model. It's important that you use a unique `model_id`
48
for each `Model` you define. Use `import random; random.randrange(1 << 30, 1 << 31)` to generate a suitable model_id, and hardcode it
49
-into your `Model` definition.
+into your `Model` definition. You can print one at the command line with
50
+
51
+```bash
52
+python3 -c "import random; print(random.randrange(1 << 30, 1 << 31))"
53
+```
54
55
## Generating a Deck/Package
56
To import your notes into Anki, you need to add them to a `Deck`:
0 commit comments