Skip to content

Commit 10ffdca

Browse files
committed
Use formatted string literals; update how modules are imported
1 parent d794bc0 commit 10ffdca

4 files changed

+73
-75
lines changed

download_and_extract_layer_from_agol.py

+26-24
Original file line numberDiff line numberDiff line change
@@ -13,57 +13,59 @@
1313
#
1414
# Created: 7/9/2020
1515
#
16-
# Updated: 12/23/2021
16+
# Updated: 9/21/2022
1717
# -------------------------------------------------------------------------------
1818

1919
# import modules
2020
import arcpy
21-
import datetime
22-
import sys
23-
import os
24-
import zipfile
2521
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
2629

2730
try:
2831
# allow content to be overwritten
2932
arcpy.env.overwriteOutput = True
3033

3134
# Time stamp variables
32-
date_today = datetime.date.today()
35+
date_today = date.today()
3336
# Date formatted as month-day-year (1-1-2017)
3437
formatted_date_today = date_today.strftime("%m-%d-%Y")
3538
# date for sub-directory name
3639
date_dir = date_today.strftime("%m%d%Y")
3740

3841
# 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')
4043
# variable to store messages for log file. Messages written in finally statement at end of script
4144
log_message = ''
4245

4346
# 1. create new sub-directory using current date within parent directory
4447
# new directories are created within this directory
4548
parent_dir = r'Path\To\Directory'
4649
# output directory
47-
out_dir = r'{}\{}'.format(parent_dir, date_dir)
50+
out_dir = path.join(parent_dir, date_dir)
4851
# create sub-directory with current date
49-
os.mkdir(out_dir)
52+
makedirs(out_dir)
5053
# add message
51-
log_message += '\nCreated directory "{}" in "{}"\n'.format(
52-
date_dir, out_dir)
54+
log_message += f'\nCreated directory "{date_dir}" in "{out_dir}"\n'
5355

5456
# reference to ArcGIS Online (AGOL) or Portal
5557
# URL to AGOL organization or Portal
5658
portal = ''
5759
# username
5860
# 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')
6062
# password
6163
# 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')
6365
# create AGOL/Portal object
6466
# adding parameter "verify_cert=False" may resolve connection issues
6567
gis = GIS(portal, user, password)
66-
log_message += '\nConnected to {}\n'.format(portal)
68+
log_message += f'\nConnected to {portal}\n'
6769

6870
# 1. Download an item (i.e., feature service) from ArcGIS Online/Portal
6971
# name of item for use in script
@@ -80,15 +82,15 @@
8082
# Delete the item after it downloads to save space (optional step)
8183
result.delete()
8284
# add message
83-
log_message += '\nDownloaded "{}"\n'.format(item_name)
85+
log_message += f'\nDownloaded "{item_name}"\n'
8486

8587
# 2. Unzip item
8688
# zipped file downloaded
8789
# you will need to export and download the item to learn what it's filename will be
8890
# enhancement to make to script > set "download_path" to join between out_dir and a file in that directory that ends with ".zip"
8991
download_file = 'SomeFileName.zip'
9092
# 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)
9294
# unzip file
9395
with zipfile.ZipFile(download_path, "r") as z:
9496
z.extractall(out_dir)
@@ -106,33 +108,33 @@
106108
# If not, you'll need to update the following to work with your download format
107109

108110
# get list of contents in "out_dir" directory
109-
dir_contents = os.listdir(out_dir)
111+
dir_contents = listdir(out_dir)
110112
# placeholder for extracted file geodatabase
111113
in_gdb = ''
112114

113115
# loop through directory and create object for file geodatabase
114116
# assumed only one file geodatabase exists in this location
115117
for content in dir_contents:
116118
if content.endswith('.gdb'):
117-
in_gdb = os.path.join(out_dir, content)
119+
in_gdb = path.join(out_dir, content)
118120

119121
# 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))
122124

