-
Notifications
You must be signed in to change notification settings - Fork 0
/
tuto_api.py
38 lines (26 loc) · 1.3 KB
/
tuto_api.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import streamlit as st
st.image("https://ygdata.ch/portfolio-details-pages/media/JobJob.png", width=100)
st.title("JobJob !")
st.divider()
st.markdown("#### Elevate your job search experience with this interactive app !")
st.markdown(
"""An API key is like a password that lets your app access specific services.
On this app, it helps connect to job search tool. It's safe to use, there's nothing stored. **Everything stays private and secure**."""
)
st.divider()
st.markdown("### Get your API key 🔑 : [SerpApi.com](https://serpapi.com/)")
row1_left, row1_right = st.columns(2)
row2_left, row2_right = st.columns(2)
row3_left, row3_right = st.columns(2)
row4_left, row4_right = st.columns(2)
row1_left.container(height=200).markdown("1. Create an account")
row1_right.container(height=200).image("media/API_step_1.jpg")
row2_left.container(height=200).markdown("2. Select **Api Key** on left tab")
row2_right.container(height=200).image("media/API_step_2.jpg")
row3_left.container(height=200).markdown("3. Copy to clipboard")
row3_right.container(height=200).image("media/API_step_3.jpg")
row4_left.container(height=200).markdown(
"""4. Go to **Get your job 🚀** and paste your key !
**Enjoy 100 free requests !**"""
)
row4_right.container(height=200).image("media/API_step_4.jpg")