How can I import products into BigCartel - bigcartel

I have a spreadsheet with product data I want to load into Big Cartel. I have tried to look for an API but found none. How do I do this? Thanks.

There's not currently a way to import products or product details to Big Cartel -- all of that information needs to be added manually in the admin.

Related

how to get a CSV from an API and map it into a model

I am using Django and I want to get data via an API in CSV format and import it to my models but I don't know how to do this properly.
Please help me.
You might want to take a look at django import-export

How to create Models in Django that act like a CMS?

I need help developing models in Django's ORM that would give me the ability to create a user profile and then create unique pages under that user. What I am thinking so far is that I have one model called users and then another model pages. When the user is created and that user creates a page the data in both models are linked by a unique id. Is this the right direction to go or is there a more standard way of doing something like this? Essentially, what I am trying to create is a really stripped down version of Wordpress if that helps.
Any advice would be greatly appreciated.
Thank you

Django admin custom CSV report

I have a django project with 3 models. The user, the project (in which he works on) and the Change (which logs start and finish working time as well as the project and user).
I want to export a custom CSV report. Ex: total working hours of users per project, total hours devoted to a project etc. This means that there are some calculations to be done across models before exporting. So far I have found out how to export in CSV just filtered model entries, which isn't very helpful. I also found some tools online but most of them are outdated.
Can anyone point me to a direction or give me advice or links where I can learn more? Thank you.
Couple of ways to do this. You can use django-report-builder which is a pretty neat tool.
Other ways are using custom views to admin site (check Django AdminPlus), overwrite queryset and use custom admin action etc.

Opencart: List Products from a Specific Category on Homepage

I am trying to figure out a way to generate a list of products from a specific category on the home page. I want to use something similar to the Featured Module or the Latest Module but be able to pick the products to be shown by their category. I am currently using the Featured Module but I have to manually enter each Product into the module.
Is there an extension or a way to modify an existing module so that I can select a category and have the products display in a similar way.
Thanks in advance for any ideas or help.
Matt
Go and install modules that can display products by categories. You can download them from the opencart website

Implementing filters in django for e-commerce website

I am implementing an e-commerce website using django. The product catalog will be big (hundreds of products). I would like to know how I should implement product filters in search.
E.g. let's say I put up about 30 products initially. The user might want to filter the search based on some product attributes like color, size, category, etc.
Is there any feature in django that enables building such features? If not, how should I go about it? Is querying the database everytime the user picks an attribute, the only approach?
Thanks.
I think you are looking for a faceted search.
Haystack should be the django app you are looking for.
Furthermore you could take a look at django-filter