Mezzanine Vendors
A Django / Mezzanine application to manage a vendor catalog. Features:
- CSV imports
- Uses the Google Maps API to determine coordinates from human-readable addresses
- Categorize vendors by service type and subject
Install
- Add your Google Maps API Key in your
settings.py
asGOOGLE_MAPS_API_KEY
- Install via pip:
pip install mezzanine-vendors
. - Add
django_google_maps
andimport_export
toINSTALLED_APPS
. - Also add
vendors
after them. - Include
vendors.urls
in your root urlconf. - Run migrations.
- Create Vendors, Subjects, and Types using the admin interface.
- Create your own views
Note: This package provides the models, admin, and a JSON endpoint that returns the vendors. You'll need to create your own frontend to display them.
Management Command
Run python manage.py add_vendor_locations
to add coordinates to vendors that are missing them (for example, vendors added via admin import). This uses Google's GeoCoder API and will fail if the address cannot be parsed. It will also count towards the usage limit of your Google Maps API key.
Contributing
Review contribution guidelines at CONTRIBUTING.md.