13
13
#
14
14
# Created: 7/9/2020
15
15
#
16
- # Updated: 12/23/2021
16
+ # Updated: 9/21/2022
17
17
# -------------------------------------------------------------------------------
18
18
19
19
# import modules
20
20
import arcpy
21
- import datetime
22
- import sys
23
- import os
24
- import zipfile
25
21
from arcgis .gis import GIS
22
+ from datetime import date
23
+ from os import path
24
+ from os import makedirs
25
+ from os import environ
26
+ from os import listdir
27
+ import zipfile
28
+ import sys
26
29
27
30
try :
28
31
# allow content to be overwritten
29
32
arcpy .env .overwriteOutput = True
30
33
31
34
# Time stamp variables
32
- date_today = datetime . date .today ()
35
+ date_today = date .today ()
33
36
# Date formatted as month-day-year (1-1-2017)
34
37
formatted_date_today = date_today .strftime ("%m-%d-%Y" )
35
38
# date for sub-directory name
36
39
date_dir = date_today .strftime ("%m%d%Y" )
37
40
38
41
# Create text file for logging results of script
39
- log_file = r'Path\To\Directory\ Report File {}.txt' . format ( date_today )
42
+ log_file = path . join ( r'Path\To\Directory' , f' Report File { date_today } .txt' )
40
43
# variable to store messages for log file. Messages written in finally statement at end of script
41
44
log_message = ''
42
45
43
46
# 1. create new sub-directory using current date within parent directory
44
47
# new directories are created within this directory
45
48
parent_dir = r'Path\To\Directory'
46
49
# output directory
47
- out_dir = r'{}\{}' . format (parent_dir , date_dir )
50
+ out_dir = path . join (parent_dir , date_dir )
48
51
# create sub-directory with current date
49
- os . mkdir (out_dir )
52
+ makedirs (out_dir )
50
53
# add message
51
- log_message += '\n Created directory "{}" in "{}"\n ' .format (
52
- date_dir , out_dir )
54
+ log_message += f'\n Created directory "{ date_dir } " in "{ out_dir } "\n '
53
55
54
56
# reference to ArcGIS Online (AGOL) or Portal
55
57
# URL to AGOL organization or Portal
56
58
portal = ''
57
59
# username
58
60
# create environment variable to store username; pass that variable name into get() method
59
- user = os . environ .get ('user_name_environment_variable' )
61
+ user = environ .get ('user_name_environment_variable' )
60
62
# password
61
63
# create environment variable to store pasword; pass that variable name into get() method
62
- password = os . environ .get ('password_environment_variable' )
64
+ password = environ .get ('password_environment_variable' )
63
65
# create AGOL/Portal object
64
66
# adding parameter "verify_cert=False" may resolve connection issues
65
67
gis = GIS (portal , user , password )
66
- log_message += '\n Connected to {}\n ' . format ( portal )
68
+ log_message += f '\n Connected to { portal } \n '
67
69
68
70
# 1. Download an item (i.e., feature service) from ArcGIS Online/Portal
69
71
# name of item for use in script
80
82
# Delete the item after it downloads to save space (optional step)
81
83
result .delete ()
82
84
# add message
83
- log_message += '\n Downloaded "{}"\n ' . format ( item_name )
85
+ log_message += f '\n Downloaded "{ item_name } "\n '
84
86
85
87
# 2. Unzip item
86
88
# zipped file downloaded
87
89
# you will need to export and download the item to learn what it's filename will be
88
90
# enhancement to make to script > set "download_path" to join between out_dir and a file in that directory that ends with ".zip"
89
91
download_file = 'SomeFileName.zip'
90
92
# directory where zipped file is located
91
- download_path = os . path .join (out_dir , download_file )
93
+ download_path = path .join (out_dir , download_file )
92
94
# unzip file
93
95
with zipfile .ZipFile (download_path , "r" ) as z :
94
96
z .extractall (out_dir )
106
108
# If not, you'll need to update the following to work with your download format
107
109
108
110
# get list of contents in "out_dir" directory
109
- dir_contents = os . listdir (out_dir )
111
+ dir_contents = listdir (out_dir )
110
112
# placeholder for extracted file geodatabase
111
113
in_gdb = ''
112
114
113
115
# loop through directory and create object for file geodatabase
114
116
# assumed only one file geodatabase exists in this location
115
117
for content in dir_contents :
116
118
if content .endswith ('.gdb' ):
117
- in_gdb = os . path .join (out_dir , content )
119
+ in_gdb = path .join (out_dir , content )
118
120
119
121
# copy feature class to persistant geodatatbase
120
- arcpy .Copy_management (os . path .join (in_gdb , feature_class ),
121
- os . path .join (out_gdb , feature_class ))
122
+ arcpy .Copy_management (path .join (in_gdb , feature_class ),
123
+ path .join (out_gdb , feature_class ))
122
124
123
125
# add message
124
- log_message += '\n Copied data from "{}" to "{}"\n ' . format ( in_gdb , out_gdb )
126
+ log_message += f '\n Copied data from "{ in_gdb } " to "{ out_gdb } "\n '
125
127
# If an error occurs running geoprocessing tool(s) capture error and write message
126
128
except (Exception , EnvironmentError ) as e :
127
129
tbE = sys .exc_info ()[2 ]
128
130
# add the line number the error occured to the log message
129
- log_message += "\n Failed at Line {}\n " . format ( tbE . tb_lineno )
131
+ log_message += f "\n Failed at Line { tbE . tb_lineno } \n "
130
132
# add the error message to the log message
131
- log_message += "\n Error: {}\n " . format ( e )
133
+ log_message += f "\n Error: { str ( e ) } \n "
132
134
finally :
133
135
# write message to log file
134
136
try :
135
137
with open (log_file , 'w' ) as f :
136
138
f .write (str (log_message ))
137
139
except :
138
- pass
140
+ pass
0 commit comments