how to upload/install python application in web server - python

I have a facial recognition model created using python and wish to upload it to my cloud web server, for use within my existing website.
However, I have no idea to go about it. Is the Flask the way to go?
My server is Apache with PHP.
Thank you.

GoDaddy has some documentation about this
Python on server

Related

Can't select Web Job on Azure

I'm trying to create a Web Job on Azure (I have a student account) but the option is greyed out whenever I create a Web App, does anyone know why? I'm aiming to host a Discord bot I wrote on there, although it uses various Python packages and SQLite3 so I'm not sure if it'd even work. If anyone has any other hosting alternatives I'd appreciate suggestions!
WebJob feature is only support in Azure WebApp for Windows, not for Linux on Container.
Also note that Student Subscription will have limited services enabled.

how to host python script in a Web Server and access it by calling an API from xamarin application?

I need to work with opencv in my xamarin application .
I found that if I use openCV directly in xamarin , the size of the app will be huge .
the best solution I found for this is to use the openCV in python script then to host the python script in a Web Server and access it by calling an API from xamarin .
I have no idea how to do this .
any help please ?
and is there is a better solutions ?
You can create your web server using Flask or Django. Flask is a simple micro framework whereas Django is a more advanced MVC like framework.

Execute python script From web browser(http/curl Request)

I'm quit new with python, I use basic python for scripting, but never used for HTTP request.
I used to learn django, wsgi but all tutorials have website development guidance
1- I don't want to build any website, just want to make python executable
from remote example:(http://www.example.com/test.py) like PHP.
2- There is one python file called test.py, has some functions like
retrieving info from database.
Deploying some services on cloud and returning status.
3- Nginx for web server & REST API Methods.
I really appreciate if someone can help me :)

Hosting a tornado/websocket application

I wrote an application which makes use of the websocket implementation of Tornado and I am trying to find a host for it. As far as I can tell by reading google search results, google appengine does not support websockets at the moment. I'm not sure about heroku since I couldnt find any information. So my question is, if anybody knows a hoster where I could host my application?
The easiest thing might be to use a general IaaS (Infrastructure as a Service) cloud provider such as Amazon EC2 or Rackspace. Or even just use a regular hosted server like with Dreamhost. With those you get direct access to the OS and network configuration and you can do whatever you want. The downside is those will be more expensive and you for EC2 and Rackspace you will need to manage the host itself.
Update: you can now use Websockets on Heroku. Here is some information about using Websockets with Python on Heroku.

GoogleAppEngine web proxy

Does anyone know of a simple open source proxy capable of running on google app engine or where to start in making one? (preferably in python, I'm trying to bypass a site blocking system)
You can try Mirrorrr:
http://code.google.com/p/mirrorrr/
Or Masher Nations, Itube Appengine, Tohr, etc.

Categories

Resources