Opening Mathematica file in google drive
Clash Royale CLAN TAG#URR8PPP
up vote
4
down vote
favorite
I have a Mathematica file in my google drive. There is no option to open the Mathematica file directly, without downloading it. Is it possible to directly open the file from google drive?
files-and-directories mathematicascript general-utilities
add a comment |Â
up vote
4
down vote
favorite
I have a Mathematica file in my google drive. There is no option to open the Mathematica file directly, without downloading it. Is it possible to directly open the file from google drive?
files-and-directories mathematicascript general-utilities
add a comment |Â
up vote
4
down vote
favorite
up vote
4
down vote
favorite
I have a Mathematica file in my google drive. There is no option to open the Mathematica file directly, without downloading it. Is it possible to directly open the file from google drive?
files-and-directories mathematicascript general-utilities
I have a Mathematica file in my google drive. There is no option to open the Mathematica file directly, without downloading it. Is it possible to directly open the file from google drive?
files-and-directories mathematicascript general-utilities
asked Aug 13 at 9:10
user149973
1354
1354
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
7
down vote
If you have a public link, you can follow the answer to this question, and basically just import the data
Import[url, "Data"]
If you need to authenticate to get a private link, then you will need this answer and the packlet by @b3m2a1
PacletInstall[
"ServiceConnection_GoogleDrive",
"Site" ->
"http://www.wolframcloud.com/objects/b3m2a1.paclets/PacletServer"
];
gd = ServiceConnect["GoogleDrive"]
The OP seems to ask how to open the file with a web app — "without downloading it". AndImport
does download, I suppose (although you might not find the resulting file on your file system).
– Ruslan
Aug 13 at 14:50
2
@Ruslan well something or another would get downloaded no matter what. Thats the way web works.
– joojaa
Aug 13 at 15:18
@joojaa I would not consider the same fetching a file and opening it in a dedicated web app directly from GD. The more that there is also a WolframCloud where you can work with notebooks without fetching them. My interpretation of the question was the same as Ruslan's, does not mean we are right though, let's wait for OP. p.s. I think the answer is no.
– Kuba♦
Aug 14 at 6:47
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
7
down vote
If you have a public link, you can follow the answer to this question, and basically just import the data
Import[url, "Data"]
If you need to authenticate to get a private link, then you will need this answer and the packlet by @b3m2a1
PacletInstall[
"ServiceConnection_GoogleDrive",
"Site" ->
"http://www.wolframcloud.com/objects/b3m2a1.paclets/PacletServer"
];
gd = ServiceConnect["GoogleDrive"]
The OP seems to ask how to open the file with a web app — "without downloading it". AndImport
does download, I suppose (although you might not find the resulting file on your file system).
– Ruslan
Aug 13 at 14:50
2
@Ruslan well something or another would get downloaded no matter what. Thats the way web works.
– joojaa
Aug 13 at 15:18
@joojaa I would not consider the same fetching a file and opening it in a dedicated web app directly from GD. The more that there is also a WolframCloud where you can work with notebooks without fetching them. My interpretation of the question was the same as Ruslan's, does not mean we are right though, let's wait for OP. p.s. I think the answer is no.
– Kuba♦
Aug 14 at 6:47
add a comment |Â
up vote
7
down vote
If you have a public link, you can follow the answer to this question, and basically just import the data
Import[url, "Data"]
If you need to authenticate to get a private link, then you will need this answer and the packlet by @b3m2a1
PacletInstall[
"ServiceConnection_GoogleDrive",
"Site" ->
"http://www.wolframcloud.com/objects/b3m2a1.paclets/PacletServer"
];
gd = ServiceConnect["GoogleDrive"]
The OP seems to ask how to open the file with a web app — "without downloading it". AndImport
does download, I suppose (although you might not find the resulting file on your file system).
– Ruslan
Aug 13 at 14:50
2
@Ruslan well something or another would get downloaded no matter what. Thats the way web works.
– joojaa
Aug 13 at 15:18
@joojaa I would not consider the same fetching a file and opening it in a dedicated web app directly from GD. The more that there is also a WolframCloud where you can work with notebooks without fetching them. My interpretation of the question was the same as Ruslan's, does not mean we are right though, let's wait for OP. p.s. I think the answer is no.
– Kuba♦
Aug 14 at 6:47
add a comment |Â
up vote
7
down vote
up vote
7
down vote
If you have a public link, you can follow the answer to this question, and basically just import the data
Import[url, "Data"]
If you need to authenticate to get a private link, then you will need this answer and the packlet by @b3m2a1
PacletInstall[
"ServiceConnection_GoogleDrive",
"Site" ->
"http://www.wolframcloud.com/objects/b3m2a1.paclets/PacletServer"
];
gd = ServiceConnect["GoogleDrive"]
If you have a public link, you can follow the answer to this question, and basically just import the data
Import[url, "Data"]
If you need to authenticate to get a private link, then you will need this answer and the packlet by @b3m2a1
PacletInstall[
"ServiceConnection_GoogleDrive",
"Site" ->
"http://www.wolframcloud.com/objects/b3m2a1.paclets/PacletServer"
];
gd = ServiceConnect["GoogleDrive"]
answered Aug 13 at 10:31


