A database application to manage lab resources.
Project description
Labbase2
Labbase2 is a database application written in Python using the Flask web framework. It is designed to help manage lab resources in a centralized and efficient way.
This project is a complete rewrite of the original Labbase and includes major improvements in usability, code quality, and maintainability.
🚀 Installation
Install the labbase2 package directly from PyPI:
pip install labbase2
Labbase2 is an installable Flask application. After installation, you can create a dedicated folder for your app instance. The folder typically contains:
project_folder/
├── upload/ # Folder for uploaded files
├── labbase2.db # SQLite database (created on first run)
├── log.log # Log file (created on first run)
└── main.py # Script to start the app
⚙️ Configuration
At the very least, a secret ky should be configured, either through a config file or via the config_dict argument of create_app.
🧪 Example main.py
Here's a minimal setup to launch the app with Flask's built-in development server:
main.py
import logging
from labbase2 import create_app
from pathlib import Path
from logging.config import dictConfig
if __name__ == "__main__":
dictConfig(
{
"version": 1,
"formatters": {
"default": {
"()": "labbase2.logging.RequestFormatter",
"format": "[%(asctime)s] %(levelname)-7s in %(module)-10s: [%(user)s] %(message)s",
}
},
"handlers": {
"wsgi": {
"class": "logging.StreamHandler",
"stream": "ext://flask.logging.wsgi_errors_stream",
"formatter": "default",
},
"file": {
"class": "logging.FileHandler",
"level": "DEBUG",
"filename": Path("instance", "log.log"),
"mode": "w",
"formatter": "default",
},
},
"root": {"level": "DEBUG", "handlers": ["wsgi", "file"]},
}
)
# Prevent 'werkzeug' from logging every single request.
logger_werkz = logging.getLogger("werkzeug")
logger_werkz.level = logging.ERROR
# Configure the app.
app = create_app(config_dict={"SECRET_KEY": "645588a195c5bbd"})
app.run()
Start the app by running:
python main.py
The database (labbase2.db) and log file (log.log) will be created automatically on first run.
📄 License
This project is licensed under the MIT License. See the LICENSE file for details.
Third-Party Libraries
This project uses the following third-party libraries:
- Bootstrap 5.2.3-dist – MIT License
- jQuery 3.7.1 – MIT License
- Popper.js – MIT License
The above libraries are included locally in this repository or via CDNs. If included locally, their original license files are included in the respective folders.
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 labbase2-0.2.3.tar.gz.
File metadata
- Download URL: labbase2-0.2.3.tar.gz
- Upload date:
- Size: 310.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
019d66dbe3481483ae0cd01f410d08673cea6ba84bacf332ba24852b86d536fd
|
|
| MD5 |
5067c09839c843ded8f46db125e9d18f
|
|
| BLAKE2b-256 |
d74fef1387eec2ace29603840483a9f365236580973ae0f23f6be46cbf236f8b
|
File details
Details for the file labbase2-0.2.3-py3-none-any.whl.
File metadata
- Download URL: labbase2-0.2.3-py3-none-any.whl
- Upload date:
- Size: 391.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ffb527d384d23bca88a519042647d98a1f72fce627129aba0f162742d5936dee
|
|
| MD5 |
ad9eaca22ce934187e015cfdf4228052
|
|
| BLAKE2b-256 |
21c8a77cf0e3f1044fd434960da6ef191a3190bc24291ccd85d31fef9e19939f
|