Skip to main content

An asynchronous object-spatial Python library for persistence and business logic application layers.

Project description

jvspatial

An async-first Python library for building graph-based spatial applications with FastAPI integration. Provides entity-centric database operations with automatic context management.

GitHub release (latest by date) GitHub Workflow Status GitHub issues GitHub pull requests GitHub

Table of Contents

Overview

jvspatial is an async-first Python library for building graph-based spatial applications with FastAPI integration. It provides entity-centric database operations with automatic context management.

Inspired by Jaseci's object-spatial paradigm and leveraging Python's async capabilities, jvspatial empowers developers to model complex relationships, traverse object graphs, and implement agent-based architectures that scale with modern cloud-native concurrency requirements.

🚀 Serverless Ready: Deploy to AWS Lambda with zero configuration changes. Enable serverless_mode=True and your FastAPI app is automatically wrapped with Mangum for Lambda compatibility. Includes native DynamoDB support for persistent storage in serverless environments.

Key Design Principles:

  • Hierarchy: Object → Node → Edge/Walker inheritance
  • Entity-Centric: Direct database operations via entity methods
  • Unified Decorators: @attribute for entity attributes, @endpoint for API endpoints
  • Automatic Context: Server automatically provides database context to entities
  • Essential CRUD: Core database operations with pagination support
  • Unified Configuration: Single Config class for all settings
  • Async-First: Built for modern Python async/await patterns

Key Features

🎯 Inheritance Hierarchy

  • Object: Base class for all entities
  • Node: Graph nodes with spatial data (inherits from Object)
  • Edge: Relationships between nodes (inherits from Object)
  • Walker: Graph traversal and pathfinding (inherits from Object)
  • Root: Singleton root node (inherits from Node)

🎨 Unified Decorator System

  • @attribute - Define entity attributes with protection, transient flags, and validation
  • @endpoint - Unified endpoint decorator for both functions and Walker classes
  • Automatic parameter and response schema generation

🗄️ Entity-Centric Database Operations

  • Entity methods: Entity.get(), Entity.find(), Entity.create(), entity.save(), entity.delete()
  • Automatic context management
  • Support for JSON, SQLite, MongoDB, and DynamoDB backends
  • Multi-database support with prime database for core persistence
  • Custom database registration for extensibility
  • Pagination with ObjectPager

☁️ Serverless Deployment (AWS Lambda)

  • Zero-configuration Lambda deployment with serverless_mode=True
  • Automatic Mangum integration for FastAPI → Lambda compatibility
  • Native DynamoDB support for persistent storage in serverless environments
  • Handler automatically exposed at module level for Lambda
  • Works seamlessly with API Gateway
  • See Lambda Example for complete deployment guide

⚙️ Unified Configuration

  • Single Config class for all settings
  • Environment variable support
  • Type-safe configuration

🚀 FastAPI Integration

  • Built-in FastAPI server with automatic OpenAPI documentation
  • Automatic endpoint registration from decorators
  • Authentication and authorization with automatic endpoint registration when enabled
  • Response schema definitions with examples
  • Entity-centric CRUD operations
  • Serverless deployment to AWS Lambda with automatic handler setup

Installation

# Core installation
pip install jvspatial

# With serverless support (AWS Lambda + DynamoDB)
pip install jvspatial[serverless]

Quick Start

💡 Standard Examples: For production-ready API implementations, see:

Basic Example

from jvspatial.api import Server, endpoint
from jvspatial.core import Node

# Create server (entity-centric operations available automatically)
server = Server(
    title="My API",
    db_type="json",
    db_path="./jvdb",
    auth_enabled=False  # Set to True to enable authentication
)

# Define entity
class User(Node):
    name: str = ""
    email: str = ""

# Create endpoint
@endpoint("/users/{user_id}", methods=["GET"])
async def get_user(user_id: str):
    user = await User.get(user_id)
    if not user:
        from fastapi import HTTPException
        raise HTTPException(status_code=404, detail="User not found")
    return {"user": user.export()}

if __name__ == "__main__":
    server.run()

Serverless Deployment (AWS Lambda)

Deploy to AWS Lambda with zero configuration changes:

from jvspatial.api import Server, endpoint
from jvspatial.core import Node

# Enable serverless mode - handler is automatically created and exposed
server = Server(
    title="Lambda API",
    serverless_mode=True,  # Automatic Lambda handler setup
    db_type="dynamodb",    # Use DynamoDB for persistent storage
    dynamodb_table_name="myapp",
    dynamodb_region="us-east-1",
)

class Product(Node):
    name: str = ""
    price: float = 0.0

