Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.

Commit bd7ec48

Browse files
authored
Merge pull request #49 from microsoft/siyu/mlads
Add spring 2019 MLADS walk-through.
2 parents 7ae6887 + adb38ec commit bd7ec48

File tree

3 files changed

+485
-2
lines changed

3 files changed

+485
-2
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,4 +328,11 @@ ASALocalRun/
328328

329329
# MFractors (Xamarin productivity tool) working folder
330330
.mfractor/
331+
331332
Notebooks/.ipynb_checkpoints/template-demo-checkpoint.ipynb
333+
334+
# Mac file system
335+
.DS_Store
336+
337+
# Jupyter notebook
338+
.ipynb_checkpoints/

Examples/base-py/my_api/runserver.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from flask import Flask, request, abort
88
from ai4e_app_insights_wrapper import AI4EAppInsights
99
from ai4e_service import APIService
10-
from os import getenv
1110

1211
print('Creating Application')
1312

@@ -21,7 +20,7 @@
2120
with app.app_context():
2221
ai4e_service = APIService(app, log)
2322

24-
# Define a function for processing request data, if appliciable. This function loads data or files into
23+
# Define a function for processing request data, if applicable. This function loads data or files into
2524
# a dictionary for access in your API function. We pass this function as a parameter to your API setup.
2625
def process_request_data(request):
2726
return_values = {'data': None}

0 commit comments

Comments
 (0)