11

我在使用shub-image运行/部署自定义脚本时遇到问题。

安装程序.py

from setuptools import setup, find_packages

setup(
    name = 'EU-Crawler',
    version = '1.0',
    packages = find_packages(),
    scripts = [
        'bin/launcher.py',
        'bin/DE_WEB_launcher.py',
        'bin/ES_WEB_launcher.py',
        'bin/FR_WEB_launcher.py',
        'bin/IT_WEB_launcher.py',
        'bin/NL_WEB_launcher.py',
        'bin/DE_MOBILE_launcher.py',
        'bin/FR_MOBILE_launcher.py'
    ],
    package_data = {
        'Crawling': ['*.ini'],
    },
    entry_points = {'scrapy': ['settings = Crawling.settings']},
    install_requires=[
        'scrapy-crawlera>=1.2.2',
        'configobj',
        'scrapy-fake-useragent',
        'xmltodict',
        'selenium==2.53.2',
        'python-dateutil',
        'pyvirtualdisplay',
        'beautifulsoup4',
        'incapsula-cracker-py3'
    ], 
    extras_require={'ScrapyElasticSearch': 'ScrapyElasticSearch[extras]'},
    zip_safe = False,
    include_package_data=True
)

在这个文件中我有

scripts = [
       'bin/launcher.py',
       'bin/DE_WEB_launcher.py',
       'bin/ES_WEB_launcher.py',
       'bin/FR_WEB_launcher.py',
       'bin/IT_WEB_launcher.py',
       'bin/NL_WEB_launcher.py',
       'bin/DE_MOBILE_launcher.py',
       'bin/FR_MOBILE_launcher.py'
   ],

谁是我想要发送的不同文件

我用这个命令部署

sudo shub image upload --username [USERNAME] --password [PASSWORD]

在我使用shub-image版本 0.2.5 和 shub 版本 2.5.1 之前,它运行良好。

但是现在我使用的是shub 2.7.0版(shub 映像现在是 shub 2.70+的一部分)并且我无法部署我的脚本。

没有错误,我很好地转移了我的蜘蛛,但没有转移bin 文件夹中的文件。

任何意见和建议将不胜感激

4

1 回答 1

3

我回答我自己的问题。

为了解决问题,我切换到下面的版本,现在我使用2.6.1版本,我没有问题。

我仍然有 2.7 版的问题,但我认为这个答案会对某人有所帮助。

于 2018-01-16T18:24:21.087 回答