Skip to content

meta-coders/data-scraping

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

data-scraping

Установить scrapy:

pip install Scrapy

Запустить скрипт:

scrapy crawl dishes

Результат(CSV-файл) сохраняется в дирректорию data под названием restaurants.csv

PostgreSQL integration

Установить psycopg2:

pip install psycopg2

Создать базу данных dishes в PostgreSQL:

postgres#: CREATE DATABASE dishes;

Запустить скрипт:

python3 dishes/data/load-to-pgsql.py
Note:

Конфигурация PostgreSQL:

  • host - localhost
  • user - postgres
  • password - postgres

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages