-
Notifications
You must be signed in to change notification settings - Fork 46
Utility to immediately provide shareable link to data #233
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Comments
Good idea! I think it would be interesting to hash this out in the company of: #44 Uploading an R object w/o writing to file The common theme seems to be "local data frame" <--> "csv on Google Drive" and making the intermediate local file fade into the background or be unnecessary. |
I don't know enough about More than anything the takeaway that I want is a link that I can copy-paste directly into a chat, email or Github issue to avoid the hassle of figuring out how to actually upload a data frame somewhere. Might also be worth uploading files to a |
Did you have trouble with uploading multiple things with the same name? Drive lets you do that. |
No trouble with multiple uploads. I have like 28 copies of |
Yeah I meant ... are you unhappy with that situation? In #230 (Consistent naming and overwrite for drive_upload), there is a discussion about workflow when user wants to upload to a file path that already exists. Right now, we cheerfully and silently upload a new file with a replicated name, because that's how Drive works. But most people don't mean to do this and it makes it hard for them to distinguish their 28 files with the same name but potentially different contents. This will come up here too. |
Ah, gotcha. What about an option Then if |
Not at all a comprehensive solution, but I put together a package this morning to address part of the "local data frame" <--> "csv on Google Drive" workflow that @jennybc and Issue #81 mentioned. This package supplies a |
I've been using the following for a little while to quickly share small datasets via Google Drive.
Would love to submit a PR, not sure about the best final form for this:
When
direct = TRUE
, the link can be immediately used inread_csv()
. Whendirect = FALSE
, the link send users to the Google Drive preview of the data.The text was updated successfully, but these errors were encountered: