|
|
||
|---|---|---|
| .. | ||
| README.md | ||
README.md
| title | authors | |
|---|---|---|
| CSV Manager |
|
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
csvmanagerfrom 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_listURLconf in your projecturls.pylike this:url(r'^csvmanager/', include('csvmanager.urls')),