https://github.com/aimhubio/aimrocks

🎯 aimrocks 🎸 — python & cython bindings for RocksDB. Batteries included! 🔋

https://github.com/aimhubio/aimrocks

Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • â—‹
    CITATION.cff file
  • ✓
    codemeta.json file
    Found codemeta.json file
  • ✓
    .zenodo.json file
    Found .zenodo.json file
  • â—‹
    DOI references
  • â—‹
    Academic publication links
  • â—‹
    Academic email domains
  • â—‹
    Institutional organization owner
  • â—‹
    JOSS paper metadata
  • â—‹
    Scientific vocabulary similarity
    Low similarity (4.2%) to scientific vocabulary

Keywords

embedded-database rocksdb
Last synced: 5 months ago · JSON representation

Repository

🎯 aimrocks 🎸 — python & cython bindings for RocksDB. Batteries included! 🔋

Basic Info
  • Host: GitHub
  • Owner: aimhubio
  • License: apache-2.0
  • Language: Cython
  • Default Branch: master
  • Homepage:
  • Size: 1.5 MB
Statistics
  • Stars: 32
  • Watchers: 7
  • Forks: 9
  • Open Issues: 10
  • Releases: 1
Topics
embedded-database rocksdb
Created over 4 years ago · Last pushed 6 months ago
Metadata Files
Readme License

README.md

aimrocks: python wrapper for rocksdb

aimrocks is a python package written in Cython, similar to python-rocksdb.

It uses statically linked libraries for rocksdb (version 6.29.5) and compression libraries it depends on, so aimrocks can be used out of the box (without requiring additional installation of any of those).

Example usage

```python import aimrocks

dboptions = dict( createifmissing=True, paranoidchecks=False, )

dbpath = '/tmp/exampledb' rocksdb = aimrocks.DB(dbpath, aimrocks.Options(**dboptions), readonly=False)

batch = aimrocks.WriteBatch() batch.put(b'key1', b'value1') batch.put(b'key1', b'value1') ...

rocks_db.write(batch)

```

Owner

  • Name: Aim
  • Login: aimhubio
  • Kind: organization
  • Location: Berkeley, California

AI Development Environment

GitHub Events

Total
  • Create event: 4
  • Issues event: 2
  • Release event: 1
  • Watch event: 5
  • Issue comment event: 6
  • Push event: 20
  • Pull request review event: 1
  • Pull request event: 2
  • Fork event: 4
Last Year
  • Create event: 4
  • Issues event: 2
  • Release event: 1
  • Watch event: 5
  • Issue comment event: 6
  • Push event: 20
  • Pull request review event: 1
  • Pull request event: 2
  • Fork event: 4

Issues and Pull Requests

Last synced: 5 months ago

All Time
  • Total issues: 14
  • Total pull requests: 26
  • Average time to close issues: 6 months
  • Average time to close pull requests: about 2 months
  • Total issue authors: 8
  • Total pull request authors: 7
  • Average comments per issue: 1.93
  • Average comments per pull request: 1.04
  • Merged pull requests: 20
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 1
  • Pull requests: 4
  • Average time to close issues: N/A
  • Average time to close pull requests: 39 minutes
  • Issue authors: 1
  • Pull request authors: 2
  • Average comments per issue: 0.0
  • Average comments per pull request: 0.75
  • Merged pull requests: 1
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • raphaelauv (5)
  • ofek (2)
  • judahrand (2)
  • synapticarbors (1)
  • MikeBakerCZ (1)
  • khlevon (1)
  • d-cunningham (1)
  • hadim (1)
Pull Request Authors
  • mahnerak (11)
  • alberttorosyan (6)
  • judahrand (4)
  • mihran113 (2)
  • 2-5 (1)
  • hadim (1)
  • raphaelauv (1)
Top Labels
Issue Labels
Pull Request Labels

Dependencies

requirements.dev.txt pypi
  • Cython ==3.0.0a9
  • flake8 *
  • pytest *
  • twine *
  • wheel *
.github/workflows/python-package.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
  • satackey/action-docker-layer-caching v0.0.11 composite
Dockerfile docker
  • ${FROM} latest build
  • deps latest build
  • rocksdb latest build
  • wheels latest build
pyproject.toml pypi
setup.py pypi