Skip to content

lesevereijns/index-webapp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

page_type languages name products description urlFragment
sample
python
Add search to a Python app
azure
azure-cognitive-search
azure-static-web-app
Add document search to a web app. This Python sample uses the Azure.Search.Documents library to create, load, and query the index.
python-sample-search-web-app

Add search to a web app in Python

Flask sample MIT license badge

This Python sample shows you how to add document search to a web app using Azure Cognitive Search.

For this sample, you will use the azure-search-documents library in the Azure SDK for Python to create, load, and query a search index containing the goodbooks-10k dataset, publicly available at https://github.com/zygmuntz/goodbooks-10k. The search index runs on an Azure Cognitive Search service that you create. You can use the free tier for this sample.

Optionally, this sample includes a devcontainer.json file so that you can run the code locally, as a developer, with the assurance that the environment is correctly configured and your local system doesn't need anything beyond docker. You'll need the Docker extension to do this. If you don't want to us Docker, you can run your code in a virtual environment instead.

The application itself is deployed as an Azure Static web app (which you can run locally), using the JavaScript React library to build the user interface and Azure Functions to handle the query requests against the search index.

This README is an shortened version of the full Python tutorial.

Related resources:

Below is a screenshot of the app created through this sample code.

Screenshot of sample web app

You can deploy the sample onto Azure or run it locally by following the steps below.

Prerequisites

Visual Studio Code extension: Docker is optional, but necessary if you want to run the Python code in a container.

Azure Static Web Apps is also required but you do not need to have this resource in advance. These instructions include inline steps for creating and configuring a static web app in a later section.

Setup

  1. Clone (or Fork and Clone) this repository.

  2. Open ./search-website-functions-v4 in Visual Studio Code.

This sample code runs the Azure Function API remotely on your cloned repository. If you intend to run it locally, you need to install azure-functions-core-tools globally with the following bash command: npm install -g azure-functions-core-tools@3 --unsafe-perm true

Create and load the index

  1. In Visual Studio Code, create a virtual environment.

    • Ctrl+Shift+P > Terminal: Create New Integrated Terminal

    • At the PS terminal command line, run these commands:

      • py -3 -m venv .venv
      • .venv\scripts\activate

    You should see (.venv) in the PS command prompt. For example, (.venv) PS C:\Users\user-name\azure-search-python-samples\search-website>

  2. Run bulk-upload.py to load data.

    • Change the following values in the bulk_upload.py file:

    • Install Python libraries and load the data. At the PS command line:

      • cd \bulk-upload
      • py -m pip install -r requirements.txt
      • py bulk-upload.py

    You should see status messages when the script runs, and you should have a good-books index created on your search service.

Deploy the web app

Deploy the search-enabled website as an Azure Static web app. This deployment includes both the React app and the Function app for the user interface and business layer, respectively.

The following instructions create and configure the Azure Static Web App resource.

  1. Select Azure from the Activity Bar, then select Static Web Apps from the Side bar.

  2. Right-click on the subscription name then select Create Static Web App (Advanced).

  3. Follow the prompts to provide the following information:

    Prompt Enter
    How do you want to create a Static Web App? Use existing GitHub repository
    Choose organization Select your own GitHub alias as the organization.
    Choose repository Select azure-search-python-samples from the list.
    Choose branch of repository Select main from the list.
    Enter the name for the new Static Web App. Create a unique name for your resource. For example, you can prepend your name to the repository name such as, joansmith-azure-search-python-samples.
    Select a resource group for new resources. Use the resource group you created for this tutorial.
    Choose build preset to configure default project structure. Select Custom
    Select the location of your application code search-website/client
    Enter the path of your build output... build
    Select a location for new resources. Select a region close to you.
  4. The resource is created, select Open Actions in GitHub from the Notifications. This opens a browser window pointed to your forked repo.

    The list of actions indicates your web app, both client and functions, were successfully pushed to your Azure Static Web App.

    Wait until the build and deployment complete before continuing. This may take a minute or two to finish.

  5. Select Azure from the Activity Bar.

  6. Right-click on your Static web app resource then select Open in Portal.

  7. Select Configuration then select + Add.

  8. Add each of the following settings:

    Setting Your Search resource value
    SearchApiKey Your Search query key. You can find query keys in the Azure portal
    SearchServiceName Your Search resource name
    SearchIndexName good-books
    SearchFacets authors*,language_code

    For the authors* facet, adding a * after a field name denotes that the field is of type Collection(Edm.String). This allows the Azure Function to add filters correctly to queries.

  9. Select Save to save the settings.

  10. Return to Visual Studio Code.

  11. Refresh your Static web app to see the Static web app's application settings.

Run queries in your app

  1. In Visual Studio Code, select Azure from the Activity Bar.

  2. In the Side bar, right-click on your Azure subscription under the Static web apps area and find the Static web app you created.

  3. Right-click the Static Web App name and select Browse site.

  4. Select Open in the pop-up dialog.

  5. In the website search bar, enter a search query such as code, slowly so the suggest feature suggests book titles. Select a suggestion or continue entering your own query. Press enter when you've completed your search query.

  6. Review the results then select one of the books to see more details.

Clean up

If you no longer need Azure Cognitive Search or Azure Static Web Apps, remember to delete both resources in your subscription.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published