12 lines
159 B
Python
12 lines
159 B
Python
"""
|
|
main entry point for the Craigslist scraper
|
|
starts webserver
|
|
"""
|
|
|
|
import web.app as app
|
|
|
|
|
|
if __name__ == "__main__":
|
|
# start web server
|
|
app.main()
|