-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature: Add LightNode and MessageCache
A LightNode can synchronize on a subset, or domain, of aleph.im messages. It relies on the MessageCache, which manages a message database with peewee.
- Loading branch information
1 parent
47a120a
commit 6f286fc
Showing
17 changed files
with
1,870 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ | |
*.pot | ||
__pycache__/* | ||
.cache/* | ||
cache/**/* | ||
.*.swp | ||
*/.ipynb_checkpoints/* | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
from .abstract import AlephClient, AuthenticatedAlephClient | ||
from .authenticated_http import AuthenticatedAlephHttpClient | ||
from .http import AlephHttpClient | ||
from .light_node import LightNode | ||
from .message_cache import MessageCache | ||
|
||
__all__ = [ | ||
"AlephClient", | ||
"AuthenticatedAlephClient", | ||
"AlephHttpClient", | ||
"AuthenticatedAlephHttpClient", | ||
"MessageCache", | ||
"LightNode", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.