Skip to main content

nondjango-storages - Because the API is great but dependency on Django is not.

Project description

nondjango.storages

Build Status Join the chat at https://gitter.im/nondjango/storages

This package provides implementations of Django' File Storage API but without having Django as dependency. This is inspired on django-storages package, that implements several storages as Azure, Dropbox, SFTP and so, but depends on Django.

Why nondjango?

Django is recognized as a "beast" web framework, with everything and a sink. Is very good to have your needs covered. But when you want to fly light, Django is waaay too much.

After using Django for some time you realize that several parts are not really tied to Django and could be useful outside of it. Storage is one of this parts.

Why a Django interface if not using Django itself?

Then you end up doing little scripts to fit your needs. And your co-workers do the same. After that, a newcomer on the company (or to the project) will have to learn how to interact with half-dozen of ways to upload a file, depending on the project and backing storage choices like S3 or Azure or IPFS.

This makes maintenance harder and learning curve steeper.

Instead, stick with a well-known interface that have usage tutorials available online and is generic enough to not tie you on a vendor or implementation. Had you tried to exchange from SFTP to S3 on the past? Ideally, it should be as easy as pointing the driver.

Requirements & Compatibility

  • Python (3.5, 3.6, 3.7, 3.8)
  • boto3 for S3 backend
  • flit for installation from sources

Installation

You can install this library using pip:

pip install nondjango-storages

Or via sources, using Flit:

git clone https://github.com/alanjds/nondjango-storages.git
cd nondjango-storages
pip install flit
flit install

Quickstart

The interface loosely implements the Django's Storage class interface, described on nondjango.storages.BaseStorage. Right now there is implementations for FilesystemStorage and S3Storage only, aside from the TemporaryFilesystemStorage used on automated tests.

Instantiate the desired storage, BaseStorage.open() your filelike and manipulate it. When done, remember to .close() it. Closing the file is specially important on some storages, as S3.

Initializing some storage

As the storages are not tied to a central settings file, more than one can be instantiated at the same time.

from nondjango.storages import S3Storage, TemporaryFilesystemStorage

# Initializing a local temporary folder storage:
disposable_storage = TemporaryFilesystemStorage()

# Initializing an S3Storage:
S3_SETTINGS = {
    'AWS_ACCESS_KEY_ID': 'Q3AM3UQ867SPQQA43P2F',
    'AWS_SECRET_ACCESS_KEY': 'zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG',
    'AWS_S3_REGION_NAME': 'us-east-1',
    'AWS_S3_ENDPOINT_URL': 'https://play.min.io:9000',
    'AWS_S3_SIGNATURE_VERSION': 's3v4',
}
s3_storage = S3Storage(settings=S3_SETTINGS, workdir='s3://nondjango-storages-test/storage-test-readme/')

Opening and manipulating a file

Access files via BaseStorage.open() implementations, following the Django docs over its usage.

with s3_storage.open('spam.txt', 'w') as file_on_cloud:
    file_on_cloud.write('Eggs')

with disposable_storage.open('spam.txt', 'w') as file_on_disk:
    file_on_disk.write('Eggs')

If you are not using files as context managers, remember to close your files:

>>> file_on_cloud = s3_storage.open('span.txt', 'r')
>>> file_on_cloud.read()
'Eggs'
>>> file_on_cloud.close()

Advanced

Most of the generally-useful interface of Django Filestorage API is implemented, as BaseStorage .size(), .url(), .listdir(), .exists() and .delete(). Also some extra tools like .hash(), that computes or grabs the file hashes if available. For now, S3Storage keeps the MD5 and Sha256 of the files on upload. Filesystem-backed storages computes them on the fly.

>>> file_on_cloud = s3_storage.open('span.txt')
>>> file_on_cloud.hash('md5')
'9890f06976131702b942e59eda2f750a'
>>> file_on_cloud.hash('sha256')
'f1c1f57728f932efde20e53703ee5f96b1cebdc15b8578b7faa727c89dbfe03f'

Testing

In order to get started with testing, you will need to install tox. Once installed, you can then run one environment locally, to speed up your development cycle:

$ tox -e py37

Once you submit a pull request, your changes will be run against many environments with Travis CI.

License

This package is licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 and can undestand more at http://choosealicense.com/licenses/apache/ on the sidebar notes. Another copy is attached on the LICENSE file on the root of this repo.

Apache Licence v2.0 is a MIT-like licence. This means, in plain English:

  • It's truly open source
  • You can use it as you wish, for money or not
  • You can sublicense it (change the licence!!)
  • This way, you can even use it on your closed-source project As long as:
  • You cannot use the authors name, logos, etc, to endorse a project
  • You keep the authors copyright notices where this code got used, even on your closed-source project (come on, even Microsoft kept BSD notices on Windows about its TCP/IP stack :P)

API License?

After the Oracle vs Google claim, the copyright of APIs became a grey area. Despite personal believes, consider that the reimplemented API is of Django and Django is licensed as 3-Clause BSD. Such license is included on the LICENSE-DJANGO file in the root folder. This should be enough even if Oracle wins and come to buy Django somehow someday.

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

nondjango-storages-0.3.4.tar.gz (18.0 kB view details)

Uploaded Source

Built Distribution

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

nondjango_storages-0.3.4-py3-none-any.whl (16.2 kB view details)

Uploaded Python 3

File details

Details for the file nondjango-storages-0.3.4.tar.gz.

File metadata

  • Download URL: nondjango-storages-0.3.4.tar.gz
  • Upload date:
  • Size: 18.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.22.0

File hashes

Hashes for nondjango-storages-0.3.4.tar.gz
Algorithm Hash digest
SHA256 725fb7828319723ced0331be946b263d27b501b62dd99bfc642439eeacadb742
MD5 8d72ed2daa3d062b013bf6c8d3fe95d8
BLAKE2b-256 ba5a48505ed2a8272bf000f1486e7c8e38b065b57ccf7f5a76578724dcad65ee

See more details on using hashes here.

File details

Details for the file nondjango_storages-0.3.4-py3-none-any.whl.

File metadata

File hashes

Hashes for nondjango_storages-0.3.4-py3-none-any.whl
Algorithm Hash digest
SHA256 a5aaa7ffbd79f1719dffd099e477bad3b59003f74d5ed61208d5936918b3a19b
MD5 a122cb90b9c0f5b0ac9b0e7e3dcd5490
BLAKE2b-256 ee99eadc06c05180bb5d918b94cac8b937b21b9bb16f2e7b398297ed35362283

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