An open API service indexing awesome lists of open source software.

https://github.com/jesieldotdev/kivy-json

Trabalhando com Json no framework Kivy
https://github.com/jesieldotdev/kivy-json

Last synced: 2 months ago
JSON representation

Trabalhando com Json no framework Kivy

Awesome Lists containing this project

README

        

## Declarando arquivo json

` store = JsonStore('hello.json') `

## PUT, GET, POST E DELETE

### PUT

` store.put('Ziel', name='Jesiel', age=21) `

### GET

` print('tito tem ', store.get('tito')['age']) `

### READ

```
res = store.find()
for item in res:
print('Nome: ', str(item[1]['name']))
print("Idade: ", str(item[1]['age']))
```

### DELETE

` store.delete('tito') `