Skip to main content

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

django-search-and-replace-0.0.8.tar.gz (14.4 kB view details)

Uploaded Source

File details

Details for the file django-search-and-replace-0.0.8.tar.gz.

File metadata

File hashes

Hashes for django-search-and-replace-0.0.8.tar.gz
Algorithm Hash digest
SHA256 8485299a612a9f9c04f368a88cf56acdd9824f3ff9b0ad9731ae331bd40d5e79
MD5 ee433162085b0434a7ec27c0b4a72dc8
BLAKE2b-256 3a58a9a0abdd107e349e0936ac9e0f8ececb99105f8ddd30a6bd7146040aec8e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page