Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Turn fleet AGOL feature service updater into a Forklift Pallet #1

Merged
merged 38 commits into from
Jun 11, 2020
Merged
Show file tree
Hide file tree
Changes from 29 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
9322aa7
secrets template and git ignore
jacobdadams May 18, 2020
e36c20d
run XYTableToPoint
jacobdadams May 18, 2020
f9e7cf6
script update using pathlib Paths
jacobdadams May 19, 2020
7fe0977
feature service name must match existing service
jacobdadams May 20, 2020
bebbf2c
first shot at getting files from sftp
jacobdadams May 20, 2020
4384b18
minor refactoring
jacobdadams May 20, 2020
9047b10
updated gitignore for knownhosts, vscode settings
jacobdadams Jun 4, 2020
42b42f0
move mkdir, use knownhosts for pysftp, str(Path)s
jacobdadams Jun 4, 2020
df26a64
adding knownhosts to readme
jacobdadams Jun 5, 2020
b59fb27
extracting get_map_layer()
jacobdadams Jun 5, 2020
08857df
Move knownhosts to secrets
jacobdadams Jun 5, 2020
3d5b671
extracting update_agol_feature_service()
jacobdadams Jun 5, 2020
1c20c83
Helper method documentation
jacobdadams Jun 8, 2020
b36e244
line length
jacobdadams Jun 8, 2020
197d0f4
string line trimming
jacobdadams Jun 8, 2020
4a4000a
report date from csv rather than today
jacobdadams Jun 8, 2020
f126ded
known_hosts file check and formatting
jacobdadams Jun 9, 2020
ea9c14b
error handling for agol connection issues
jacobdadams Jun 9, 2020
ccfaed1
better error handling
jacobdadams Jun 9, 2020
5fd90de
Palletize
jacobdadams Jun 9, 2020
02d94f8
change print() to logging
jacobdadams Jun 9, 2020
4c5dbff
fix host printout
jacobdadams Jun 9, 2020
bbd8a69
setting some stuff to debug
jacobdadams Jun 9, 2020
417789a
Adding pylintc
jacobdadams Jun 9, 2020
7de3540
log error messages
jacobdadams Jun 9, 2020
f82bb03
docstring and formatting
jacobdadams Jun 9, 2020
2b7c172
docstring for secrets template
jacobdadams Jun 9, 2020
195ddb7
updated readme and installation docs
jacobdadams Jun 9, 2020
d8bf2bf
parameterizing number of days for valid update
jacobdadams Jun 9, 2020
e76ec64
Instructions for adding to forklift config
jacobdadams Jun 10, 2020
05ce9e4
raise instead of sys.exit()
jacobdadams Jun 10, 2020
d6d6883
log custom error message, re raise exception
jacobdadams Jun 10, 2020
8b8c8ea
Isolate pathlib, explicit path format in docstring
jacobdadams Jun 10, 2020
755a774
latest csv error is a raise, not try except
jacobdadams Jun 11, 2020
74dbe7e
still log message as exception
jacobdadams Jun 11, 2020
c248594
3x retry for URL/HTTPErrors in upload
jacobdadams Jun 11, 2020
77cb142
retry documentation
jacobdadams Jun 11, 2020
220a558
methods to class methods
jacobdadams Jun 11, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#: Secrets file
fleetshare_secrets.py
known_hosts
.vscode/
jacobdadams marked this conversation as resolved.
Show resolved Hide resolved

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
Loading