Skip to content

Releases: najumitech/storage-python-sdk

Najumi Storage Python SDK v1.0.0

Choose a tag to compare

@najumitech najumitech released this 03 Jun 09:03
Immutable release. Only release title and notes can be modified.

Najumi Storage Python SDK v1.0.0

Initial public release of the official Python SDK for Najumi Storage.

The Najumi Storage Python SDK provides a simple, secure, and developer-friendly interface for interacting with the Najumi Storage platform from Python applications.

Features

  • Secure API Key Authentication
  • File Upload Support
  • File Download Support
  • File Deletion Support
  • File Listing Support
  • Bucket Statistics
  • Custom API Endpoint Support
  • Lightweight Architecture
  • Production Ready
  • Python 3.8+ Support

Installation

pip install najumi-storage

Quick Start

from najumi_storage import Storage

storage = Storage(
    bucket_id="YOUR_BUCKET_ID",
    access_key="YOUR_ACCESS_KEY",
    secret_key="YOUR_SECRET_KEY",
    base_url="https://storage-api.najumitech.com"
)

print(storage.stats())

Available Methods

Bucket Statistics

storage.stats()

List Files

storage.files()

Upload File

storage.upload("example.txt")

Download File

storage.download(
    shield="FILE_SHIELD",
    output_path="downloaded.txt"
)

Delete File

storage.delete("FILE_SHIELD")

Tested Features

This release has been successfully tested against the live Najumi Storage API:

  • Authentication
  • File Upload
  • File Download
  • File Deletion
  • File Listing
  • Bucket Statistics

Package Information

Package Name:

najumi-storage

PyPI:

https://pypi.org/project/najumi-storage/

Repository:

https://github.com/najumitech/storage-python-sdk

Compatibility

  • Python 3.8
  • Python 3.9
  • Python 3.10
  • Python 3.11
  • Python 3.12

License

MIT License

About Najumi Tech

Najumi Storage is a cloud storage platform developed by Najumi Tech to provide secure, scalable, and developer-friendly storage infrastructure for modern applications.

Website:

https://najumitech.com


Official Release: v1.0.0
Release Date: June 2026
Maintained by Najumi Tech