-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
36 lines (31 loc) · 1.07 KB
/
app.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
import json
from flask import Flask, jsonify, request
app = Flask(__name__)
desenvolvedores = [
{'nome':'Rafael',
'habilidades':['Python','Flask']
},
{'nome':'Galleani',
'habilidades':['.NET','Django']}
]
@app.route('/dev/<int:id>/', methods=['GET', 'PUT', 'DELETE'])
def desenvolvedor(id):
if request.method == 'GET':
try:
response = desenvolvedores[id]
except IndexError:
mensagem = 'Desenvolvedor de ID {} não existe'.format(id)
response = {'status':'erro', 'mensagem':mensagem}
except Exception:
mensagem = 'Erro desconhecido, procure desenvolvedor da API'
response = {'status': 'erro', 'mensagem': mensagem}
return jsonify(response)
elif request.method == 'PUT':
dados = json.loads(request.data)
desenvolvedores[id] = dados
return jsonify(dados)
elif request.method == 'DELETE':
desenvolvedores.pop(id)
return jsonify({'status':'sucesso', 'mensagem':'registro excluído'})
if __name__ == '__main__':
app.run(debug=True)