{"id":15067213,"url":"https://github.com/d33p0st/modstore","last_synced_at":"2026-02-07T13:01:35.883Z","repository":{"id":257676223,"uuid":"859062396","full_name":"d33p0st/modstore","owner":"d33p0st","description":"Basic and Modded Data Structures with rust backend for speed and safety and python's comfortability.","archived":false,"fork":false,"pushed_at":"2025-01-04T22:51:31.000Z","size":5016,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-28T06:18:21.629Z","etag":null,"topics":["custom-data-structures","custom-data-type","data-structures","linux","modstore","python","python3","rust","unix","windows"],"latest_commit_sha":null,"homepage":"https://d33p0st.in/docs/modstore/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/d33p0st.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-18T02:38:58.000Z","updated_at":"2025-01-20T09:25:55.000Z","dependencies_parsed_at":"2024-10-24T01:43:08.248Z","dependency_job_id":"96f72823-aaec-4f6d-802f-eea5da8eeaa5","html_url":"https://github.com/d33p0st/modstore","commit_stats":null,"previous_names":["d33p0st/impurity","d33p0st/modstore"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/d33p0st/modstore","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d33p0st%2Fmodstore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d33p0st%2Fmodstore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d33p0st%2Fmodstore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d33p0st%2Fmodstore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/d33p0st","download_url":"https://codeload.github.com/d33p0st/modstore/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d33p0st%2Fmodstore/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29194408,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T12:38:28.597Z","status":"ssl_error","status_checked_at":"2026-02-07T12:38:23.888Z","response_time":63,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["custom-data-structures","custom-data-type","data-structures","linux","modstore","python","python3","rust","unix","windows"],"created_at":"2024-09-25T01:18:14.467Z","updated_at":"2026-02-07T13:01:35.867Z","avatar_url":"https://github.com/d33p0st.png","language":"Python","readme":"`Badges`\n\n[![Unit Tests](https://github.com/d33p0st/modstore/actions/workflows/tests.yml/badge.svg)](https://github.com/d33p0st/modstore/actions/workflows/tests.yml)\n[![Build](https://github.com/d33p0st/modstore/actions/workflows/generate_wheels.yml/badge.svg)](https://github.com/d33p0st/modstore/actions/workflows/generate_wheels.yml)\n[![codecov](https://codecov.io/gh/d33p0st/modstore/branch/main/graph/badge.svg?token=P27ASL6TGH)](https://codecov.io/gh/d33p0st/modstore)\n[![Downloads](https://static.pepy.tech/badge/modstore)](https://pepy.tech/project/modstore)\n\n# Modstore\n\nThis is a one stop library for all your data structure and algorithm needs. `Modstore`provides several python and rust (leveraging it's speed and reliability) based data-structures and algorithms. The Data Structures\noffered by `modstore` are custom built and well-written to simulate the\nstructure rules.\n\n#### Due to increasing code base, A proper README is in the works. For Convenience, all instructions are added in the docstrings of the classes and functions.\n\n## Module Pathways for importing.\n\n1. Data Structures\n\n    ```python\n    from modstore.datastructures import (\n        # HashTable\n        HashMap, # Normal Key-Value Pair Type HashTable.\n        AutoHashMap, # Uses hash function for keys, user provides values.\n        \n        # Built-in upgrade\n        List, # Modified List.\n        \n        # New, Stack\n        Stack, # Actual Stack.\n\n        # New, Queue\n        Queue, # Queue (supports dequeue, circular implementation for definite capacity)\n        PriorityQueue, # (supports dequeue, circular implementation for definite capacity)\n        priority, # A class for extended PriorityQueue customization.\n\n        # New, Singly Linked List\n        SingleLinkNode, # Node class for Singly Linked List\n        LinkedListOne, # Singly Linked List \n\n        # New, LRU Cache (implemented using singly linked list)\n        LRUCache,\n\n        # New, Doubly Linked List\n        DoubleLinkNode, # Node class for doubly linked list\n        LinkedListTwo, # Doubly Linked List\n\n        # New, Blockchain\n        BlockChain, # Blockchain data structure\n        Block, # Block class, cannot be initialized, only for internal purposes.\n\n        # New, Directed Acyclic Graphs (DAG)\n        DAG,\n\n        # Coming soon\n        MultiLinkNode, # node class for multi nodes\n        LinkedListMulti, # Multi linked list\n        BinaryNode, # Node class for Binary Tree\n        BinaryTree, # BinaryTree class.\n    )\n    ```\n2. Algorithms\n\n    ```python\n    from modstore.algorithms.searching import (\n        Search, # A class that contains static methods for searching\n        SearchObject, # A class to define one object that can be searched using different algorithms,\n    )\n\n    from modstore.algorithms.sorting import (\n        Sort, # A class that contains static methods for sorting\n        SortObject, # A class to define one object that can be sorted using different algorithms.\n    )\n    ```\n3. Prototype for [modkit](https://pypi.org/project/modkit/).\n\n    `modkit` is a new lib for programming tools, got more than `51k` downloads in the first week. The prototype for the same can be found under:\n\n    ```python\n    from modstore.tools import (\n        classtools, # aliased as override in modkit\n\n        CustomBoolean, # aliased as Possibility in modkit\n\n        Property, # aliased as the same name in modkit.\n    )\n    ```\n\n## Install from scratch\n\n\u003e Make sure you have cargo installed (Rust) and VS Build Tools for C++ (for windows)\n\n```bash\ngit clone https://github.com/d33p0st/modstore.git\npython -m pip install --upgrade pip\npip install maturin\ncd modstore\nmaturin develop\npip install .\n```\n\n## Issues\n\nFeel free to submit any issues [here](https://github.com/d33p0st/modstore/issues).\n\n## Pull Requests\n\nSubmit pull requests [here](https://github.com/d33p0st/modstore/pulls).","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd33p0st%2Fmodstore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fd33p0st%2Fmodstore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd33p0st%2Fmodstore/lists"}