A simple and flexible asset management application built upon the Django framework. Can also be used as a building block library for more complex applications.
This project has been archived.
The maintainers of this project have marked this project as archived. No new releases are expected.
Project description
Amabase
A simple and flexible asset management application built upon the Django framework.
Can also be used as a building block library for more complex applications.
(WORK IN PROGRESS)
Getting started
Install
pip install amabase
Use as a standalone application
Just run the provided amabase command line application.
This will automatically detect missing dependencies (and propose to install them), manage its custom SQLite database, and run a local development web server:
amabase web
Visit the local website at http://127.0.0.1:8000/. Default credentials for the local development web server:
- Username: your Linux or Windows username
- Password:
Debug123
See available commands:
amabase --help
Use in another Django project
Replace manage.py by:
#!/usr/bin/env python3
import os
from amabase import main
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'myproject.settings')
main()
In your settings.py file, remove settings that you would like to be managed by Amabase (see Amabase default settings).
It is possible and easier to remove all settings, so that everything is managed by Amabase, except the setting APPS which should indicate which applications should be added (otherwise, only infrastructure applications and amabase.base will be included).
If DATABASES is not provided, Amabase will create and use a custom SQLite database.
Components
Infrastructure:
amabase.utils: General-purpose shared utilities. Depends only on the Python standard library.amabase.django: Django-related utilities and infrastructure.amabase.conf: Shared Amabase configuration objects. Depends on Django only for Django-related features. Providessettings, a SQLitedband themainfunction to create the command-line interface.
Base application:
amabase.base: The base Django application (this is the only Django application required by Amabase).
Other applications:
- TODO
Contribute
Pull requests are welcome.
Credits
This project is licensed under the terms of the MIT license.
Logo by Kristian Salonen - icons-for-free.com (CC0-1.0 license).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file amabase-0.0.1-py3-none-any.whl.
File metadata
- Download URL: amabase-0.0.1-py3-none-any.whl
- Upload date:
- Size: 55.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea840f81f8970f2e48ab3389b568a47f882f15675ddb09b778322a967b539aa0
|
|
| MD5 |
dc7fbd50486578ddfc2266399e1be7b6
|
|
| BLAKE2b-256 |
8f00d5db4e89f0ac47e02f8622380f1ef646153bc29a74db76c177bad28fe93c
|