[Scrapyチュートリアル]2プロジェクトの作成


プロジェクトの作成


合計正式な書類を参照してください.
  • 2tutorialという名前のプロジェクトを作成します.(希望する名前を使用してください.)
  • scrapy startproject tutorial
    ディレクトリのステータス:

    ターミナルウィンドウ:

    実行が完了すると、次の結果が得られます.

    上記の
  • のコードを実行することで、次のディレクトリ構造を作成できます.
  • tutorial/
        scrapy.cfg            # deploy configuration file
    
        tutorial/             # project's Python module, you'll import your code from here
            __init__.py
    
            items.py          # project items definition file
    
            middlewares.py    # project middlewares file
    
            pipelines.py      # project pipelines file
    
            settings.py       # project settings file
    
            spiders/          # a directory where you'll later put your spiders
                __init__.py