Browse Source

docs(read_file): fixing the readme

pull/1782/head
miguel 1 year ago committed by MSilva95
parent
commit
1dbc49abbb
  1. 11
      subjects/devops/read_file/README.md

11
subjects/devops/read_file/README.md

@ -2,9 +2,9 @@
### Instructions ### Instructions
Create a file `read_file.py` which will have a function `get_recipes(file_name)` that takes a file as an argument. Create a file `read_file.py` which will have a function `get_recipes(file_name)` that takes a `file` as an argument.
Create another file `recipes_data.json` and copy/paste on it the following content: Create another file `recipes_data.json` and paste the following content on it:
```json ```json
[ [
@ -65,7 +65,7 @@ Create another file `recipes_data.json` and copy/paste on it the following conte
] ]
``` ```
You have to read the file `recipes_data.json` and load its content into a list of dictionaries. Your function has to read the file `recipes_data.json` and load its content into a list of dictionaries.
Expected output format: Expected output format:
@ -78,10 +78,9 @@ Expected output format:
Here is a possible `test.py` to test your functions: Here is a possible `test.py` to test your functions:
```python ```python
import read_recipes import read_file
if __name__ == '__main__': print(read_file.get_recipes('recipes_data.json'))
print(read_recipes.get_recipes('recipes_data.json'))
``` ```
```bash ```bash

Loading…
Cancel
Save