anjanesh "uWSGI" is a server like Apache, so there isn't really a concept of a "uWSGI" application.
If you want to try a Python WSGI app similar to a basic CGI script but served by uWSGI, then here's a basic "hello world' example:
from cgi import parse_qs, escape
def application(env, start_response):
    # get the query string
    qs = parse_qs(env.get('QUERY_STRING', ''))
    # get name from the query string
    name=''
    if 'name' in qs:
        name = escape(qs['name'][0])
    # return the response
    resp = bytes(f'hello {name}', 'utf-8')
    start_response('200 OK', [('Content-Type','text/html')])
    return [resp]
If you create a uwsgi app via our dashboard and replace the included myapp/wsgi.py with the above example then you'll be able to test it and modify it from there.