123125
# add message
124-
log_message += '\nCopied data from "{}" to "{}"\n'.format(in_gdb, out_gdb)
126+
log_message += f'\nCopied data from "{in_gdb}" to "{out_gdb}"\n'
125127
# If an error occurs running geoprocessing tool(s) capture error and write message
126128
except (Exception, EnvironmentError) as e:
127129
tbE = sys.exc_info()[2]
128130
# add the line number the error occured to the log message
129-
log_message += "\nFailed at Line {}\n".format(tbE.tb_lineno)
131+
log_message += f"\nFailed at Line {tbE.tb_lineno}\n"
130132
# add the error message to the log message
131-
log_message += "\nError: {}\n".format(e)
133+
log_message += f"\nError: {str(e)}\n"
132134
finally:
133135
# write message to log file
134136
try:
135137
with open(log_file, 'w') as f:
136138
f.write(str(log_message))
137139
except:
138-
pass
140+
pass

enterprise_geodatabase_maintenance_tasks.py

+16-16
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,24 @@
33
# on an enterprise (sde) geodatabase
44
# connections to the database are closed, and all users are disconnected
55
# before running tools. database connections are opened at the end
6+
# Updated: 9/21/2022
67

78
# import modules
89
import arcpy
9-
import os
1010
import sys
11-
import datetime
1211
import time
12+
from datetime import date
13+
from os import path
1314

1415
# capture the date the script is being run
15-
date_today = datetime.date.today()
16+
date_today = date.today()
1617
# convert date format to month-day-year (1-1-2020)
1718
formatted_date_today = date_today.strftime("%m-%d-%Y")
1819
# placeholder for messages for text file
1920
log_message = ''
2021
# text file to write messages to
2122
# TODO: update path
22-
log_file = r'C:\GIS\Results\Database_Maint_Report_{}.txt'.format(date_today)
23+
log_file = path.join(r'C:\GIS\Results', f'Database_Maint_Report_{date_today}.txt')
2324

2425
try:
2526
# database connection
@@ -37,59 +38,58 @@
3738
# Next, for feature datasets get all of the datasets and featureclasses
3839
# from the list and add them to the master list.
3940
for dataset in arcpy.ListDatasets("", "Feature"):
40-
arcpy.env.workspace = os.path.join(dbase, dataset)
41+
arcpy.env.workspace = path.join(dbase, dataset)
4142
data_list += arcpy.ListFeatureClasses() + arcpy.ListDatasets()
4243
# add message
43-
log_message += '{} : Created list of feature classes and tables in geodatabase\n'.format(time.strftime('%I:%M%p'))
44+
log_message += f"{time.strftime('%I:%M%p')} : Created list of feature classes and tables in geodatabase\n"
4445

4546
# close database from accepting connections
4647
arcpy.AcceptConnections(dbase, False)
4748
# remove existing users
4849
arcpy.DisconnectUser(dbase, 'ALL')
4950
# add message
50-
log_message += '\n{} : Disconnected users and closed connections to the geodatabase\n'.format(time.strftime('%I:%M%p'))
51+
log_message += f"\n{time.strftime('%I:%M%p')} : Disconnected users and closed connections to the geodatabase\n"
5152

5253
# run analyze datasets
5354
arcpy.AnalyzeDatasets_management(dbase, 'SYSTEM', data_list, 'ANALYZE_BASE', 'ANALYZE_DELTA', 'ANALYZE_ARCHIVE')
5455
# add message
55-
log_message += '\n{} : Ran "Analyze Datasets" tool\n'.format(time.strftime('%I:%M%p'))
56-
56+
log_message += f"\n{time.strftime('%I:%M%p')} : Ran 'Analyze Datasets' tool\n"
5757
# run rebuild indexes
5858
arcpy.RebuildIndexes_management(dbase, 'SYSTEM', data_list, 'ALL')
5959
# add message
60-
log_message += '\n{} : Ran "Rebuild Indexes" tool\n'.format(time.strftime('%I:%M%p'))
60+
log_message += f"\n{time.strftime('%I:%M%p')} : Ran 'Rebuild Indexes' tool\n"
6161

