We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thanks g0vhk-io! This scraper is very nice!
I'm using Windows, maybe not much ppl using for development. Here is some steps for me to get this scraper running on Windows.
Open a command line (On Desktop, press Win key + r , type cmd and enter)
cmd
> pip install virtualenv > virtualenv env > env\Scripts\activate
Then, you should see (env) at the beginning of next prompt
(env)
(env) > env\Scripts\pip.exe install -r requirements.txt
Scrapy may need win32api module in Windows
(env) > env\Scripts\pip.exe install pypiwin32
(env) > cd private_building (env) > scrapy crawl building_search -t json -o output.json
Gotcha!
Deactivate virtual environment
(env) > deactivate >
(Ref https://pypi.python.org/pypi/virtualenv/1.8.2)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thanks g0vhk-io! This scraper is very nice!
I'm using Windows, maybe not much ppl using for development. Here is some steps for me to get this scraper running on Windows.
Open a command line (On Desktop, press Win key + r , type
cmd
and enter)Then, you should see
(env)
at the beginning of next promptScrapy may need win32api module in Windows
Gotcha!
Deactivate virtual environment
(Ref https://pypi.python.org/pypi/virtualenv/1.8.2)
The text was updated successfully, but these errors were encountered: