コード例 #1
0
ファイル: app.py プロジェクト: taoufik07/nejma-chat
 async def get(self, request):
     return HTMLResponse(html)
コード例 #2
0
async def get(computer: str):
    return HTMLResponse(html % computer)
コード例 #3
0
def index(request):
    html = path / 'view' / 'index.html'
    return HTMLResponse(html.open().read())
コード例 #4
0
async def get_message(request):
    return HTMLResponse(json.dumps({"msg": "Hello World"}))
コード例 #5
0
async def homepage(request):
    html_file = path / "view" / "index.html"
    return HTMLResponse(html_file.open().read())
コード例 #6
0
def api_info():
    with open("./static/api_info.html", "r") as page_file:
        html_content = page_file.read()
    return HTMLResponse(content=html_content)
コード例 #7
0
 async def swagger_doc_handler(request):
     return HTMLResponse(content=doc.doc_html, media_type='text/html')
コード例 #8
0
ファイル: empty_handler.py プロジェクト: osukurikku/kuriso
async def _(_):
    return HTMLResponse("<pre>not found</pre>", status_code=404)
コード例 #9
0
ファイル: server.py プロジェクト: Herogh0st/Dog-Classifyer
def form(request):
    return HTMLResponse(
        """
        <!DOCTYPE html>
        <html lang="en">
        <head>
            <meta charset="utf-8">
            <meta name="viewport" content="width=device-width, initial-scale=1">
            <!-- Latest compiled and minified CSS -->
            <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
            <!-- jQuery library -->
            <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>

            <!-- Popper JS -->
            <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>

            <!-- Latest compiled JavaScript -->
            <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
            <title>Detect Eye Diseases</title>
        </head>
        <body>
            <div class="container-fluid">
                <div class="row">
                    <div class="col-md-2">
                    </div>
                    <div class="col-md-8">
                        <h1>Detect Eye Diseases with Deep Learning Technology</h1>
                        <h2>This example is based on the fast.ai deep learning framework: <a href="https://www.fast.ai/">https://www.fast.ai/</a></h2>
                        <p><strong>Image classifier that detects different categories of eye diseases:<strong>
                            <ul class="list-group">
                                <li class="list-group-item">Normal Eye</li>
                                <li class="list-group-item">Glaucoma</li>
                                <li class="list-group-item">Retina Disease</li>
                                <li class="list-group-item">Cataract</li>
                            </ul>
                        </p>
                        <form action="/upload" method="post" enctype="multipart/form-data">
                            <div class="form-group">
                                Select image to upload:
                                <input type="file" name="file" class="input-sm">
                                <input type="submit" value="Upload and Analyze Image" class="btn btn-primary">
                            </div>
                        </form>
                    </div>
                    <div class="col-md-2">
                    </div>
                </div>
                <div class="row">
                    <div class="col-md-2">
                    </div>
                    <div class="col-md-8">                        
                        Or submit a URL:                        
                        <form action="/classify-url" method="get">
                            <div class="form-group">
                                <input type="url" name="url" class="input-sm">
                                <input type="submit" value="Fetch and Analyze image" class="btn btn-primary">
                            </div>
                        </form>                        
                    </div>
                    <div class="col-md-2">
                    </div>
                </div>
            </div>
        </body>
        </html>
    """)
コード例 #10
0
def index(request):
    html = path / 'view/index.html'
    return HTMLResponse(open(html).read())
コード例 #11
0
def root():
    return HTMLResponse(
        pkg_resources.resource_string(__name__, "static/index.html"))
コード例 #12
0
ファイル: server.py プロジェクト: mani2106/pokemon-classifier
def home(request):
    # return render_template("index.html")
    html_file = path / 'templates' / 'index.html'
    return HTMLResponse(html_file.open().read())
コード例 #13
0
async def progress(request):
    template = app.get_template('index.html')
    content = template.render(request=request)

    return HTMLResponse(content)
コード例 #14
0
async def get():
    return HTMLResponse(html)
コード例 #15
0
def root():
    with open("./static/index_2.html", "r") as page_file:
        html_content = page_file.read()
    return HTMLResponse(content=html_content)
コード例 #16
0
def root():
    with open('/app/app/static/index.html') as f:
        return HTMLResponse(content=f.read(), status_code=200)
コード例 #17
0
def show_tutorial():
    with open("./static/tutorial.html", "r") as page_file:
        html_content = page_file.read()
    return HTMLResponse(content=html_content)
