sharepoint.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. from shareplum import Site, Office365
  2. from shareplum.site import Version
  3. import json
  4. import os
  5. ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
  6. config_path = "\\".join([ROOT_DIR, "config.json"])
  7. # read config file
  8. with open(config_path) as config_file:
  9. config = json.load(config_file)
  10. config = config["share_point"]
  11. USERNAME = config["user"]
  12. PASSWORD = config["password"]
  13. SHAREPOINT_URL = config["url"]
  14. SHAREPOINT_SITE = config["site"]
  15. SHAREPOINT_DOC = config["doc_library"]
  16. class SharePoint:
  17. def auth(self):
  18. self.authcookie = Office365(SHAREPOINT_URL, username=USERNAME, password=PASSWORD).GetCookies()
  19. self.site = Site(SHAREPOINT_SITE, version=Version.v365, authcookie=self.authcookie)
  20. return self.site
  21. def connect_folder(self, folder_name):
  22. self.auth_site = self.auth()
  23. self.sharepoint_dir = "/".join([SHAREPOINT_DOC, folder_name])
  24. self.folder = self.auth_site.Folder(self.sharepoint_dir)
  25. return self.folder
  26. def upload_file(self, file, file_name, folder_name):
  27. folder = self.connect_folder(folder_name)
  28. with open(file, mode="rb") as file_obj:
  29. file_content = file_obj.read()
  30. folder.upload_file(file_content, file_name)
  31. def delete_file(self, file_name, folder_name):
  32. folder = self.connect_folder(folder_name)
  33. folder.delete_file(file_name)
  34. if __name__ == "__main__":
  35. sp = SharePoint()
  36. sp.auth()
  37. sp.upload_file("tox.ini", "tox.ini", "")