pycollabproject / realprice

Real estate price viewer
Apache License 2.0
10 stars 3 forks source link

To-do list #2

Closed jakeherold closed 8 years ago

jakeherold commented 8 years ago

Hello all! I'm super pumped to start! Can we get a to do list of things to get going on?

calveym commented 8 years ago

Haha great that you are keen to start! I think we should let the latest thread sit on the sub for a bit for everyone to get on board, and then we'll go for it! Check out the goals I have outlined so far, and see if there's anything you'd like to add.

sturdyplum commented 8 years ago

just a question but what crawler library are we going to be using? I want to learn it asap.

czotomo commented 8 years ago

We'll wrap APIs with 'Requests' and re-serialize returns with 'json' (zillow returns XML data, our backend wants it in json). I am not sure which XML module to use to parse XML yet. Of course we will use os, time and maybe few other standard lib modules too. For testing - unittest module.

sturdyplum commented 8 years ago

Ok so if the backend takes the data in json then processes the data to find the mean, medium, how would they give the processed data to the ui team?

On Sun, Jan 10, 2016 at 9:12 PM, forlumarz notifications@github.com wrote:

We'll wrap APIs with 'Requests' and re-serialize returns with 'json' (zillow returns XML data, our backend wants it in json). I am not sure which XML module to use to parse XML yet. Of course we will use os, time and maybe few other standard lib modules too. For testing - unittest module.

— Reply to this email directly or view it on GitHub https://github.com/pycollabproject/realprice/issues/2#issuecomment-170417222 .

czotomo commented 8 years ago

They'll issue it in POST request probably. I dont really know anything about Flask, and looks like our backend is going to use it.