You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We recommend using *Python 3* for all work you produce, but we're also happy if
18
+
you use *Go*, or *Javascript*
15
19
16
20
## Project
17
21
@@ -20,32 +24,77 @@ get familiar with documentation, please take your time. In the end, we don't
20
24
want you to feel rushed, but we also don't want you spending too much time on
21
25
this.
22
26
23
-
For this project, we want you to use the [Django REST Framework](http://www.django-rest-framework.org/) library to construct an API that displays a list of Trips.
27
+
For this project, you'll build a script which consumes data from a local API
28
+
(provided). Your script will transform this data in various ways (described
29
+
below), and be output as a CSV.
30
+
31
+
### Local API
32
+
33
+
Provided within this project is a local API, which uses [Django REST Framework](http://www.django-rest-framework.org/)
34
+
to provide a simple, standards-compliant API. Below, within the `Getting
35
+
Started` section, you'll find instructions on how to run the API server.
36
+
37
+
Once running, your only task for the server, is to load data into the API. We've provided a
38
+
`departures.json` file, which you should load into the server using [Django Data
Once you have constructed the API to display these trips, you'll create a page
36
-
that displays the list of Trips, as per the response of the API.
69
+
```
37
70
38
-
Stylistically, how you display these trips is up to you. Data-wise, as long as the data is coming from the API view you've built, we
39
-
are agnostic as to what technology you use to query that view. Generally, it'd be in Javascript using an _AJAX_ call, or you can do something else. Feel like displaying it on an Android application instead? That's fine, as long as you built the API for it :)
71
+
Once the script has collected all `departures`, from all pages, it will need to
72
+
filter down the data to only include the following:
73
+
74
+
1. Filter down so that your local data only contains `departures` with a `start_date` after `June 1st, 2018`
75
+
76
+
2. Additionally, filter down to only `departures` of `category = Adventurous`
77
+
78
+
At this point, your script should have a subset of the data fetched from the
79
+
API. You will now want to write this information into a CSV. For the output,
80
+
ensure the following:
81
+
82
+
83
+
1. Every attribute within `departures` is given its own column, and there's a
84
+
header within the CSV with the attribute names, title-case.
85
+
2. Every remaining `departures` instance is written to a row.
86
+
87
+
The CSV should be written to the root folder of your project, with whatever file
88
+
name you believe is relevant.
40
89
41
90
... And that's it! Feel free to try new technologies, as long you're within the
42
91
scope of the challenge requirements, we're happy.
43
92
44
93
## Goal
45
94
46
95
We'd like to get a sense of how you work, specifically within areas that are
47
-
unexplored territory, and if you are able to fulfill the requirements scoped
48
-
for a project.
96
+
unexplored territory, and if you are able to fulfill all the requirements scoped
97
+
for a task.
49
98
50
99
We're looking for code that is well structured, documented, and testable.
51
100
@@ -73,22 +122,17 @@ Once installed, you can run the Django project like so:
73
122
74
123
python manage.py runserver
75
124
76
-
You should now be able to visit your project at `http://127.0.0.1:8000/trips`
77
-
78
-
We've included a basic Django project and a `Trip` model with some fields.
79
-
You'll want to focus on understanding how to integrate Django REST Framework
80
-
into an existing Django project. Their documentation is great!
125
+
You should now be able to visit your project at `http://127.0.0.1:8000/departures`
81
126
82
-
We have also supplied a blank template, which lives in
83
-
`trips/templates/trips/index.html`. This is the template you see when you visit
84
-
`/trips` within your project.
127
+
We've included a basic Django project and a `Departure` model with some fields,
128
+
which you will consume.
85
129
86
130
Otherwise, the rest is up to you!
87
131
88
132
## Stuck?
89
133
90
134
If you get stuck -- Please don't hesitate to email
91
-
[bartekc@gadventures.com](mailto:bartekc@gadventures.com). We are looking for
135
+
[recruiting_tech@gadventures.com](mailto:recruiting_tech@gadventures.com). We are looking for
92
136
candidates who are not afraid to ask questions, and explore new ideas. Asking
0 commit comments