I am currently trying to publish a SEDF on AGOL but am unable to do so. I have been referring to the documentation, and have been using df.spatial.to_featurelayer() to no avail. Here is my code:
mygis = GIS(website, username, password)
loc_lyr
=
loc_nyc_sdf
.
spatial
.
to_featurelayer
(
title
=
'locations'
,
gis
=
mygis)
And here is the error that I receive:
TypeError: expected str, bytes or os.PathLike object, not int
Interestingly, when I remove the 'gis=' part, I get a syntax error, and when I write out the full
GIS(website, username, password), I get the same TypeError as when I call it as a variable.
Any help is greatly appreciated!