コード例 #18
0
ファイル: graphql.py プロジェクト: wimglenn/starlette
 async def handle_graphiql(self, request: Request) -> Response:
     text = GRAPHIQL.replace("{{REQUEST_PATH}}",
                             json.dumps(request.url.path))
     return HTMLResponse(text)
コード例 #19
0
 def get_graphiql_response(self) -> HTMLResponse:
     html = get_graphiql_html()
     return HTMLResponse(html)
コード例 #20
0
def index(request):
    html = path / "view" / "index.html"
    return HTMLResponse(html.open().read())
コード例 #21
0
ファイル: web.py プロジェクト: therumbler/picadillo
 async def index():
     return HTMLResponse(index_html)
コード例 #22
0
ファイル: main.py プロジェクト: mkinney/ticker2
async def index(request):
    data = await get_data()
    if not data:
        return HTMLResponse(content="<body></body", status_code=424)
    return templates.TemplateResponse("index.html", {"request": request, "data": data})
コード例 #23
0
async def get():
    #return HTMLResponse(html)
    return HTMLResponse(html_ps)
コード例 #24
0
 async def render_playground(  # pylint: disable=unused-argument
         self, request: Request) -> Response:
     return HTMLResponse(PLAYGROUND_HTML)
コード例 #25
0
ファイル: server.py プロジェクト: chanjjessica/fastai-v3
async def breeds(request):
    html_file = path / 'view' / 'breeds.html'
    return HTMLResponse(html_file.open().read())
コード例 #26
0
def form(request):
    index_html = path / 'static' / 'index.html'
    return HTMLResponse(index_html.open().read())
コード例 #27
0
ファイル: docs.py プロジェクト: AbdullahWahid2160/BackendApp
def get_swagger_ui_oauth2_redirect_html() -> HTMLResponse:
    html = """
    <!DOCTYPE html>
    <html lang="en-US">
    <body onload="run()">
    </body>
    </html>
    <script>
        'use strict';
        function run () {
            var oauth2 = window.opener.swaggerUIRedirectOauth2;
            var sentState = oauth2.state;
            var redirectUrl = oauth2.redirectUrl;
            var isValid, qp, arr;

            if (/code|token|error/.test(window.location.hash)) {
                qp = window.location.hash.substring(1);
            } else {
                qp = location.search.substring(1);
            }

            arr = qp.split("&")
            arr.forEach(function (v,i,_arr) { _arr[i] = '"' + v.replace('=', '":"') + '"';})
            qp = qp ? JSON.parse('{' + arr.join() + '}',
                    function (key, value) {
                        return key === "" ? value : decodeURIComponent(value)
                    }
            ) : {}

            isValid = qp.state === sentState

            if ((
            oauth2.auth.schema.get("flow") === "accessCode"||
            oauth2.auth.schema.get("flow") === "authorizationCode"
            ) && !oauth2.auth.code) {
                if (!isValid) {
                    oauth2.errCb({
                        authId: oauth2.auth.name,
                        source: "auth",
                        level: "warning",
                        message: "Authorization may be unsafe, passed state was changed in server Passed state wasn't returned from auth server"
                    });
                }

                if (qp.code) {
                    delete oauth2.state;
                    oauth2.auth.code = qp.code;
                    oauth2.callback({auth: oauth2.auth, redirectUrl: redirectUrl});
                } else {
                    let oauthErrorMsg
                    if (qp.error) {
                        oauthErrorMsg = "["+qp.error+"]: " +
                            (qp.error_description ? qp.error_description+ ". " : "no accessCode received from the server. ") +
                            (qp.error_uri ? "More info: "+qp.error_uri : "");
                    }

                    oauth2.errCb({
                        authId: oauth2.auth.name,
                        source: "auth",
                        level: "error",
                        message: oauthErrorMsg || "[Authorization failed]: no accessCode received from the server"
                    });
                }
            } else {
                oauth2.callback({auth: oauth2.auth, token: qp, isValid: isValid, redirectUrl: redirectUrl});
            }
            window.close();
        }
    </script>
        """
    return HTMLResponse(content=html)
コード例 #28
0
 def wrapped(request: Request, *args, **kwargs):
     data = fn(request, *args, **kwargs)
     if "ui" in request.query_params:
         return HTMLResponse(template(data))
     return data
コード例 #29
0
async def homepage(request):
    html_file = path / 'view' / 'index.html'
    return HTMLResponse(html_file.open().read())
コード例 #30
0
ファイル: app.py プロジェクト: jelitox/apitest
async def html(request):
    """Return HTML content and a custom header."""
    content = "<b>HTML OK</b>"
    headers = {'x-time': f"{time.time()}"}
    return HTMLResponse(content, headers=headers)