0

还是个新手,所以我有一堆看起来很傻的问题。但是,我来了:

作为一个学习 python 的项目,我决定从简单的东西开始。我的想法是去 craigslist 查找摩托车的价格,浏览每个城市的前 10 页,然后给出平均值、中位数和价格趋势。这项工作的结果可以在这里找到(http://craigslistcompanion.co.nf/)以及代码。

现在为了让事情变得更好,我决定让用户输入他们想要的东西(摩托车/汽车/自行车)以及从哪里输入(sfbay/austin 等)并获得与该页面所示相同的结果。当我开始研究它时,我被告知学习 django 将是一个很好的起点,过去几天我一直在尝试这样做。然而,到目前为止我所学到的主要是建立数据库并处理它们。

我想知道某处是否有教程可以告诉我如何从用户那里获取输入然后对其进行操作。我想完全使用 python/django 来做到这一点。

例如,假设我希望用户输入他们的名字和姓氏,然后尝试使用该字符串并输出一些东西。我该怎么做呢?

谢谢

4

1 回答 1

1

First some clarification. Do you want to develop a web interface for your users? If so, then Django is a great start. The Django Book is a very good introduction to Django and teaches you with examples. The task of getting user information, validating it, manipulating it and saving it in a database is the most basic of task and it is explained well in the book.

The next thing is web scraping craigslist. From how you structured your question, it seams that you have solved that part of the problem. right?

于 2013-04-06T03:23:24.310 回答