rhermans
21.6k439103
21.6k439103
The OP seems to ask how to open the file with a web app — "without downloading it". AndImport
does download, I suppose (although you might not find the resulting file on your file system).
– Ruslan
Aug 13 at 14:50
2
@Ruslan well something or another would get downloaded no matter what. Thats the way web works.
– joojaa
Aug 13 at 15:18
@joojaa I would not consider the same fetching a file and opening it in a dedicated web app directly from GD. The more that there is also a WolframCloud where you can work with notebooks without fetching them. My interpretation of the question was the same as Ruslan's, does not mean we are right though, let's wait for OP. p.s. I think the answer is no.
– Kuba♦
Aug 14 at 6:47
add a comment |Â
The OP seems to ask how to open the file with a web app — "without downloading it". AndImport
does download, I suppose (although you might not find the resulting file on your file system).
– Ruslan
Aug 13 at 14:50
2
@Ruslan well something or another would get downloaded no matter what. Thats the way web works.
– joojaa
Aug 13 at 15:18
@joojaa I would not consider the same fetching a file and opening it in a dedicated web app directly from GD. The more that there is also a WolframCloud where you can work with notebooks without fetching them. My interpretation of the question was the same as Ruslan's, does not mean we are right though, let's wait for OP. p.s. I think the answer is no.
– Kuba♦
Aug 14 at 6:47
The OP seems to ask how to open the file with a web app — "without downloading it". And
Import
does download, I suppose (although you might not find the resulting file on your file system).– Ruslan
Aug 13 at 14:50
The OP seems to ask how to open the file with a web app — "without downloading it". And
Import
does download, I suppose (although you might not find the resulting file on your file system).– Ruslan
Aug 13 at 14:50
2
2
@Ruslan well something or another would get downloaded no matter what. Thats the way web works.
– joojaa
Aug 13 at 15:18
@Ruslan well something or another would get downloaded no matter what. Thats the way web works.
– joojaa
Aug 13 at 15:18
@joojaa I would not consider the same fetching a file and opening it in a dedicated web app directly from GD. The more that there is also a WolframCloud where you can work with notebooks without fetching them. My interpretation of the question was the same as Ruslan's, does not mean we are right though, let's wait for OP. p.s. I think the answer is no.
– Kuba♦
Aug 14 at 6:47
@joojaa I would not consider the same fetching a file and opening it in a dedicated web app directly from GD. The more that there is also a WolframCloud where you can work with notebooks without fetching them. My interpretation of the question was the same as Ruslan's, does not mean we are right though, let's wait for OP. p.s. I think the answer is no.
– Kuba♦
Aug 14 at 6:47
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f179943%2fopening-mathematica-file-in-google-drive%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password