<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel rdf:about="https://community.wolfram.com">
    <title>Community RSS Feed</title>
    <link>https://community.wolfram.com</link>
    <description>RSS Feed for Wolfram Community showing questions tagged with Wolfram|Alpha Integration sorted by active.</description>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3671042" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3531759" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3032448" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3167060" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3090094" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3022474" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2940753" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3012888" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2896427" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2819025" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2808925" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2816056" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2680588" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2572151" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2555002" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2529276" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2501397" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2159024" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2102061" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2073305" />
      </rdf:Seq>
    </items>
  </channel>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3671042">
    <title>Quantum MCAGI</title>
    <link>https://community.wolfram.com/groups/-/m/t/3671042</link>
    <description>I&amp;#039;m sharing my code to my Quantum MCAGI. Today&amp;#039;s LLMs are FUNDAMENTALLY flawed. This changes the game in every aspect and I need some help on where to go with it next. The code works and everything functions. I&amp;#039;m creating my own image generator it&amp;#039;s even connected to wolfram cloud to be able to have a location to store data. And who ever uses can upload or download said data. So in essence think instead of servers my AI lives in the cloud. Eventually attempt to build my own Quantum Cloud. Please take a look and give me feed back. And I could really use some with a computer I&amp;#039;m doing all this on my phone which is (I know it) holding it back</description>
    <dc:creator>Cory Blackburn</dc:creator>
    <dc:date>2026-03-27T17:41:14Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3531759">
    <title>Wolfram Alpha queries give missing() on the step-by-step in V14.3</title>
    <link>https://community.wolfram.com/groups/-/m/t/3531759</link>
    <description>Since upgrading to version 14.3, sending queries to Wolfram/Alpha (&amp;#034;==&amp;#034;) on even the simplest integral,  derivative, or limit always returns missing() on the step-by-step.  Prior to upgrading, it worked perfectly for even relatively complex calculations. I&amp;#039;ve been through the release notes and don&amp;#039;t see an obvious related item. What am I missing?&#xD;
&#xD;
Thanks.</description>
    <dc:creator>Larry Dale  Snelling</dc:creator>
    <dc:date>2025-08-17T16:12:39Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3032448">
    <title>Can I Use Wolframplha&amp;#039;s step by step api in python?</title>
    <link>https://community.wolfram.com/groups/-/m/t/3032448</link>
    <description>I&amp;#039;m a beginner to python and i wanna do simple code that shows step by step output for user&amp;#039;s mathematical problem&amp;#039;s however i tried to use step by step api app key i can&amp;#039;t get the step by step i just get answer as an output here&amp;#039;s my code:&#xD;
&#xD;
    import requests&#xD;
    &#xD;
    app_id = &amp;#039;xxxxxx&amp;#039;&#xD;
    &#xD;
    &#xD;
    def query_wolfram_alpha(input_query):&#xD;
        base_url = &amp;#039;http://api.wolframalpha.com/v2/query&amp;#039;&#xD;
        params = {&#xD;
            &amp;#039;input&amp;#039;: input_query,&#xD;
            &amp;#039;format&amp;#039;: &amp;#039;plaintext&amp;#039;,&#xD;
            &amp;#039;output&amp;#039;: &amp;#039;JSON&amp;#039;,&#xD;
            &amp;#039;appid&amp;#039;: app_id,&#xD;
        }&#xD;
    &#xD;
        response = requests.get(base_url, params=params)&#xD;
        data = response.json()&#xD;
    &#xD;
        &#xD;
        if &amp;#039;pods&amp;#039; in data[&amp;#039;queryresult&amp;#039;]:&#xD;
            &#xD;
            result_pod = next((pod for pod in data[&amp;#039;queryresult&amp;#039;][&amp;#039;pods&amp;#039;] if pod[&amp;#039;title&amp;#039;] == &amp;#039;Result&amp;#039;), None)&#xD;
    &#xD;
            if result_pod:&#xD;
                &#xD;
                result_text = result_pod[&amp;#039;subpods&amp;#039;][0][&amp;#039;plaintext&amp;#039;]&#xD;
                print(f&amp;#034;Solution: {result_text}&amp;#034;)&#xD;
            else:&#xD;
                print(&amp;#034;No solution found.&amp;#034;)&#xD;
        else:&#xD;
            print(&amp;#034;No solution found.&amp;#034;)&#xD;
    &#xD;
    &#xD;
    query = &amp;#039;expand (9x+3)^6&amp;#039;&#xD;
    query_wolfram_alpha(query)</description>
    <dc:creator>Aswin Selvam</dc:creator>
    <dc:date>2023-10-11T16:22:49Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3167060">
    <title>Converting Wolfram Alpha result to Markdown</title>
    <link>https://community.wolfram.com/groups/-/m/t/3167060</link>
    <description>Hi everyone, I&amp;#039;m using Wolfram Alpha directly in notebook. It is very useful and has a nice layout. But I would like to save it in text form as Markdown markup. Wolfram Alpha can have lists, tables, links, code and pictures. I would like to convert what I can into MD file format. If I get an image, save it to disk and insert a link to it.&#xD;
&#xD;
![enter image description here][1]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=waq.png&amp;amp;userId=937303</description>
    <dc:creator>Kirill Belov</dc:creator>
    <dc:date>2024-05-05T10:29:09Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3090094">
    <title>What does the function E ( a | b ) mean?</title>
    <link>https://community.wolfram.com/groups/-/m/t/3090094</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
I asked it to Integrate a function and the output had a function E( a | b )&#xD;
I think it might be an elliptic integral but that should come in the form EllipticE[a,b]&#xD;
&#xD;
So what does it mean?&#xD;
&#xD;
Any help is appreciated, thanks a lot in advance!&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/a24fcf5f-6c2f-4adf-bcaf-0cee798e3235</description>
    <dc:creator>R B</dc:creator>
    <dc:date>2023-12-23T16:24:03Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3022474">
    <title>Inquiry about Integrating Wolfram Alpha in JavaScript Project</title>
    <link>https://community.wolfram.com/groups/-/m/t/3022474</link>
    <description>Subject: Inquiry about Integrating Wolfram Alpha in JavaScript Project&#xD;
&#xD;
Dear Wolfram Alpha Support Team,&#xD;
&#xD;
I hope this message finds you well. I am reaching out to inquire about the possibility of integrating Wolfram Alpha into my JavaScript-based project. I have outlined below the specific requirements that I would like to fulfill:&#xD;
&#xD;
1. Math Input Field: I would like to incorporate a math input field that allows users to input equations using the syntax supported by Wolfram Alpha.&#xD;
&#xD;
2. Equation Evaluation and Storage: It is crucial for my project to be able to evaluate these equations and retrieve the corresponding answers. Additionally, I would like to store both the formula and its answer in a database, ensuring that the formula remains unchanged when the user revisits the page.&#xD;
&#xD;
3. Predefined Variables: I would like to utilize predefined variables within the formulas and perform calculations using their assigned values.&#xD;
&#xD;
4. Displaying Stored Formulas: The ability to display previously stored formulas is essential for my project. Users should be able to view their previously entered equations.&#xD;
&#xD;
5. Displaying Converted Formulas: I would like to display the converted formulas, including the substituted values of the variables used.&#xD;
&#xD;
6. Final Output: The final output, including the evaluated answer, should be displayed to the user.&#xD;
&#xD;
7. Base Unit Conversion: It would be great if Wolfram Alpha could provide support for converting formulas into base units.&#xD;
&#xD;
8. Get Plots and graphs: we need to shows the user generated plots and graphs from the equations.&#xD;
&#xD;
Additionally, we would greatly appreciate it if you could provide us with an example that covers all of the mentioned scenarios. This example would help us gain a better understanding of how to integrate Wolfram Alpha into our project.&#xD;
&#xD;
Thank you for your time and assistance. We look forward to your guidance and suggestions..</description>
    <dc:creator>Jaymin Munjani</dc:creator>
    <dc:date>2023-09-27T12:08:57Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2940753">
    <title>OpenAI and Wolfram Alpha API needs extra cost?</title>
    <link>https://community.wolfram.com/groups/-/m/t/2940753</link>
    <description>Does anyone have already experience in the costs involved in using the OpenAI and Wolfram Alpha setup? E.g., do you need to have the OpenAI pro license to use the API? I believe it&amp;#039;s 20$ per month. Does the OpenAI API have a separate API cost? I mean if you use Pro do you still have the same costs in using the API mentioned at https://openai.com/pricing#language-models When you use the Wolfram plugin are there Credits involved (is there special pricing possible)?&#xD;
&#xD;
Really would like to hear about real life experience.&#xD;
&#xD;
&#xD;
  [1]: https://openai.com/pricing#language-models</description>
    <dc:creator>l van Veen</dc:creator>
    <dc:date>2023-06-21T07:32:16Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3012888">
    <title>Integrate Wolfram Alpha in react.js web app.</title>
    <link>https://community.wolfram.com/groups/-/m/t/3012888</link>
    <description>Hello community, I am a web developer. Can anyone provide me with information on how to integrate Wolfram Alpha into my web application? I am mainly interested in using civil engineering formulas, such as beam deformation. Users should be able to input formulas in LaTeX format and use predefined variables that are already available in my app to perform calculations.&#xD;
&#xD;
I have attached a PDF document containing the formulas that I wish to use.</description>
    <dc:creator>Jaymin Munjani</dc:creator>
    <dc:date>2023-09-15T09:48:48Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2896427">
    <title>Converting natural language to Wolfram language in Wolfram Desktop</title>
    <link>https://community.wolfram.com/groups/-/m/t/2896427</link>
    <description>Hi all,&#xD;
&#xD;
I am new to Wolfram products and would really appreciate some assistance! I am using a Wolfram|One trial subscription and trying to learn the ropes. &#xD;
&#xD;
I want to work in an environment that allows me to use natural language when I am unsure of the correct Wolfram Language expression, while ALSO allowing me to program using Wolfram Language for the maturity of the time. &#xD;
&#xD;
I had thought that Wolfram|One and its associated desktop application would allow me to do this. So far, I&amp;#039;m disappointed. Expressions that will evaluate in Wolfram|Alpha, will not evaluate in Wolfram|One when the &amp;#034;Interpret natural language into Wolfram Language code&amp;#034; function is used. &#xD;
&#xD;
For example, I tried to use the natural language expression &amp;#034;busiest airports in the world&amp;#034; and     receive an error:&#xD;
&#xD;
Message: &amp;#034;No Wolfram language translation found.&#xD;
Tag: NoParse&#xD;
Query: busiest airports in the world&#xD;
&#xD;
This same expression evaluates in Wolfram|Alpha. &#xD;
&#xD;
Is this expected behavior? Or what am I doing incorrectly? &#xD;
&#xD;
Additional details: &#xD;
&#xD;
Software: Wolfram desktop 13.2.1.0 MAC OS X ARM (64 bit)&#xD;
Function: &amp;#034;Interpret natural language into Wolfram Language code&amp;#034;&#xD;
&#xD;
Thank you!</description>
    <dc:creator>Cogni Curious</dc:creator>
    <dc:date>2023-04-12T01:56:25Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2819025">
    <title>DSolve vs Wolfram Alpha / hand calculation results</title>
    <link>https://community.wolfram.com/groups/-/m/t/2819025</link>
    <description>I am trying to solve the following second order differential equation with constant coefficients&#xD;
&#xD;
    df[x_[t_]] = &#xD;
     4* D[x[t], {t, 2 }] +  2* D[x[t], {t, 1 }] + 4* D[x[t], {t, 0 }]&#xD;
&#xD;
With the following inhomogeneity:&#xD;
&#xD;
    ih[t_] = -9 E^(-t/4) Sin[t (Sqrt[15]/4)]&#xD;
&#xD;
When I solve the equation by hand I get a  general solution that looks like:&#xD;
&#xD;
    sln = {{x -&amp;gt; &#xD;
        Function[{t}, (C[2]*Cos[(Sqrt[15]*t)/4])/&#xD;
           E^(t/4) + (C[1]*Sin[(Sqrt[15]*t)/4])/E^(t/4) + &#xD;
                ((3/10)*(Sqrt[15]*t*Cos[(Sqrt[15]*t)/4] ))/E^(t/4)]}}&#xD;
&#xD;
The same solution is obtained by entering the equation into wolfram alpha and asking for a solution.&#xD;
&#xD;
&#xD;
However when using Dsolve to work out the solution:&#xD;
&#xD;
    df1s = FullSimplify[DSolve[df[x[t]] == ih[t], x, t]]&#xD;
&#xD;
I obtain an extra term in the particular solution of the form ( after simplification) :&#xD;
&#xD;
       3/10 E^(-t/4) * -2*Sin[(Sqrt[15]*t)/4]&#xD;
&#xD;
Substituting both answers back into the equation in Mathematica gives back the original inhomogeneity, Indicating that both solutions are &amp;#034;correct&amp;#034;.&#xD;
&#xD;
But as far as I can tell both terms are only equivalent when the extra sin term goes to 0. For example when t = 0.&#xD;
&#xD;
I have the following questions and would be very interested if anyone can shed some light on why this happens.&#xD;
&#xD;
1 ) Why do Dsolve and wolfram alpha give different answers. Is it because wolfram alpha is not using a Dsolve like process but instead working out the example &amp;#034;step by step&amp;#034; as shown in the &amp;#034;step by step&amp;#034; solution provided.&#xD;
&#xD;
2) Where is this extra term coming from ? Is it because Dsolve is &amp;#034;solving&amp;#034; the equation around a point like t=0 where both expressions are equivalent and thus can&amp;#039;t distinguish the difference and just drags the extra term along as if it did not matter.&#xD;
&#xD;
4) Why is substituting both terms back into the original differential equations in mathematica giving the same result. Are these two terms Truly equivalent even though they only seem to be equal at certain points ?&#xD;
&#xD;
5) Is there anything that can be done to make Dsolve give the same answer as Mathematica or is it just a question of having to &amp;#034;solve&amp;#034; the problem step by step instead of using Dsolve to reach an answer.&#xD;
&#xD;
il attach a short notebook that shows the situation I am talking about. Please let me know if its not clear enough and I can make a neater example&#xD;
&#xD;
Thanks in advance.&#xD;
&#xD;
P.S:   Giving DSolve the appropriate complex inhomogeneity and then extracting the imaginary part of the complex solution gives the exact same results.&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/b9192c11-942e-4b28-b98e-cfe459cec803</description>
    <dc:creator>Manuel Telleria</dc:creator>
    <dc:date>2023-01-28T20:23:56Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2808925">
    <title>LinkObject errors on Windows 10 but not Windows 11, Version 13.2.0</title>
    <link>https://community.wolfram.com/groups/-/m/t/2808925</link>
    <description>On Windows 10, I get LinkObject errors related to &amp;#034;XML.exe&amp;#034; when using natural language or WolframAlpha input from standard notebooks.&#xD;
&#xD;
There is no problem on Windows 11.&#xD;
&#xD;
(WolframAlpha works from the website and from the Windows application).&#xD;
&#xD;
See the attached notebook &amp;#034;230124 LinkObject Errors.nb&amp;#034;, last run on Windows 10.&#xD;
&#xD;
At the end of the notebook there are screenshots taken from Windows 10 and Windows 11.&#xD;
&#xD;
I submitted the same question to Wolfram support, but maybe someone here already knows a solution.&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/f617b237-69d7-47cd-a4e9-a91fec839219</description>
    <dc:creator>Werner Geiger</dc:creator>
    <dc:date>2023-01-24T18:10:18Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2816056">
    <title>Free-form input translation to code on cloud-based Mathematica</title>
    <link>https://community.wolfram.com/groups/-/m/t/2816056</link>
    <description>Hi,&#xD;
&#xD;
When I use free-form input on my desktop copy of Mathematica, I get a copy of the Mathematica code that it interprets my free-form input as in addition to the output for that code:&#xD;
&#xD;
![enter image description here][1]&#xD;
&#xD;
However, on the Wolfram Cloud Mathematica, I only get the final output:&#xD;
&#xD;
![enter image description here][2]&#xD;
&#xD;
Is there a way to get the code (e.g., &amp;#034;Plot[x^2, {x,-1.2,1.2}]&amp;#034; from above) on the cloud-based version?&#xD;
&#xD;
Thanks,&#xD;
Dan&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ScreenShot2023-01-26at2.05.46PM.png&amp;amp;userId=2816040&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=image002.png&amp;amp;userId=2816040</description>
    <dc:creator>Daniel Visscher</dc:creator>
    <dc:date>2023-01-26T19:10:43Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2680588">
    <title>Why leads a W|A Querry in notebooks to LinkObject error under Win 10?</title>
    <link>https://community.wolfram.com/groups/-/m/t/2680588</link>
    <description>When I input a Wolfram|Alpha query in any notebook (Wolfram Desktop 13.1) under Windows 10, I get a ***LinkObject::linkd*** error. Hence I cannot use W|A from within standard WL notebooks.&#xD;
![enter image description here][1]&#xD;
&#xD;
The XML.exe file mentioned is present in my installation.&#xD;
&#xD;
Under Windows 11 everything works fine.&#xD;
&#xD;
--------------------------------------&#xD;
Windows Pro 64bit 10 22H2 / 11 22H2. Wolfram|One 13.1. Wolfram|Alpha Pro.&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=7439b.jpg&amp;amp;userId=890153</description>
    <dc:creator>Werner Geiger</dc:creator>
    <dc:date>2022-11-02T08:49:57Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2572151">
    <title>Ctrl-= always got timeout while parsing?</title>
    <link>https://community.wolfram.com/groups/-/m/t/2572151</link>
    <description>Entering &#xD;
&#xD;
    WolframAlpha[&amp;#034;Estella, Navarra, Spain&amp;#034;]&#xD;
works well but when use Ctrl+= it&amp;#039;s giving that:&#xD;
&#xD;
    \!\(&#xD;
    NamespaceBox[&amp;#034;LinguisticAssistant&amp;#034;,&#xD;
    DynamicModuleBox[{Typeset`query$$ = &amp;#034;Lizarra Navarra Spain&amp;#034;, &#xD;
        Typeset`boxes$$ = &amp;#034;None&amp;#034;, Typeset`allassumptions$$ = {}, &#xD;
        Typeset`assumptions$$ = {}, Typeset`open$$ = {1, 2}, &#xD;
        Typeset`querystate$$ = {&#xD;
        &amp;#034;Online&amp;#034; -&amp;gt; True, &amp;#034;Allowed&amp;#034; -&amp;gt; True, &#xD;
         &amp;#034;$TimedOut&amp;#034; -&amp;gt; 5.0841452`8.157762938733232, &amp;#034;Messages&amp;#034; -&amp;gt; {}}}, &#xD;
    DynamicBox[ToBoxes[&#xD;
    AlphaIntegration`LinguisticAssistantBoxes[&amp;#034;&amp;#034;, 4, Automatic, &#xD;
    Dynamic[Typeset`query$$], &#xD;
    Dynamic[Typeset`boxes$$], &#xD;
    Dynamic[Typeset`allassumptions$$], &#xD;
    Dynamic[Typeset`assumptions$$], &#xD;
    Dynamic[Typeset`open$$], &#xD;
    Dynamic[Typeset`querystate$$]], StandardForm],&#xD;
    ImageSizeCache-&amp;gt;{172., {7., 18.}},&#xD;
    TrackedSymbols:&amp;gt;{&#xD;
          Typeset`query$$, Typeset`boxes$$, Typeset`allassumptions$$, &#xD;
           Typeset`assumptions$$, Typeset`open$$, Typeset`querystate$$}],&#xD;
    DynamicModuleValues:&amp;gt;{},&#xD;
    UndoTrackedVariables:&amp;gt;{Typeset`open$$}],&#xD;
    BaseStyle-&amp;gt;{&amp;#034;Deploy&amp;#034;},&#xD;
    DeleteWithContents-&amp;gt;True,&#xD;
    Editable-&amp;gt;False,&#xD;
    SelectWithContents-&amp;gt;True]\)</description>
    <dc:creator>Anxon Pués</dc:creator>
    <dc:date>2022-07-16T21:25:30Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2555002">
    <title>How prevent data loss in Excel when Wolfram no longer works?</title>
    <link>https://community.wolfram.com/groups/-/m/t/2555002</link>
    <description>I have a spreadsheet with my list of bird species observations and previously used the Wolfram Knowledgebase add-on to add the data card for each species using the Animals option. It seems that now the Wolfram-Excel partnership is ended, my list of bird observations is now gone and replaced by #VALUE. Does anyone know how to revert these cells back to plain text so I get the bird species back? &#xD;
![enter image description here][1]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2022-06-21112402.png&amp;amp;userId=2554570</description>
    <dc:creator>Marjorie Lieuwen</dc:creator>
    <dc:date>2022-06-21T18:36:37Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2529276">
    <title>Wolfram Alpha API request to quadratic fit fails?</title>
    <link>https://community.wolfram.com/groups/-/m/t/2529276</link>
    <description>Trying to send API request to Quadratic Fit. How many array elements can be defined? This seems to fail when too many arrays are sent. Also receive &amp;#034;Oops, you&amp;#039;ve exceeded the maximum number of characters.&amp;#034; when trying from web front end.&#xD;
&#xD;
    quadratic+fit+&#xD;
    {1,599},&#xD;
    {2,670},&#xD;
    {3,900},&#xD;
    {4,910},&#xD;
    {5,914},&#xD;
    {6,918},&#xD;
    {7,976},&#xD;
    {8,1011},&#xD;
    {9,1112},&#xD;
    {10,1166},&#xD;
    {11,1249},&#xD;
    {12,1265},&#xD;
    {13,1269},&#xD;
    {14,1451},&#xD;
    {15,1515},&#xD;
    {16,1726},&#xD;
    {17,1787},&#xD;
    {18,1907},&#xD;
    {19,1934},&#xD;
    {20,1941},&#xD;
    {21,2038},&#xD;
    {22,2213},&#xD;
    {23,2315},&#xD;
    {24,2448},&#xD;
    {25,2529},&#xD;
    {26,2557},&#xD;
    {27,2567},&#xD;
    {28,2720},&#xD;
    {29,2862},&#xD;
    {30,3078},&#xD;
    {31,3333},&#xD;
    {32,3346},&#xD;
    {33,3356},&#xD;
    {34,3583},&#xD;
    {35,3625},&#xD;
    {36,4008},&#xD;
    {37,4198},&#xD;
    {38,4298},&#xD;
    {39,4362},&#xD;
    {40,4374}</description>
    <dc:creator>Chris Veazey</dc:creator>
    <dc:date>2022-05-11T12:10:26Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2501397">
    <title>Extraction of half life time of an isotope?</title>
    <link>https://community.wolfram.com/groups/-/m/t/2501397</link>
    <description>I want to extract the half life time of an isotope, only one value no range of values; example:&#xD;
&#xD;
    WolframAlpha[&amp;#034;U235&amp;#034;, {{&amp;#034;half-life:IsotopeData&amp;#034;, 1}, &amp;#034;Content&amp;#034;}]</description>
    <dc:creator>Peter Klamser</dc:creator>
    <dc:date>2022-04-01T16:20:39Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2159024">
    <title>Error in Wolfram|Alpha API client</title>
    <link>https://community.wolfram.com/groups/-/m/t/2159024</link>
    <description>here is my error:  &#xD;
assert resp.headers.gettype() == &amp;#039;text/xml&amp;#039;&#xD;
AttributeError: &amp;#039;HTTPMessage&amp;#039; object has no attribute &amp;#039;gettype&amp;#039;&#xD;
&#xD;
and that is my code:  &#xD;
&#xD;
    import wolframalpha&#xD;
    client = wolframalpha.Client(&amp;#039;LXP5A5-L92R7KJWTK&amp;#039;)&#xD;
    &#xD;
    while True:&#xD;
        query = str(input(&amp;#039;Query: &amp;#039;))&#xD;
        res = client.query(query)&#xD;
        output = next(res.results).text&#xD;
        print(output)&#xD;
&#xD;
&#xD;
please help me</description>
    <dc:creator>bahavu pascal</dc:creator>
    <dc:date>2021-01-11T08:42:00Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2102061">
    <title>Pressing &amp;#034;=&amp;#034; in input cell inadvertently converts to free-form input</title>
    <link>https://community.wolfram.com/groups/-/m/t/2102061</link>
    <description>When working inside some Mathematica 12 notebooks (downloaded from the web), when the &amp;#034;=&amp;#034; key is pressed in an Input cell (e.g. when trying to type in &amp;#034;myFunc[r_]:=&amp;#034;), as soon as the &amp;#034;=&amp;#034; key is pressed, the entry changes into the orange free-form input form. What setting in Preferences or Options Inspector is causing this behavior, and how can I disable this?&#xD;
This does not happen in a normal, blank Mathematica notebook on my machine. Thanks.</description>
    <dc:creator>Suha Tanaz</dc:creator>
    <dc:date>2020-10-26T16:58:17Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2073305">
    <title>Retrieve data from a graph</title>
    <link>https://community.wolfram.com/groups/-/m/t/2073305</link>
    <description>Friends:&#xD;
I have a question about a (I think) very simple operation which I have not managed to solve.&#xD;
&#xD;
I request, say, the GDP per capita of a country using Shift =:&#xD;
&#xD;
= per capita GDP Colombia&#xD;
&#xD;
This returns a lot of information, including a nice beautiful graph with Colombia&amp;#039;s GDP per capita from 1960 to 2018. Now, however, I want not only the graph but also all the data points, say in a list. If I select the Graph and right click there is a &amp;#034;get coordinates&amp;#034; option, but apparently it does not allow me to get all the data points.&#xD;
&#xD;
So the question is: how can I get the data from the graph? &#xD;
Thanks in advance&#xD;
Francisco</description>
    <dc:creator>Francisco Gutierrez</dc:creator>
    <dc:date>2020-09-08T15:51:40Z</dc:date>
  </item>
</rdf:RDF>

