Skip to content

scrapy-plugins/scrapy-feedexporter-dropbox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

scrapy-dropbox

Dropbox feed exporter is a Scrapy Feed Exporter that allows you to export scrapy items to a dropbox folder.

Usage

Import the package and add to your Scrapy settings:

DROPBOX_API_TOKEN = "DROPBOX_APP_TOKEN"

FEED_STORAGES = {
    'dbox': 'scrapy_dropbox.DropboxFeedStorage'
}

FEEDS = {
    (
        "dbox://dropbox/folder/to/save/%(name)s_%(time)s.csv"
    ): {
        "format": "csv",
        "encoding": "utf8",
    }
}

See here how to generate a Dropbox access token.

About

Scrapy feed exporter for Dropbox

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages