mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
anonymised sharepoint keys
This commit is contained in:
parent
f79deb48ae
commit
11a4bc24a1
3 changed files with 11 additions and 6 deletions
|
|
@ -0,0 +1 @@
|
|||
# The address we're looking from for the remote assessments is Natwest House, Shenley Rd, Borehamwood WD6 1DL
|
||||
|
|
@ -2936,7 +2936,6 @@ def revised_model():
|
|||
missed = original_archetypes[
|
||||
~original_archetypes["Address ID"].isin(new_priority_postcodes["Address ID"].values)
|
||||
]["Archetype ID"].unique()
|
||||
assert
|
||||
|
||||
# if __name__ == "__main__":
|
||||
# main()
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
import os
|
||||
import shutil
|
||||
from tqdm import tqdm
|
||||
from etl.access_reporting.app import SharePointClient
|
||||
|
||||
|
||||
def delete_large_files():
|
||||
|
|
@ -66,13 +67,17 @@ def delete_large_files():
|
|||
def download_data_from_sharepoint():
|
||||
# Given a sharepoint location, this function will download the retrofit assessment folders from the locations
|
||||
# specified in the sharepoint location
|
||||
from etl.access_reporting.app import SharePointClient
|
||||
|
||||
SHAREPOINT_CLIENT_ID = os.getenv("SHAREPOINT_CLIENT_ID", None)
|
||||
SHAREPOINT_CLIENT_SECRET = os.getenv("SHAREPOINT_CLIENT_SECRET", None)
|
||||
SHAREPOINT_TENANT_ID = os.getenv("SHAREPOINT_TENANT_ID", None)
|
||||
OSMOSIS_SHAREPOINT_SITE_ID = os.getenv("OSMOSIS_SHAREPOINT_SITE_ID", None)
|
||||
|
||||
sharepoint_client = SharePointClient(
|
||||
tenant_id="10d5af8b-2cfd-4882-9ccd-b96e4812dacf",
|
||||
client_id="6832a4c5-fb8c-4082-a746-4f51e1020f0d",
|
||||
client_secret="xpC8Q~Frww48SM1V-D8lGy5iOY7P_cJ7FF3jgarQ",
|
||||
site_id="bc925a9a-ad0b-4de9-9a3c-e61014cc7489"
|
||||
tenant_id=SHAREPOINT_TENANT_ID,
|
||||
client_id=SHAREPOINT_CLIENT_ID,
|
||||
client_secret=SHAREPOINT_CLIENT_SECRET,
|
||||
site_id=OSMOSIS_SHAREPOINT_SITE_ID
|
||||
)
|
||||
|
||||
# Retrieve the data from Sharepoint and write to local machine
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue