open-semantic-search/docs/solr-search-csv-python-django
xiaoxue 308cb0b226 同步完整源码 - 2026-05-24 2026-05-24 23:07:33 +08:00
..
README.md 同步完整源码 - 2026-05-24 2026-05-24 23:07:33 +08:00

README.md

title authors
CSV Manager
Markus Mandalka

CSV Manager

User interface (webapp) for structured import of CSV spreadsheets.

Usage

See the user documentation

Installation

  • Download the module opensemanticsearch-search-csv-python-django
  • Copy the directory csvmanager from the zip file into your Django apps directory
  • Enable the new app:

Add "csvmanager" to your INSTALLED_APPS setting like this:

INSTALLED_APPS = (
 ...
 'csvmanager',
 )
  • Include the search_list URLconf in your project urls.py like this: url(r'^csvmanager/', include('csvmanager.urls')),