Trying to use a Flask app within Tableau without leaving the dashboard - tableau-api

Im wondering, I have a dashboard that links to a url with a flask app that I created. Is there a way to be able to interject that flask app to run a simple algorithm without it leaving tableau?

Related

Will every change in Ionic force the customers to update the Ionic app again and again?

If I make changes to the HTML/CSS/JS code of my ionic code, will the customer have to update the app or will it be updated dynamically?
As far as I know, we just push a website into an app and deploy it. When we change the code of your website and deploy it, the website changes show up automatically.
I wonder if Ionic runs the same way? Some people suggest that it is just running the app in a web view. So the app is intact, I change the website, what will it do?
I really want to know about this because we are trying to modernise our application. Our application depends on the server too much for view rendering and for all the logic. I want to make the client a little independent but at the same time keep the changes dynamic like they are right now.
Thank you so much.

How to make my flutter application changes go live directly without pushing a new version update?

Does flutter allows us to push live updates without updating the app through play store or app store?
I have a built flutter application and I frequently do to it changes by adding new announcements and pictures. However, when i do these changes they don’t appear on the app that has been already launched on the play store and nothing appears to the users. So what can I do to change this and to make any change I do to directly go live. Other than pushing a new version update everytime as this isn’t reliable at all.
You need to get the data from a backend instead of uploading new assets to the app every time. If you do that you will need to release updates for the app all the time + the app bundle size will be much bigger. It's basically just not how it is supposed to be done.
A backend is something like an online "storage" for your app's data.
If you don't already know how to build APIs you can also use Fireabse which is more beginner-friendly. If you do know python for example you could use Flask or Django. More on backends here

Authentication with web based flutter app

I want to build a flutter app where people can log in and post things for other users to see. I want this app to be accessible in a browser and thought I could use Flutter-Web.
I can run the flutter app on a server with a local database but the issue is that if one user accesses the page and logs in, then everybody else is also logged in as that user.
The only solution I can see is if everybody would download my flutter app to their local machine, start an instance and then all those instances communicate with a remote database.
I can use a remote database, although I don't like it, but I don't want people to install anything.
Is there a way around by serving multiple flutter instances, one for each browser session?
The library flutter-auth-ui provides UI for Firebase authentication.
See how it works here.

Ionic - What about the real time and the database?

I want to code a web app which can runs on IOS, Android, Mobile browser, Desktop browser.
I tried for 6 hours Meteor but I had a lot of problems ... so I just switched to Ionic.
In 2 hours I created a simple app with a Geolocation system + Google maps and I runned it with my Iphone with Ionic View, that was a good start.
Now I need to persist my datas with a real database (please don't reply firebase) and add a real time system.
What are they the right tools and the right structure to reach that goal ?
If you want firebase-like capabilities, I would recomend rethinkdb: https://www.rethinkdb.com/
Otherwise, you can try mongodb: https://www.mongodb.org/
The structure is up to you to define according to your data.

Developing Google gadgets with GWT

I successfully created gadget using Getting Started with Gadgets and GWT
I want to know:
Is it possible to work on gadgets in development mode? I want to change the code and see the results. Or i need to compile and publish the gadget every time i change code?
I want my GWT GAE application to be both normal GWT app and a google gadget. When user enters http://mygadget.appspot.com/ i want him to see normal GWT app. But when user access http://mygadget.appspot.com/axogadget/com.axdms.gadget.client.AxObjectGadget.gadget.xml he gets the gadget. Is it posible? Or it has to be 2 different GAE applications? (Normal GWT app and gadget have different functionality). Multiple entry points?
yes using apache shinding, but it is still a hassle.
multiple entry points can work for you but you have to differentiate on how you make your calls to the server. Normal GWT app can use RPC for example but Gadgets must use IoProvider.