Questions tagged [cloud-deploy]

119 questions
4
votes
3 answers

Any method use Import and Export in CloudDeploy?

I have a test file(test1.txt) in my desktop.This is its content. FilePrint[FileNameJoin[{$HomeDirectory, "Desktop", "test1.txt"}]] (* 31.16 220.49774362741593 31.18 223.49849688143496 31.2 226.49924900492292 31.22 223.5 31.24 228.5 31.26 …
yode
  • 26,686
  • 4
  • 62
  • 167
3
votes
1 answer

How can I prevent autosubmitting in FormPage?

If I deploy this code: CloudDeploy[FormPage[{"x" -> <|"Input" -> "Apple"|>}, Identity]] When I execute the URL the form is automaticaly submitted as in the image below To prevend auto submitting, as mentioned in this post, I…
Murta
  • 26,275
  • 6
  • 76
  • 166
2
votes
0 answers

How to deploy a dynamic object using CloudDeploy

I want to deploy a dynamic object by CloudDeploy,which can update by the time interval, i check the help doc and find the method: So i try this method but it seems not work as expected,the displayed result is fixed when i open the link,here is the…
Ren Witcher
  • 707
  • 3
  • 12
2
votes
0 answers

Cloud hosting of Multiple Choice Test

I am looking to create a very simple quiz but one with a lot of equations. It needs to be hosted in the cloud and students taking said quiz should not need and Wolfram licenses. This seems a straightforward goal but I've not found any tutorial or…
user153493
  • 21
  • 1
2
votes
0 answers

put some function in cloud and execute from any place cellular phone or tablet or laptop

Mostly I would like to have back a small string produced after entering few integers... anyway the functions is: pw[j_Integer, nd_Integer, sl_Integer, oeo_Integer] := Style[StringJoin[" ", Map[ctec[[# + 1]] &, …
Anxon Pués
  • 907
  • 5
  • 13
2
votes
0 answers

How do I get public access to a 3D plot in the Wolfram cloud?

When I save a 3D plot to the cloud via: CloudDeploy[Plot3D[Sin[x y], {x, -2, 2}, {y, -2, 2}], Permissions -> "rx"] It returns a link such as: CloudObject["https://www.wolframcloud.com/objects/c5e46088-1341-4416-8607-dc4b0637cf16"] and I can…
Dominic
  • 2,904
  • 1
  • 9
  • 14
1
vote
0 answers

FormFunction output automatic download

I want to create a FormFunction that takes in a CSV file, applies some operations on the data and outputs another CSV file. I would like for the ouput CSV file to be automatically downloaded. I have a piece of code that works, but the way it outputs…
Gabriel Landi
  • 2,590
  • 1
  • 19
  • 22
1
vote
0 answers

how to use EmbedCode[CloudDeploy[Manipulate[...]]]

This is a question about EmbedCode[CloudDeploy[...]]. I have seen various questions and answers about the similar questions, but none of them helped me in embedding several Manipulates on my own website. After embedding a Manipulate, I refresh my…
Tugrul Temel
  • 6,193
  • 3
  • 12
  • 32
1
vote
0 answers

Cloud deploying a function of inbuilt functions with TextCases (neural network)

Is it possible to use TextCases (a in-built function) in cloud-deploy?
0
votes
1 answer

CloudDeploy function returning error

I've created a very simple API that imports the "Plaintext" of a URL or a PDF. Here is my code: urlScraperTest = APIFunction[ {"url" -> "String"}, Import[#url, "Plaintext"] &]; and deployed it to the Wolfram Cloud: CloudDeploy[urlScraperTest,…
MSC02476
  • 699
  • 4
  • 12
0
votes
0 answers

Bug in FormPage / FormFunction using Return inside module

Someone knows why to I need to use /.Return -> Identity in the code below? FormPage[ "code" -> "String" , Module[{}, If[#code!="123", Return["wrong code:" <>#code ]]; "your code is right: "<>#code ]/.Return -> Identity…
Murta
  • 26,275
  • 6
  • 76
  • 166
0
votes
0 answers

How call a CloudDeployed function with more than a parameter

With only one parameter api = CloudDeploy[funccc] get the urrl CloudObject["https://www.wolframcloud.com/obj/66bca81d-7dfa-4e56-bd37-\ 68357ffa0fec"] call the url finished with ?x=308 and done but how to put not only x but also y=11 and z = 10 ??
Anxon Pués
  • 907
  • 5
  • 13
0
votes
0 answers

Cloud Deploy Dynamic Click Pane Plot

I was wondering if anyone has a solution as to why the following code which works in Mathematica 12.0, doesn't work when using Cloud Deploy? CloudDeploy@ DynamicModule[{pt = {\[Pi]/2, 3}}, ClickPane[ Plot[3 Sin[x], {x, -6, 6}, Epilog ->…
Tim B
  • 547
  • 2
  • 9
0
votes
0 answers

CloudDeploy Modules with dependencies on other modules

I have searched the SE for this: I have found many examples, but none that have actually helped me to solve this problem. I have a set of Modules to perform specific calculations for parts of a larger problem that I want to solve. I went…
Sid
  • 121
  • 5
0
votes
0 answers

Using CloudDeploy for the following expression

There is a simple code for the dynamic version of Classify for notable persons i = Dynamic[img = CurrentImage[]; {img,Classify["NotablePerson", img, {"TopProbabilities", 3}]}] how can I use CloudDeploy[] for this expression? I tried…
vito
  • 8,958
  • 1
  • 25
  • 67