/product_import.py (e7dcd5d3015c2b081b31f7f71912f50409c32973) (3589 bytes) (mode 100644) (type blob)
from tkinter import Tk
from tkinter.filedialog import askopenfilename
from sys import exit
from packages.item_upload import itemUpload
# from packages.attribute_upload import attributeUpload
from packages.variation_upload import variationUpload, setActive, EANUpload, marketConnection
from packages.stock_upload import stockUpload, priceUpload
from packages.UploadGUI import UploadGUI
from packages.amazon_data_upload import amazonSkuUpload, amazonDataUpload
from packages.image_upload import imageUpload
def main():
#app = UploadGUI(None)
#app.title("Amazon Flatfile to PlentyMarkets Upload")
# app.mainloop()
'''
Command Line Test Version will be used within the GUI as soon as it is finished
'''
root = Tk()
root.withdraw()
sheet = askopenfilename()
intern_number = askopenfilename()
print("spreadsheet csv containing the flatfile : ", sheet)
print("spreadsheet csv containing the intern numbers : ", intern_number)
try:
print("\nItem Upload\n")
itemUpload(sheet, intern_number)
except Exception as exc:
print(exc)
print("Item Upload failed!")
try:
print("\nVariation Upload\n")
variationUpload(sheet, intern_number)
except Exception as exc:
print(exc)
print("VariationUpload failed!")
print("###########################################################")
print("\nUpload the files in plentymarkets, make sure that the categories are set because they are necessary for the active Upload.\n")
moveon = input("Continue(ENTER)")
print("\nGet a dataexport from the plentymarket site from the variation attributes, in order to access the current Variation ID.\n")
try:
export = askopenfilename()
except FileNotFoundError:
print("No Export File!")
except Exception as exc:
print(exc)
print("Something went wrong at the Export file import!")
print("spreadsheet csv containing the export : ", export)
try:
print("EAN, Active & Price Upload")
EANUpload(sheet, export)
setActive(sheet, export)
priceUpload(sheet, export)
except FileNotFoundError as err:
print(err)
print("Missing Data, check if you have\n - a flatfile\n - a intern file table\n - export file from plentymarkets\n - a sheet with the stock numbers!\n")
exit()
print("\nOpen your amazon storage report and save it as an csv.\n")
stocklist = askopenfilename()
print("spreadsheet csv containing the current stock : ", stocklist)
stockUpload(sheet, stocklist)
print("\nCreate a upload file for the SKU and Parent_SKU\nto connect existing items from amazon to plentyMarkets.\n")
amazonSkuUpload(sheet, export)
print("\nCreate a upload file for the additional Information to Amazon Products like bullet points, lifestyle etc.\n")
amazonDataUpload(sheet, export)
print("\nCollect the imagelinks from the flatfile, sorts them and assigns the variation ID.\n")
try:
imageUpload(sheet, export)
except Exception as err:
print(err)
print("Image Upload failed!")
print("\nActivate Marketconnection for Ebay & Amazon for all variation.\n")
try:
marketConnection(export, ebay=1, amazon=0)
except Exception as err:
print(err)
print("Market connection failed!")
# In case of new attributes uncomment and watch attribute_upload.py first
# try:
# attributeUpload(sheet)
# except:
# print("Attribute Upload failed!")
if __name__ == '__main__':
main()
Mode |
Type |
Size |
Ref |
File |
100644 |
blob |
756 |
8a64408db2bfe010b4f1d630797aded025e37f27 |
.gitignore |
100644 |
blob |
10299 |
816a1d0ee7f4496c32fdb92c7811eaf877d0efc0 |
LICENSE.md |
100644 |
blob |
2998 |
cbf05bc9be381117e723889fa85b4c9009c61037 |
README.md |
040000 |
tree |
- |
60256df3d0c262a84368e1593e7d8dc05cb26b21 |
packages |
100644 |
blob |
3589 |
e7dcd5d3015c2b081b31f7f71912f50409c32973 |
product_import.py |
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"
Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/initBasti/Amazon2PlentySync
Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/initBasti/Amazon2PlentySync
Clone this repository using git:
git clone git://git.rocketgit.com/user/initBasti/Amazon2PlentySync
You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a
merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main