/product_import.py (90e6951b795dfe82dea204efba7ee449750fcc32) (3791 bytes) (mode 100644) (type blob)
from tkinter import Tk
from tkinter.filedialog import askopenfilename
from sys import exit
from packages.item_upload import itemUpload, itemPropertyUpload
# from packages.attribute_upload import attributeUpload
from packages.variation_upload import variationUpload, setActive, EANUpload, marketConnection
from packages.stock_upload import stockUpload, priceUpload
from packages.amazon_data_upload import amazonSkuUpload, amazonDataUpload, asinUpload
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, Merkmale & Price Upload")
EANUpload(sheet, export)
setActive(sheet, export)
itemPropertyUpload(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 ASIN Numbers matching to the Variationnumber(Sku) and format them into the dataformat format.\n")
asinUpload(export, stocklist)
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 |
3811 |
87e1df60c4c99c8400bcdcf1641a33e1ade245d8 |
README.md |
100644 |
blob |
116 |
666750bce728d912256a546347e72d37d5a4159d |
main.py |
040000 |
tree |
- |
1b7aa47922856545561189bd08639b2bd61b52a5 |
packages |
100644 |
blob |
3791 |
90e6951b795dfe82dea204efba7ee449750fcc32 |
product_import.py |
100644 |
blob |
178 |
627b92178d30145f0dedc2f4a31ac856f6a15ea1 |
todo.md |
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