6262
# run compress
6363
arcpy.Compress_management(dbase)
6464
# add message
65-
log_message += '\n{} : Ran "Compress" tool\n'.format(time.strftime('%I:%M%p'))
65+
log_message += f"\n{time.strftime('%I:%M%p')} : Ran 'Compress' tool\n"
6666

6767
# run analyze datasets
6868
arcpy.AnalyzeDatasets_management(dbase, 'SYSTEM', data_list, 'ANALYZE_BASE', 'ANALYZE_DELTA', 'ANALYZE_ARCHIVE')
6969
# add message
70-
log_message += '\n{} : Ran "Analyze Datasets" tool\n'.format(time.strftime('%I:%M%p'))
70+
log_message += f"\n{time.strftime('%I:%M%p')} : Ran 'Analyze Datasets' tool\n"
7171

7272
# run rebuild indexes
7373
arcpy.RebuildIndexes_management(dbase, 'SYSTEM', data_list, 'ALL')
7474
# add message
75-
log_message += '\n{} : Ran "Rebuild Indexes" tool\n'.format(time.strftime('%I:%M%p'))
75+
log_message += f"\n{time.strftime('%I:%M%p')} : Ran 'Rebuild Indexes' tool\n"
7676

7777
# allow database to accept connections
7878
arcpy.AcceptConnections(dbase, True)
7979
# If an error occurs running geoprocessing tool(s) capture error and write message
8080
except (Exception, EnvironmentError) as e:
8181
tbE = sys.exc_info()[2]
8282
# Write the line number the error occured to the log file
83-
log_message += "\nFailed at Line {}\n".format(tbE.tb_lineno)
83+
log_message += f"\nFailed at Line {tbE.tb_lineno}\n"
8484
# Write the error message to the log file
85-
log_message += "Error: {}".format(str(e))
85+
log_message += f"Error: {str(e)}"
8686
finally:
8787
# write message to log file
8888
try:
8989
# allow database to accept connections
9090
arcpy.AcceptConnections(dbase, True)
9191
# add message
92-
log_message += '\n{} : Opened connections to the geodatabase\n'.format(time.strftime('%I:%M%p'))
92+
log_message += f"\n{time.strftime('%I:%M%p')} : Opened connections to the geodatabase\n"
9393
# write messages to text file
9494
with open(log_file, 'w') as f:
9595
f.write(str(log_message))

export_layers_to_file_geodatabase_and_excel.py

+22-25
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,26 @@
1111
#
1212
# Created: 4/4/2019
1313
#
14-
# Updated: 12/28/2021
14+
# Updated: 9/21/2022
1515
# -------------------------------------------------------------------------------
1616

1717
import arcpy
18-
import datetime
1918
import sys
20-
import os
19+
from os import path
20+
from os import makedirs
21+
from datetime import date
2122

2223
try:
2324
# Time stamp variables
24-
date_today = datetime.date.today()
25+
date_today = date.today()
2526
# Date formatted as month-day-year (1-1-2017)
2627
formatted_date_today = date_today.strftime("%m-%d-%Y")
2728
# date for file geodatabase name
2829
date_gdb = date_today.strftime("%m%d%Y")
2930

3031
# Create text file for logging results of script
3132
# update this variable
32-
log_file = r'[path]\[to]\[location]\Report File Name {}.txt'.format(
33-
formatted_date_today)
33+
log_file = path.join(r'[path]\[to]\[location]', f'Report File Name {formatted_date_today}.txt')
3434
# variable to store messages for log file. Messages written in finally statement at end of script
3535
log_message = ''
3636

@@ -40,37 +40,36 @@
4040
# layers
4141
# update this variable
4242
# recommended to use underscores in naming convention of second element of sub-list
43-
layers = [[os.path.join(geodatabase, r'Name of Layer'), 'Name_of_Layer'], [os.path.join(
44-
geodatabase, r'Name of Layer'), 'Name_of_Layer'], [os.path.join(geodatabase, r'Name of Layer'), 'Name_of_Layer']]
43+
layers = [[path.join(geodatabase, r'Name of Layer'), 'Name_of_Layer'], [path.join(
44+
geodatabase, r'Name of Layer'), 'Name_of_Layer'], [path.join(geodatabase, r'Name of Layer'), 'Name_of_Layer']]
4545

