basic-memory 0.10.1__py3-none-any.whl → 0.12.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of basic-memory might be problematic. Click here for more details.
- basic_memory/__init__.py +1 -1
- basic_memory/api/app.py +42 -3
- basic_memory/cli/app.py +0 -7
- basic_memory/cli/commands/db.py +15 -2
- basic_memory/cli/commands/mcp.py +8 -1
- basic_memory/cli/commands/sync.py +1 -0
- basic_memory/cli/commands/tool.py +30 -17
- basic_memory/cli/main.py +16 -7
- basic_memory/config.py +71 -12
- basic_memory/db.py +3 -1
- basic_memory/file_utils.py +3 -0
- basic_memory/markdown/entity_parser.py +16 -7
- basic_memory/markdown/utils.py +21 -13
- basic_memory/mcp/prompts/continue_conversation.py +7 -7
- basic_memory/mcp/prompts/search.py +6 -6
- basic_memory/mcp/resources/ai_assistant_guide.md +5 -5
- basic_memory/mcp/server.py +2 -2
- basic_memory/mcp/tools/__init__.py +2 -2
- basic_memory/mcp/tools/read_note.py +3 -4
- basic_memory/mcp/tools/search.py +64 -28
- basic_memory/mcp/tools/write_note.py +3 -1
- basic_memory/repository/search_repository.py +11 -11
- basic_memory/schemas/search.py +2 -2
- basic_memory/services/context_service.py +1 -1
- basic_memory/services/entity_service.py +10 -10
- basic_memory/services/link_resolver.py +8 -1
- basic_memory/services/search_service.py +3 -23
- basic_memory/sync/sync_service.py +60 -23
- basic_memory/utils.py +10 -2
- {basic_memory-0.10.1.dist-info → basic_memory-0.12.0.dist-info}/METADATA +44 -6
- {basic_memory-0.10.1.dist-info → basic_memory-0.12.0.dist-info}/RECORD +34 -34
- {basic_memory-0.10.1.dist-info → basic_memory-0.12.0.dist-info}/entry_points.txt +1 -0
- {basic_memory-0.10.1.dist-info → basic_memory-0.12.0.dist-info}/WHEEL +0 -0
- {basic_memory-0.10.1.dist-info → basic_memory-0.12.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: basic-memory
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.12.0
|
|
4
4
|
Summary: Local-first knowledge management combining Zettelkasten with knowledge graphs
|
|
5
5
|
Project-URL: Homepage, https://github.com/basicmachines-co/basic-memory
|
|
6
6
|
Project-URL: Repository, https://github.com/basicmachines-co/basic-memory
|
|
@@ -47,8 +47,8 @@ Basic Memory lets you build persistent knowledge through natural conversations w
|
|
|
47
47
|
Claude, while keeping everything in simple Markdown files on your computer. It uses the Model Context Protocol (MCP) to
|
|
48
48
|
enable any compatible LLM to read and write to your local knowledge base.
|
|
49
49
|
|
|
50
|
-
- Website:
|
|
51
|
-
- Documentation:
|
|
50
|
+
- Website: https://basicmachines.co
|
|
51
|
+
- Documentation: https://memory.basicmachines.co
|
|
52
52
|
|
|
53
53
|
## Pick up your conversation right where you left off
|
|
54
54
|
|
|
@@ -296,6 +296,43 @@ Examples of relations:
|
|
|
296
296
|
- documented_in [[Coffee Journal]]
|
|
297
297
|
```
|
|
298
298
|
|
|
299
|
+
## Using with VS Code
|
|
300
|
+
For one-click installation, click one of the install buttons below...
|
|
301
|
+
|
|
302
|
+
[](https://insiders.vscode.dev/redirect/mcp/install?name=basic-memory&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22basic-memory%22%2C%22mcp%22%5D%7D) [](https://insiders.vscode.dev/redirect/mcp/install?name=basic-memory&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22basic-memory%22%2C%22mcp%22%5D%7D&quality=insiders)
|
|
303
|
+
|
|
304
|
+
You can use Basic Memory with VS Code to easily retrieve and store information while coding. Click the installation buttons above for one-click setup, or follow the manual installation instructions below.
|
|
305
|
+
|
|
306
|
+
### Manual Installation
|
|
307
|
+
|
|
308
|
+
Add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing `Ctrl + Shift + P` and typing `Preferences: Open User Settings (JSON)`.
|
|
309
|
+
|
|
310
|
+
```json
|
|
311
|
+
{
|
|
312
|
+
"mcp": {
|
|
313
|
+
"servers": {
|
|
314
|
+
"basic-memory": {
|
|
315
|
+
"command": "uvx",
|
|
316
|
+
"args": ["basic-memory", "mcp"]
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
```
|
|
322
|
+
|
|
323
|
+
Optionally, you can add it to a file called `.vscode/mcp.json` in your workspace. This will allow you to share the configuration with others.
|
|
324
|
+
|
|
325
|
+
```json
|
|
326
|
+
{
|
|
327
|
+
"servers": {
|
|
328
|
+
"basic-memory": {
|
|
329
|
+
"command": "uvx",
|
|
330
|
+
"args": ["basic-memory", "mcp"]
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
```
|
|
335
|
+
|
|
299
336
|
## Using with Claude Desktop
|
|
300
337
|
|
|
301
338
|
Basic Memory is built using the MCP (Model Context Protocol) and works with the Claude desktop app (https://claude.ai/):
|
|
@@ -319,7 +356,8 @@ for OS X):
|
|
|
319
356
|
}
|
|
320
357
|
```
|
|
321
358
|
|
|
322
|
-
If you want to use a specific project (see [Multiple Projects](#multiple-projects)
|
|
359
|
+
If you want to use a specific project (see [Multiple Projects](docs/User%20Guide.md#multiple-projects)), update your
|
|
360
|
+
Claude Desktop
|
|
323
361
|
config:
|
|
324
362
|
|
|
325
363
|
```json
|
|
@@ -354,7 +392,7 @@ basic-memory sync --watch
|
|
|
354
392
|
write_note(title, content, folder, tags) - Create or update notes
|
|
355
393
|
read_note(identifier, page, page_size) - Read notes by title or permalink
|
|
356
394
|
build_context(url, depth, timeframe) - Navigate knowledge graph via memory:// URLs
|
|
357
|
-
|
|
395
|
+
search_notes(query, page, page_size) - Search across your knowledge base
|
|
358
396
|
recent_activity(type, depth, timeframe) - Find recently updated information
|
|
359
397
|
canvas(nodes, edges, title, folder) - Generate knowledge visualizations
|
|
360
398
|
```
|
|
@@ -395,4 +433,4 @@ and submitting PRs.
|
|
|
395
433
|
</picture>
|
|
396
434
|
</a>
|
|
397
435
|
|
|
398
|
-
Built with ♥️ by Basic Machines
|
|
436
|
+
Built with ♥️ by Basic Machines
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
basic_memory/__init__.py,sha256=
|
|
2
|
-
basic_memory/config.py,sha256=
|
|
3
|
-
basic_memory/db.py,sha256=
|
|
1
|
+
basic_memory/__init__.py,sha256=RtfHqJWLL9RssuJgBRYNskTtP0k1jVVukaswAEsHjfU,123
|
|
2
|
+
basic_memory/config.py,sha256=ONdKTjIS_W2d0k6epzV0dY0Gdv8OC_woBkK-ElXpxW8,9211
|
|
3
|
+
basic_memory/db.py,sha256=8SmrmNAlJlmYT9yIJiPwNq8SN8mB2rbW5t33Rqpyl2I,6052
|
|
4
4
|
basic_memory/deps.py,sha256=yI6RL_5-8LXw7ywSJ_84BXAczDtv2h9GFLw-E9XDJFg,5770
|
|
5
|
-
basic_memory/file_utils.py,sha256=
|
|
6
|
-
basic_memory/utils.py,sha256=
|
|
5
|
+
basic_memory/file_utils.py,sha256=eaxTKLLEbTIy_Mb_Iv_Dmt4IXAJSrZGVi-Knrpyci3E,6700
|
|
6
|
+
basic_memory/utils.py,sha256=2dbUbChLn5gwQgPY-m5XKYOBbeKFEwnRUrZDsm2kGIE,5026
|
|
7
7
|
basic_memory/alembic/alembic.ini,sha256=IEZsnF8CbbZnkwBr67LzKKNobHuzTaQNUvM8Psop5xc,3733
|
|
8
8
|
basic_memory/alembic/env.py,sha256=GyQpEpQu84flqAdelxR0-H9nbkHrVoCboYGfmltBDoA,2737
|
|
9
9
|
basic_memory/alembic/migrations.py,sha256=lriHPXDdBLSNXEW3QTpU0SJKuVd1V-8NrVkpN3qfsUQ,718
|
|
@@ -13,7 +13,7 @@ basic_memory/alembic/versions/502b60eaa905_remove_required_from_entity_permalink
|
|
|
13
13
|
basic_memory/alembic/versions/b3c3938bacdb_relation_to_name_unique_index.py,sha256=RsGymQzfRXV1LSNKiyi0lMilTxW1NgwS9jR67ye2apI,1428
|
|
14
14
|
basic_memory/alembic/versions/cc7172b46608_update_search_index_schema.py,sha256=Lbo3dEzdId_vKRFe3jMkGFF3dNQpblPIQa4Bh7np-zA,4020
|
|
15
15
|
basic_memory/api/__init__.py,sha256=wCpj-21j1D0KzKl9Ql6unLBVFY0K1uGp_FeSZRKtqpk,72
|
|
16
|
-
basic_memory/api/app.py,sha256=
|
|
16
|
+
basic_memory/api/app.py,sha256=yoVghdAdkPrnYRdtSgUEJ1tS1FAjfxpGOh40DVL9myQ,2896
|
|
17
17
|
basic_memory/api/routers/__init__.py,sha256=SKuL-weA58hYj0NOMCQRfmsaumlNjjyVHDXNpRO38bQ,305
|
|
18
18
|
basic_memory/api/routers/knowledge_router.py,sha256=iYuBguMb6ERitAwoelSejBYJqLTGfjpkzAHrqwTKjVE,5876
|
|
19
19
|
basic_memory/api/routers/memory_router.py,sha256=W_uHJe2c4XN96mFj6XNvUH6INVbl1BMxy0KUchLcbxU,5421
|
|
@@ -21,47 +21,47 @@ basic_memory/api/routers/project_info_router.py,sha256=Qv12_QL3SRpo7bPcpAjizJmkZ
|
|
|
21
21
|
basic_memory/api/routers/resource_router.py,sha256=WEJEqEaY_yTKj5-U-rW4kXQKUcJflykgwI6_g_R41ck,8058
|
|
22
22
|
basic_memory/api/routers/search_router.py,sha256=R_a5OF5_8rCjmoOMhmw3M4VLCy6I1KLGJ-otSLB0rbI,1953
|
|
23
23
|
basic_memory/cli/__init__.py,sha256=arcKLAWRDhPD7x5t80MlviZeYzwHZ0GZigyy3NKVoGk,33
|
|
24
|
-
basic_memory/cli/app.py,sha256=
|
|
25
|
-
basic_memory/cli/main.py,sha256=
|
|
24
|
+
basic_memory/cli/app.py,sha256=qTalo-Pk2zJCa6u4xQD0ORkCnu_e1Bjw0stPIJWdmxQ,1655
|
|
25
|
+
basic_memory/cli/main.py,sha256=52mBF4HWBG0WGlqXzwn5pDpVFNap51aNEimybZ28lpM,1656
|
|
26
26
|
basic_memory/cli/commands/__init__.py,sha256=3oojcC-Y-4RPqff9vtwWziT_T4uvBVicL0pSHNilVkU,393
|
|
27
|
-
basic_memory/cli/commands/db.py,sha256
|
|
27
|
+
basic_memory/cli/commands/db.py,sha256=-jgVH2fs_s1vvBNJx_FWspQVHv0F6Qd7V5ZPxtYn_jQ,1125
|
|
28
28
|
basic_memory/cli/commands/import_chatgpt.py,sha256=M4_oUN9o_BaW5jpKQu2pTEybivB5ccVolhdZzmhLOsI,8162
|
|
29
29
|
basic_memory/cli/commands/import_claude_conversations.py,sha256=D_4-0xFKkZka7xFvvW8OkgjLv3TFqsC_VuB2Z-Y3avU,6827
|
|
30
30
|
basic_memory/cli/commands/import_claude_projects.py,sha256=KzUuf3wrlvJlqTWCzoLRrNxD3OYNteRXaTFj5IB1FA8,6649
|
|
31
31
|
basic_memory/cli/commands/import_memory_json.py,sha256=zqpU4eCzQXx04aRsigddJAyhvklmTgSAzeRTuEdNw0c,5194
|
|
32
|
-
basic_memory/cli/commands/mcp.py,sha256=
|
|
32
|
+
basic_memory/cli/commands/mcp.py,sha256=01yBzmFAwxqDUvTQWu--aynvWlHD8P8D3syYUqGJFQw,998
|
|
33
33
|
basic_memory/cli/commands/project.py,sha256=BSjdz07xDM3R4CUXggv1qhrWLJsEgvGFir6aOUzdr2Q,11330
|
|
34
34
|
basic_memory/cli/commands/status.py,sha256=nbs3myxaNtehEEJ4BBngPuKs-vqZTHNCCb0bTgDsE-s,5277
|
|
35
|
-
basic_memory/cli/commands/sync.py,sha256=
|
|
36
|
-
basic_memory/cli/commands/tool.py,sha256=
|
|
35
|
+
basic_memory/cli/commands/sync.py,sha256=3MD99jZuIQ16cKx6mvOtsCZR7FGFPU9Bb1WUQAb6VVY,8374
|
|
36
|
+
basic_memory/cli/commands/tool.py,sha256=7wte1TqjG__NcC7BB0BRLl8THB3t5eAngud0zVHBQ8k,9506
|
|
37
37
|
basic_memory/markdown/__init__.py,sha256=DdzioCWtDnKaq05BHYLgL_78FawEHLpLXnp-kPSVfIc,501
|
|
38
|
-
basic_memory/markdown/entity_parser.py,sha256=
|
|
38
|
+
basic_memory/markdown/entity_parser.py,sha256=I4K1Uq8kLYBmShIZQuXI9FuQjzpoV924-jDH9dIiYb8,4420
|
|
39
39
|
basic_memory/markdown/markdown_processor.py,sha256=S5ny69zu2dlqO7tWJoLrpLSzg8emQIDq7Du7olpJUsk,4968
|
|
40
40
|
basic_memory/markdown/plugins.py,sha256=gtIzKRjoZsyvBqLpVNnrmzl_cbTZ5ZGn8kcuXxQjRko,6639
|
|
41
41
|
basic_memory/markdown/schemas.py,sha256=eyxYCr1hVyWmImcle0asE5It_DD6ARkqaBZYu1KK5n4,1896
|
|
42
|
-
basic_memory/markdown/utils.py,sha256=
|
|
42
|
+
basic_memory/markdown/utils.py,sha256=wr7KnDMThgnztkOoqSG_ANPhwNBoPkyjYP1sA1Wnxe4,3270
|
|
43
43
|
basic_memory/mcp/__init__.py,sha256=dsDOhKqjYeIbCULbHIxfcItTbqudEuEg1Np86eq0GEQ,35
|
|
44
44
|
basic_memory/mcp/async_client.py,sha256=Eo345wANiBRSM4u3j_Vd6Ax4YtMg7qbWd9PIoFfj61I,236
|
|
45
45
|
basic_memory/mcp/main.py,sha256=0kbcyf1PxRC1bLnHv2zzParfJ6cOq7Am9ScF9UoI50U,703
|
|
46
|
-
basic_memory/mcp/server.py,sha256=
|
|
46
|
+
basic_memory/mcp/server.py,sha256=xrgG602nqrS6XZAUYl-KfpEFH78eKtJMO0WyKo4H9VE,307
|
|
47
47
|
basic_memory/mcp/prompts/__init__.py,sha256=-Bl9Dgj2TD9PULjzggPqXuvPEjWCRy7S9Yg03h2-U7A,615
|
|
48
48
|
basic_memory/mcp/prompts/ai_assistant_guide.py,sha256=8TI5xObiRVcwv6w9by1xQHlX0whvyE7-LGsiqDMRTFg,821
|
|
49
|
-
basic_memory/mcp/prompts/continue_conversation.py,sha256=
|
|
49
|
+
basic_memory/mcp/prompts/continue_conversation.py,sha256=I1FdNXIsSBKsu2ABj8TRRr-mdZKZ1K8LMCUfAik5Iqs,4424
|
|
50
50
|
basic_memory/mcp/prompts/recent_activity.py,sha256=7607MWiGJWY0vPurhVII17LxLZlXY_zmH3xH9LfT6SY,2793
|
|
51
|
-
basic_memory/mcp/prompts/search.py,sha256=
|
|
51
|
+
basic_memory/mcp/prompts/search.py,sha256=Z4eb1HFb46p9Ezz9nDLsqedePDQtxWafmpcnR_NZUtA,6282
|
|
52
52
|
basic_memory/mcp/prompts/utils.py,sha256=u_bG8DMtMMERvGPJfA3gbl5VAs0xmkuK8ZJBkY8xyV8,5371
|
|
53
|
-
basic_memory/mcp/resources/ai_assistant_guide.md,sha256=
|
|
54
|
-
basic_memory/mcp/tools/__init__.py,sha256=
|
|
53
|
+
basic_memory/mcp/resources/ai_assistant_guide.md,sha256=qnYWDkYlb-JmKuOoZ5llmRas_t4dWDXB_i8LE277Lgs,14777
|
|
54
|
+
basic_memory/mcp/tools/__init__.py,sha256=prvB6M150ba8WT-v-tmo4Yfu4JG-0yCi6nfK4SsL7XI,882
|
|
55
55
|
basic_memory/mcp/tools/build_context.py,sha256=8xYRPpeYCEU8F9Dv_ctvbunZ8ciKwmFu9i8Pdv5vYfI,2891
|
|
56
56
|
basic_memory/mcp/tools/canvas.py,sha256=fHC90eshnSSmROTBV-tBB-FSuXSpYVj_BcDrc96pWi0,2993
|
|
57
57
|
basic_memory/mcp/tools/delete_note.py,sha256=mnrgOv-D7f6nsgZIAK0Wvyn0dbkwCg8adW_xJd7jwc0,829
|
|
58
58
|
basic_memory/mcp/tools/project_info.py,sha256=pyoHpOMhjMIvZFku2iEIpXc2XDtbnNeb-OMrJlYR9LU,1710
|
|
59
59
|
basic_memory/mcp/tools/read_content.py,sha256=PKnvLzNmHfzoIxRKXNaYW5P5q0d1azVwG9juPXPYeQo,8148
|
|
60
|
-
basic_memory/mcp/tools/read_note.py,sha256=
|
|
60
|
+
basic_memory/mcp/tools/read_note.py,sha256=e9un3pKPiIgUzY5x-aFYxBkgQMDwrLAYMMqmDzgq0FQ,6451
|
|
61
61
|
basic_memory/mcp/tools/recent_activity.py,sha256=S0LgIk9RaeYzIsi2FIHs0KK7R1K-LJy3QaSokGlY9ew,3501
|
|
62
|
-
basic_memory/mcp/tools/search.py,sha256=
|
|
62
|
+
basic_memory/mcp/tools/search.py,sha256=TU9Q89rv9lCUmAWjxcc-J_jFQE8CAQM0lM_b-J8VLRc,3786
|
|
63
63
|
basic_memory/mcp/tools/utils.py,sha256=tOWklfSlDcoAJCRBmxkCVwkTY_TDBa5vOGxzU8J5eiQ,13636
|
|
64
|
-
basic_memory/mcp/tools/write_note.py,sha256=
|
|
64
|
+
basic_memory/mcp/tools/write_note.py,sha256=d7vb8vqwLmDJfSOYV_ZWJlbJD9tZyKvLlb7LTMgPXSM,4990
|
|
65
65
|
basic_memory/models/__init__.py,sha256=Bf0xXV_ryndogvZDiVM_Wb6iV2fHUxYNGMZNWNcZi0s,307
|
|
66
66
|
basic_memory/models/base.py,sha256=4hAXJ8CE1RnjKhb23lPd-QM7G_FXIdTowMJ9bRixspU,225
|
|
67
67
|
basic_memory/models/knowledge.py,sha256=lbKd8VOOVPqXtIhNMY30bIokoQutFjLpHwLD5At90MY,6644
|
|
@@ -72,7 +72,7 @@ basic_memory/repository/observation_repository.py,sha256=BOcy4wARqCXu-thYyt7mPxt
|
|
|
72
72
|
basic_memory/repository/project_info_repository.py,sha256=nHWzs0WBQ366WfzIYZgnAfU6tyQ_8slEszWNlDSeIlo,336
|
|
73
73
|
basic_memory/repository/relation_repository.py,sha256=DwpTcn9z_1sZQcyMOUABz1k1VSwo_AU63x2zR7aerTk,2933
|
|
74
74
|
basic_memory/repository/repository.py,sha256=cZFCjp7Q-fKwjEYe3ubG1rgYbPEQXsocAn9LgFNXCG0,12071
|
|
75
|
-
basic_memory/repository/search_repository.py,sha256=
|
|
75
|
+
basic_memory/repository/search_repository.py,sha256=z6oX6wCLo2JaW2hawtgiyxmTsboKTjuO7cgXsFsQhmA,11607
|
|
76
76
|
basic_memory/schemas/__init__.py,sha256=KHzF2lZhYXRsH2g6tV5Oivlk1EHFfrlbKuiRllqnBzs,1570
|
|
77
77
|
basic_memory/schemas/base.py,sha256=dwnaI5fJXsdp81mdH0ZpmJ-WICY-0M7ZPWeW5OUgBG8,5685
|
|
78
78
|
basic_memory/schemas/delete.py,sha256=UAR2JK99WMj3gP-yoGWlHD3eZEkvlTSRf8QoYIE-Wfw,1180
|
|
@@ -80,20 +80,20 @@ basic_memory/schemas/memory.py,sha256=qqQm89nZQKtrhquHlRnR6LaSWynPi4MgtcMcqvGH5z
|
|
|
80
80
|
basic_memory/schemas/project_info.py,sha256=qsZfafp8bn2oqCizX_CVwJZS4HE79kOmaNiNK9C_9_w,3380
|
|
81
81
|
basic_memory/schemas/request.py,sha256=58r9mPGc4Am9rR_zGzo-yqXcsrl5I6n3M5LjGK5gFFk,1626
|
|
82
82
|
basic_memory/schemas/response.py,sha256=lVYR31DTtSeFRddGWX_wQWnQgyiwX0LEpNJ4f4lKpTM,6440
|
|
83
|
-
basic_memory/schemas/search.py,sha256=
|
|
83
|
+
basic_memory/schemas/search.py,sha256=21GKEQEM3lebJfaTP_gz6DZR4tusx6AeR2E13LtjOvs,3650
|
|
84
84
|
basic_memory/services/__init__.py,sha256=oop6SKmzV4_NAYt9otGnupLGVCCKIVgxEcdRQWwh25I,197
|
|
85
|
-
basic_memory/services/context_service.py,sha256=
|
|
86
|
-
basic_memory/services/entity_service.py,sha256=
|
|
85
|
+
basic_memory/services/context_service.py,sha256=vUo4j-_UDDlpL_PxoNTqmG5kZ2m7UfPyIz6FY3SCU7o,9715
|
|
86
|
+
basic_memory/services/entity_service.py,sha256=lCdqRnAkaolt_pr48lFxRXAj2YRS-nasJTkepBf3zlU,12915
|
|
87
87
|
basic_memory/services/exceptions.py,sha256=VGlCLd4UD2w5NWKqC7QpG4jOM_hA7jKRRM-MqvEVMNk,288
|
|
88
88
|
basic_memory/services/file_service.py,sha256=7uLVkcFMFj20srdch8c6u9T6nO5X4wHgcXdL81pGV88,9935
|
|
89
|
-
basic_memory/services/link_resolver.py,sha256=
|
|
90
|
-
basic_memory/services/search_service.py,sha256=
|
|
89
|
+
basic_memory/services/link_resolver.py,sha256=3I3wp5HHpe17DNHhn1IG3_yWWHYtEZKRNL7I2j_AHos,3599
|
|
90
|
+
basic_memory/services/search_service.py,sha256=1K1YuWFVreKjn6LkbOpl-zCmXYjqOQS1qB-yvkwu-zc,9817
|
|
91
91
|
basic_memory/services/service.py,sha256=V-d_8gOV07zGIQDpL-Ksqs3ZN9l3qf3HZOK1f_YNTag,336
|
|
92
92
|
basic_memory/sync/__init__.py,sha256=CVHguYH457h2u2xoM8KvOilJC71XJlZ-qUh8lHcjYj4,156
|
|
93
|
-
basic_memory/sync/sync_service.py,sha256=
|
|
93
|
+
basic_memory/sync/sync_service.py,sha256=R0mBgTRQP_o55ldzn4Il876D1eXVyJo32cgLcPjQPXk,23611
|
|
94
94
|
basic_memory/sync/watch_service.py,sha256=IliisNN8HMKLnBaF95wGHpA5WqRWujprWJVxOnAQ2yc,13468
|
|
95
|
-
basic_memory-0.
|
|
96
|
-
basic_memory-0.
|
|
97
|
-
basic_memory-0.
|
|
98
|
-
basic_memory-0.
|
|
99
|
-
basic_memory-0.
|
|
95
|
+
basic_memory-0.12.0.dist-info/METADATA,sha256=jtcnzL11Nr6pAEBENRwEUu5Z0qfHmGM7dyrxtap8ULQ,15054
|
|
96
|
+
basic_memory-0.12.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
97
|
+
basic_memory-0.12.0.dist-info/entry_points.txt,sha256=wvE2mRF6-Pg4weIYcfQ-86NOLZD4WJg7F7TIsRVFLb8,90
|
|
98
|
+
basic_memory-0.12.0.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
|
99
|
+
basic_memory-0.12.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|