Lev

Results 7 comments of Lev

@ricardoaugusto just added gitbook functionality #87

Looks like the problem is related to this [issue](https://github.com/pallets/flask/issues/900) > If an URL path element contains %2F (an escaped "/") Flask.route considers it as an unescaped slash Any click results...

Ok, finally managed to solve it. The setup for `uwsgi.ini` should be as follows ``` [uwsgi] http = :7000 master = true processes = 2 threads = 2 buffer-size=65535 limit-post...

Try [this](https://stackoverflow.com/a/51979783/2248627). Should work. $ export GIT_SSH_COMMAND="ssh -i ~/.ssh/private_key_name" $ pip install -r requirements.txt

Added `#egg=package-name` at the end and it worked git+https://github.com/path/to/[email protected]#egg=package-name

Probably you forgot to update the docs. Also tried ``` DOWNLOAD_HANDLERS = { "http": "scrapy_headless.HeadlessDownloadHandler", "https": "scrapy_headless.HeadlessDownloadHandler", } ``` It still fails ``` Traceback (most recent call last): File "venv/scrapex/src/scrapy-selenium/scrapy_headless/downloader.py",...