I have a settings.py file and pipelines.py file in my scrapy project. I would know how to write items that i have parsed to Oracle database.Any suggestions?
Asked
Active
Viewed 259 times
1 Answers
0
Scrapy does not offer built-in support to export to Oracle or any other SQL engine.
However, it does make it easy for you to write your own item pipeline to do so.
See also:

Gallaecio
- 3,620
- 2
- 25
- 64
-
I know, there are some libraries in python which help to us to connect directly to databases. And i did one for MySQL server. However it seems like not applicable to Oracle server – Adilzada Jan 12 '19 at 17:28
-
If you want to know how to connect to an Oracle database from Python, maybe you should remove Scrapy from the question. – Gallaecio Jan 14 '19 at 09:04