4646
# 1. create new directory
4747
# parent directory
4848
# update this variable
4949
parent_dir = r'[path]\[to]\[location]'
5050
# output directory
51-
out_dir = r'{}\{}'.format(parent_dir, date_gdb)
51+
out_dir = path.join(parent_dir, date_gdb)
5252
# create sub-directory with current date
53-
os.mkdir(out_dir)
53+
makedirs(out_dir)
5454
# add message
55-
log_message += '\nCreated directory "{}" in {}\n'.format(date_gdb, out_dir)
55+
log_message += f'\nCreated directory "{date_gdb}" in {out_dir}\n'
5656

5757
# 2. create file geodatabase
5858
# parameters
5959
# update this variable
60-
out_gdb_name = r'Name_of_Geodatabase_{}'.format(date_gdb)
61-
out_gdb = os.path.join(out_dir, '{}.gdb'.format(out_gdb_name))
60+
out_gdb_name = f'Name_of_Geodatabase_{date_gdb}'
61+
out_gdb = path.join(out_dir, f'{out_gdb_name}.gdb')
6262
# geoprocessing
6363
arcpy.CreateFileGDB_management(out_dir, out_gdb_name, '10.0')
6464
# add message
65-
log_message += '\nCreated file geodatabase "{}" in directory "{}"\n'.format(
66-
out_gdb_name, out_dir)
65+
log_message += f'\nCreated file geodatabase "{out_gdb_name}" in directory "{out_dir}"\n'
6766

6867
# 3. Export layers to file geodatabase
6968
for fc in layers:
7069
# export feature class
7170
arcpy.FeatureClassToFeatureClass_conversion(fc[0], out_gdb, fc[1])
7271
# add message
73-
log_message += '\nCopied {} layer to {}\n'.format(fc[1], out_gdb)
72+
log_message += f'\nCopied {fc[1]} layer to {out_gdb}\n'
7473
# end for
7574

7675
# 4. update Latitude Longitude fields in feature classes
@@ -96,23 +95,21 @@
9695
cursor.updateRow(row)
9796
# end for
9897
# update your message
99-
log_message += '\nCompleted updating Latitude and Longitude records for "{}" layer\n'.format(
100-
fc)
98+
log_message += f'\nCompleted updating Latitude and Longitude records for "{fc}" layer\n'
10199
# end cursor
102100
# convert to Excel
103-
arcpy.TableToExcel_conversion(fc, os.path.join(
104-
out_dir, '{}.xls'.format(fc)), "ALIAS")
101+
arcpy.TableToExcel_conversion(fc, path.join(
102+
out_dir, f'{fc}.xls'), "ALIAS")
105103
# add message
106-
log_message += '\nExported {} layer to Microsof Excel format\n'.format(
107-
fc)
104+
log_message += f'\nExported {fc} layer to Microsof Excel format\n'
108105
# end for
109106
# If an error occurs running geoprocessing tool(s) capture error and write message
110107
except (Exception, EnvironmentError) as e:
111108
tbE = sys.exc_info()[2]
112109
# add the line number the error occured to the log message
113-
log_message += "\nFailed at Line {}\n".format(tbE.tb_lineno)
110+
log_message += f"\nFailed at Line {tbE.tb_lineno}\n"
114111
# add the error message to the log message
115-
log_message += "\nError: {}\n".format(str(e))
112+
log_message += "\nError: {str(e)}\n"
116113
finally:
117114
try:
118115
if cursor:
@@ -124,4 +121,4 @@
124121
with open(log_file, 'w') as f:
125122
f.write(str(log_message))
126123
except:
127-
pass
124+
pass

0 commit comments

Comments
 (0)