Information systems core.
Project description
Prolog
Django IS Core is a lightweight framework built on Django. It augments Django great design patterns and minimizes annoying programming work. It takes best from Django-admin. ISCore provides a simple way how to build a rich administration. It is very simlar to Django admin but there are several differences that justifies why IS Core is created.
Features
- same detail/add/table views as Django admin, but it uses REST and AJAX call to achieve it (it adds easier usage and broaden usability)
- it can be used for creation only REST resources without UI
- models UI (add/detail) is more linked together, links between foreign keys are automatically added
- it provides more posibilities for read-only fields (e.g. the fields defined only inside form can be readonly too)
- add new custom view is for Django admin is nightmare, with IS Core is very easy
- it uses class based views, it is cleaner and changes are simplier
- add new model administration without its registration
- generated forms from models with validations
- generated REST resources from models again with validations (no code duplication)
- automatic exports to XLSX, PDF, CSV can be very simply add to a table view
- automatic filtering and sorting for list views
- pre-built reusable views and forms
- automatic CRUD views for models (with REST resources)
- authorization (token based) and permissions
- advanced permissions (e.g. a link between objects is not added to UI if a user does not have permissions to see it)
- and much more ...
Docs
For more details see docs
Development Setup
All development (running tests, building docs, etc.) is done through the example application. The example app's virtual environment includes django-is-core installed in editable mode along with all required dependencies.
Prerequisites
- Python 3
virtualenvcommand available- Docker (for running required services)
Setting Up the Development Environment
-
Navigate to the example directory:
cd example
-
Start the required Docker services (Elasticsearch and DynamoDB):
make runservices -
Install and set up the application:
make installThis will:
- Create a virtual environment at
example/var/ve - Install django-is-core in editable mode (from the parent directory)
- Install all dependencies (Django, test tools, etc.)
- Initialize the database
- Set up logging directories
- Create a virtual environment at
-
Activate the virtual environment:
source var/ve/bin/activate
Running Tests
With the virtual environment activated:
cd example
make test
Running the Example Application
cd example
make runserver
The application will be available at http://localhost:8080
Stopping Services
When done, stop the Docker services:
make stopservices
Other Useful Commands
From the example directory:
make clean # Remove Python bytecode files
make resetdb # Reset the database
make showurls # Display all registered URLs
Building Documentation
Documentation requires the example app's virtual environment since it uses autodoc to generate API documentation from the django-is-core source code.
-
First, set up the development environment (see above)
-
Install documentation dependencies:
source example/var/ve/bin/activate pip install sphinx sphinx_rtd_theme
-
Build the HTML documentation:
cd docs make html
-
View the documentation by opening
docs/.build/html/index.htmlin your browser, or serve it locally:python -m http.server 8000 --directory .build/html
Then visit http://localhost:8000
Contribution
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 Distribution
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 skip_django_is_core-2.29.1.tar.gz.
File metadata
- Download URL: skip_django_is_core-2.29.1.tar.gz
- Upload date:
- Size: 2.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a57c751a5b254dbb769a7591c623526cc6836bf43229862c35385d75a998a98a
|
|
| MD5 |
f435ede3bf900399db8fc5e933ea4a42
|
|
| BLAKE2b-256 |
9be7b6103212f381844c53e21da790a5c13e0010da6ad86892447125b0fc4e4c
|
File details
Details for the file skip_django_is_core-2.29.1-py3-none-any.whl.
File metadata
- Download URL: skip_django_is_core-2.29.1-py3-none-any.whl
- Upload date:
- Size: 2.0 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d6792848101234b44cf76407e8044c9b41d7fd67953a7a5241d84e8a135ab63
|
|
| MD5 |
cdaaecfe8c6c9f850307ed289b9e401a
|
|
| BLAKE2b-256 |
3b347ad9532bccc00f7ec144169dff9d758fd7a9a78049870e8cadb511123062
|