Skip to content

Commit 4d78682

Browse files
committed
Added amends to the README documentation, added an empty gitignore and added an MIT License.
1 parent 185cfaa commit 4d78682

3 files changed

Lines changed: 40 additions & 4 deletions

File tree

.gitignore

Whitespace-only changes.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Rob Waller
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Python Developer Assessment
22

3-
The aim of this Python assessment is to see how experienced a Python developer is. The test is not a binary pass / fail test. It assess where someone is on the Junior, Mid, Senior scale. It should be seen as a validation process and there are no right or wrong answers to solve the tasks defined.
3+
The aim of this Python assessment is to see how experienced a developer is, it is not a binary pass / fail test. It assess where a developer is on the Junior, Mid, Senior scale. It should be seen as a validation process and there are no right or wrong ways to solve the tasks defined.
44

5-
There are four tasks to complete based around a list of dictionaries which represent pseudo data for website URLs. Each task aims to test a developer's ability to manipulate and edit a list of data.
5+
There are four tasks to complete based around a list of dictionaries which represent pseudo-data for website URLs. Each task aims to test a developer's ability to manipulate and edit a list of data.
66

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

9-
The data structure is as follows:
9+
The data structure is as follows, with five keys for each item:
1010

1111
```python
1212
[
@@ -27,6 +27,16 @@ The data structure is as follows:
2727
]
2828
```
2929

30+
## Assessment Instructions
31+
32+
To complete the assessment please clone the repository.
33+
34+
```
35+
git@github.com:RobDWaller/python-assessment.git
36+
```
37+
38+
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.
39+
3040
## Tasks
3141

3242
### Task One: Find Data
@@ -63,7 +73,7 @@ Amend the list so each domain key value is prepended with the string `www.`
6373

6474
### Task Three: Cleanse Data
6575

66-
Some of the data is inaccurate, the secure key is set to False when the url key contains a url beginning with `http://`. The opposite is also true in some cases.
76+
Some of the data is inaccurate, the secure key is set to False when the url key contains a url beginning with `https://`. The opposite is also true in some cases.
6777

6878
The list should be cleansed and returned so the secure keys are accurate.
6979

@@ -103,3 +113,8 @@ Add up all the value keys in the list and return an integer.
103113
}
104114
]
105115
```
116+
117+
## Author
118+
119+
Rob Waller
120+
[RobDWaller](https://twitter.com/RobDWaller)

0 commit comments

Comments
 (0)