{ "cells": [ { "cell_type": "code", "execution_count": 13, "id": "1664172b", "metadata": {}, "outputs": [], "source": [ "from http2 import *\n", "class AnkiClient(Http):\n", " def __init__(self):\n", " Http.__init__(self)\n", " self.url = 'http://127.0.0.1:8764'\n", " self.version = None\n", " def api(self, data):\n", " print(data)\n", " data = json.dumps(data)\n", " res = self._post(self.url, data)\n", " return res\n", " def make_version(self):\n", " self.version = self.api({\"action\":\"version\"})\n", " return self.version\n", " def deckNames(self):\n", " return self.api({\"action\":\"deckNames\"})\n", " def modelNames(self):\n", " return self.api({\"action\":\"modelNames\"})\n", " def modelFieldNames(self, modelName):\n", " return self.api({\"action\":\"modelFieldNames\", \"params\" :{\"modelName\" : modelName}})\n", " def addNote(self, note):\n", " return self.api({\"action\":\"addNote\", \"params\" : {\"note\": note}})" ] }, { "cell_type": "code", "execution_count": 14, "id": "ee987c62", "metadata": {}, "outputs": [], "source": [ "anki = AnkiClient()" ] }, { "cell_type": "code", "execution_count": 16, "id": "58e77a6b", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{'action': 'deckNames'}\n", "_post http://127.0.0.1:8764\n" ] }, { "data": { "text/plain": [ "b'[\"Git\", \"\\\\u53e5\\\\u7d20\", \"\\\\u793a\\\\u4f8b\\\\u724c\\\\u7ec4\", \"\\\\u7cfb\\\\u7edf\\\\u9ed8\\\\u8ba4\", \"\\\\u82f1\\\\u8bed\", \"\\\\u8d56\\\\u4e16\\\\u96c4\\\\u97f3\\\\u6807\", \"\\\\u97f3\\\\u6807\"]'" ] }, "execution_count": 16, "metadata": {}, "output_type": "execute_result" } ], "source": [ "t = anki.deckNames()\n", "t" ] }, { "cell_type": "code", "execution_count": 18, "id": "c3b5b237", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "b'{\\n error = \"anki: no client proxy connect\"\\n}'" ] }, "execution_count": 18, "metadata": {}, "output_type": "execute_result" } ], "source": [ "t" ] }, { "cell_type": "code", "execution_count": 15, "id": "53bd0e19", "metadata": {}, "outputs": [], "source": [ "b = b'{\\n error = \"anki: no client proxy connect\"\\n}'" ] }, { "cell_type": "code", "execution_count": 16, "id": "9d89217c", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{\n", " error = \"anki: no client proxy connect\"\n", "}\n" ] } ], "source": [ "print(b.decode())" ] }, { "cell_type": "code", "execution_count": null, "id": "203e9f90", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.9.12" } }, "nbformat": 4, "nbformat_minor": 5 }