Skip to content

3 First run using the python wrapper

vFeed, Inc edited this page Aug 27, 2021 · 1 revision

As a pre-requisite, you need to first complete the 3 steps described in Getting started chapter.

Here is a config.py sample:

database = {"file": 'vfeed.db',
            "path": '/Users/dev/Documents/test/pro/db/',
           }

export =  {"path": '/Users/dev/Documents/test/pro/export/'}

subscription = {"access_key": 'HIDDEN',
                "secret_key": 'HIDDEN',
                "plan": 'vfeed-demo'}

Initiate the download process

You will need to use the update command to first deploy the database.

./pyvfeed.py --update
[+] Deploying new database ...
  [-] Downloading vfeed.db.tgz
  [-] Unpacking /Users/dev/Documents/test/pro/db/vfeed.db.tgz
[+] Cleaning tmp downloads ...

If no error is throwed, it means everything went well. You can then find the vfeed.db extracted into the appropriate repository /Users/dev/Documents/test/pro/db/ as instructed in the configuration file config.py