Skip to content

Commit db4d241

Browse files
committed
Added further documentation to the README, made minor amend to the gitignore so __pycache__ directories are ignored
1 parent 4d78682 commit db4d241

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__pycache__

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ There are four tasks to complete based around a list of dictionaries which repre
66

77
The data can be found in the `/websites/resouces/data.py` file.
88

9+
The data can be viewed by running the following commands on the command line in Python's interactive mode:
10+
11+
```bash
12+
from websites.resources.data import WEBSITES
13+
14+
print(WEBSITES)
15+
```
16+
917
The data structure is as follows, with five keys for each item:
1018

1119
```python
@@ -37,6 +45,8 @@ git@github.com:RobDWaller/python-assessment.git
3745

3846
Write your code to complete the tasks and then store your code in a public git repository on GitHub or equivalent service. Alternatively zip the code up and submit via email.
3947

48+
You should not spend more than one hour completing this assessment. You will not be judged based on how many questions you answer but how well you answer each question.
49+
4050
## Tasks
4151

4252
### Task One: Find Data
@@ -116,5 +126,4 @@ Add up all the value keys in the list and return an integer.
116126

117127
## Author
118128

119-
Rob Waller
120129
[RobDWaller](https://twitter.com/RobDWaller)

0 commit comments

Comments
 (0)