A search and replace app for django
Project description
django-search-and-replace
A simple app that allows searching and replacing values in a specified set of models.
Getting started
Add search_and_replace
to your INSTALLED_APPS
and add a url for the search and replace view.
from django.urls import path
from search_and_replace.views import SearchAndReplaceView
from example.models import Cat, Dog
urlpatterns += [
path(
"admin/search_and_replace/",
SearchAndReplaceView.as_view(
models_and_fields=[(Cat, ("name", "bio")), (Dog, ("name", "bark"))]
),
name="search-and-replace",
)
]
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
File details
Details for the file django-search-and-replace-0.0.8.tar.gz
.
File metadata
- Download URL: django-search-and-replace-0.0.8.tar.gz
- Upload date:
- Size: 14.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8485299a612a9f9c04f368a88cf56acdd9824f3ff9b0ad9731ae331bd40d5e79 |
|
MD5 | ee433162085b0434a7ec27c0b4a72dc8 |
|
BLAKE2b-256 | 3a58a9a0abdd107e349e0936ac9e0f8ececb99105f8ddd30a6bd7146040aec8e |