Skip to content

Commit f857397

Browse files
committed
initial commit, more to come
1 parent 66ffc20 commit f857397

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def my_second_route(name):
3030
return name
3131
```
3232

33-
*Problem 1: Write a route that takes a first name, last name, and graduating year in the route*
33+
**Problem 1: Write a route that takes a first name, last name, and graduating year in the route**
3434

3535

3636
So, what are we using Flask for and why are routes useful.
@@ -75,9 +75,9 @@ def getallyears():
7575

7676
Everything that I described above is what you're going to be working on in the Flask backend. This means figuring out how to design your database, and then define the API to make changes in your database.
7777

78-
*Problem 2: Download Postman, go to the url for get_all_users, and set a GET request. If you make the wrong type of request, you will get an error message*
78+
**Problem 2: Download Postman, go to the url for get_all_users, and set a GET request. If you make the wrong type of request, you will get an error message**
7979

8080
Setting up the database and defining it is alot of work, so we'll leave that for your tech leads to teach you :P
8181
For now, we're going to try actually using a public API to get more familair with it.
8282

83-
*Problem 3: Write an endpoint that will take an input, search for that term on wikipeida using the API, and then return back a list of titles of the top matches*
83+
**Problem 3: Write an endpoint that will take an input, search for that term on wikipeida using the API, and then return back a list of titles of the top matches**

0 commit comments

Comments
 (0)