Skip to main content

Experimental Object-Document-Mapper using pydantic to store objects on Aleph.im

Project description

AARS: Aleph Active Record SDK

AARS's goal is to provide simple guardrails for the creation of document databases, based on Aleph's decentralized storage API. It provides tools for modelling, creating and managing decentralized databases, and a set of extensions for the Aleph Python SDK.

You can create a model of your planned database by using the Record class.

Usage

from aars import Record, Index, AARS


class Book(Record):
  title: str
  author: str


# initialize the SDK and post subsequent requests to the "MyLibrary" channel on Aleph
AARS(channel="MyLibrary")

# create and add an index for the book title
Index(Book, 'title')

# create & upload a book
new_book = await Book(title='Atlas Shrugged', author='Ayn Rand').save()

# retrieve a book by its ID
book = await Book.fetch(new_book.id_hash)[0]

# retrieve a book by its title
book = await Book.where_eq(title='Atlas Shrugged')[0]

ToDo:

  • Basic CRUD operations
  • Versioning
    • Use "amend" post_type for updates
    • Fetch revisions with messages endpoint
  • Basic indexing/querying operations
    • Single-key indexing
    • Multi-key indexing
    • Query with list of keys
    • Update indices function
    • Allow multiple items to share one index key
    • Add more comparators for where_() queries
      • where_gte()
      • where_lte()
      • where_contains()
    • Persist indices to lower startup time
  • Automatic multi-page fetching
  • Encapsulate Aleph SDK as class
  • Local VM caching
  • Add tests
  • Add documentation
  • Add to indices when fetching records
  • Test where_eq() for fetching multiple records
  • Add reindexing function on AARS
  • Add caching of records
    • Cache records retrieved by item_hash
    • Cache records retrieved by fetch_all/timeline
      • Add item_hashes endpoint to pyaleph for quick cross-checking of cache hashes

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aars-0.4.0.tar.gz (35.6 kB view details)

Uploaded Source

Built Distribution

aars-0.4.0-py3-none-any.whl (11.9 kB view details)

Uploaded Python 3

File details

Details for the file aars-0.4.0.tar.gz.

File metadata

  • Download URL: aars-0.4.0.tar.gz
  • Upload date:
  • Size: 35.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.16

File hashes

Hashes for aars-0.4.0.tar.gz
Algorithm Hash digest
SHA256 2077793fba3b16738200a36dc590d9a3e806aafbda3ee75c89c99288c80a970e
MD5 d33b33fc9384ee40eefdabee4aa2aed2
BLAKE2b-256 084958d1ed7fc1bb9d8fb79e866dd951724968829e715128b5d70c1631f280ab

See more details on using hashes here.

File details

Details for the file aars-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: aars-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 11.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.16

File hashes

Hashes for aars-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ae37531fc2a0cfebd989b823bc646393eba7878701216b562ea23d009f4d3b9f
MD5 f225ed13bdb6537d6282919726308d3c
BLAKE2b-256 c28f301d9b963c93a4217acc166bbfd69f7cf21bcf0be8335843d1af2967e5d7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page