@endpoint("/products", methods=["GET"])
async def list_products():
    products = await Product.find({})
    return {"products": [p.export() for p in products]}

# Handler is automatically available at module level for Lambda
# No manual assignment needed! AWS Lambda will call: lambda_example.handler

Deployment Steps:

  1. Install: pip install jvspatial[serverless]
  2. Package your code and dependencies
  3. Set Lambda handler to: your_module.handler
  4. Configure API Gateway trigger
  5. Deploy!

See the complete Lambda example for full deployment guide.

Core Concepts

Entity Definition and Attributes

from jvspatial.core import Node
from jvspatial.core.annotations import attribute

class User(Node):
    name: str = ""
    email: str = ""
    cache: dict = attribute(transient=True, default_factory=dict)

Unified Endpoint Decorator

The @endpoint decorator works with both functions and Walker classes:

from jvspatial.api import Server, endpoint
from jvspatial.core import Node

server = Server(title="My API", db_type="json", db_path="./jvdb")

# Function endpoint
@endpoint("/api/users", methods=["GET"])
async def list_users(page: int = 1, per_page: int = 10):
    from jvspatial.core.pager import ObjectPager
    pager = ObjectPager(User, page_size=per_page)
    users = await pager.get_page(page=page)
    return {"users": [user.export() for user in users]}

# Authenticated endpoint
@endpoint("/api/admin", methods=["GET"], auth=True, roles=["admin"])
async def admin_panel():
    return {"admin": "dashboard"}

# Endpoint with response schema
from jvspatial.api.endpoints.response import ResponseField, success_response

@endpoint(
    "/api/users",
    methods=["GET"],
    response=success_response(
        data={
            "users": ResponseField(List[Dict], "List of users"),
            "total": ResponseField(int, "Total count")
        }
    )
)
async def get_users():
    return {"users": [], "total": 0}

Entity-Centric Database Operations

from jvspatial.core import Node

class User(Node):
    name: str = ""
    email: str = ""

# Entity-centric operations (no context needed - server provides it automatically)
user = await User.create(name="John", email="john@example.com")
users = await User.find({"context.name": "John"})  # Use context. prefix for fields
user = await User.get(user_id)  # Returns None if not found
if user:
    await user.save()
    await user.delete()

# Counting: use len() with find() - Object.count() doesn't exist
count = len(await User.find({"context.active": True}))

Configuration

Server Configuration

from jvspatial.api import Server

# Basic server
server = Server(
    title="My API",
    description="API description",
    version="1.0.0",
    db_type="json",
    db_path="./jvdb"
)

# Server with authentication
server = Server(
    title="Secure API",
    auth_enabled=True,  # Automatically registers /auth/register, /auth/login, /auth/logout
    jwt_auth_enabled=True,
    jwt_secret="your-secret-key",
    jwt_expire_minutes=60,
    db_type="json",
    db_path="./jvdb"
)

# Server without authentication (public API)
server = Server(
    title="Public API",
    auth_enabled=False,  # NO authentication endpoints registered
    db_type="json",
    db_path="./jvdb_public"
)

Authentication Behavior

  • auth_enabled=True: Server automatically registers authentication endpoints (/auth/register, /auth/login, /auth/logout)
  • auth_enabled=False: Authentication endpoints are NOT registered (public API)

Documentation

Getting Started

API Development

Advanced Topics

Contributors

Contributing

We welcome contributions! Please see our Contributing Guide for details.

License

This project is licensed under the MIT License - see the LICENSE file for details.

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

jvspatial-0.0.1.tar.gz (667.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jvspatial-0.0.1-py3-none-any.whl (271.6 kB view details)

Uploaded Python 3

File details

Details for the file jvspatial-0.0.1.tar.gz.

File metadata

  • Download URL: jvspatial-0.0.1.tar.gz
  • Upload date:
  • Size: 667.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for jvspatial-0.0.1.tar.gz
Algorithm Hash digest
SHA256 1881885df47755b5d767fc79112e140d968063f0d6d7cbbabd48f990c1d2875c
MD5 60ca97f6778bf8bf4275fc68c33cb5b3
BLAKE2b-256 4bc10cf834e86d741f2161969697b6d21c15fe33beac9037540ae4ace40a46da

See more details on using hashes here.

File details

Details for the file jvspatial-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: jvspatial-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 271.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for jvspatial-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 dddb826d6c2d139ea9ffa5afc6c1da29f83bdb332edcc7b503578304f3e61d72
MD5 1c6b9f9eaf35bd4a64cdf299706be47a
BLAKE2b-256 fac62dfa1e598bbc0f423e05a6d0ac93e89ef695d09964ccfc86d35c9d23ab04

See more details on using hashes here.

Supported by

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