Skip to content

DistrictDataLabs/baleen

Repository files navigation

Baleen

An automated ingestion service for blogs to construct a corpus for NLP research.

PyPI version Build Status Coverage Status Code Health Documentation Status Stories in Ready

Space Whale

Quick Start

This quick start is intended to get you setup with Baleen in development mode (since the project is still under development). If you'd like to run Baleen in production, please see the documentation.

  1. Clone the repository
$ git clone git@github.com:bbengfort/baleen.git
$ cd baleen
  1. Create a virtualenv and install the dependencies
$ virtualenv venv
$ source venv/bin/activate
$ pip install -r requirements.txt
  1. Add the baleen module to your $PYTHONPATH via the virtualenv.
$ echo $(pwd) > venv/lib/python2.7/site-packages/baleen.pth
  1. Create your local configuration file. Edit it with the connection details to your local MongoDB server. This is also a good time to check and make sure that you can create a database called Baleen on Mongo.
$ cp conf/baleen-example.yaml conf/baleen.yaml
debug: true
testing: false
database:
    host: localhost
    port: 27017
    name: baleen
server:
    host: 127.0.0.1
    port: 5000
  1. Run the tests to make sure everything is ok.
$ make test
  1. Make sure that the command line utility is ready to go:
$ bin/baleen --help
  1. Import the feeds from the feedly.opml file in the fixtures.
$ bin/baleen load tests/fixtures/feedly.opml
Ingested 36 feeds from 1 OPML files
  1. Perform an ingestion of the feeds that were imported from the feedly.opml file.
$ bin/baleen ingest

Your Mongo database collections should be created as you add new documents to them, and at this point you're ready to develop!

Docker Setup

Included in this repository are files related to setting up the development environment using docker if you wish.

  1. Install Docker Machine and Docker Compose e.g. with Docker Toolbox.

  2. Clone the repository

$ git clone git@github.com:bbengfort/baleen.git
$ cd baleen
  1. Create your local configuration file. Edit it with your configuration details; your MongoDB server will be at host mongo.
$ cp conf/baleen-example.yaml conf/baleen.yaml
debug: true
testing: false
database:
    host: mongo
    port: 27017
    name: baleen
server:
    host: 127.0.0.1
    port: 5000
  1. Exec interactively into the app container to interact with baleen as described in the above setup directions 5-8.
    docker exec -it baleen_app_1 /bin/bash

Web Admin

There is a simple Flask application that ships with Baleen that provides information about the current status of the Baleen ingestion. This app can be run locally in development with the following command:

$ bin/baleen serve

You can then reach the website at http://127.0.0.1:5000/. Note that the host and port can be configured in the YAML configuration file or as command line arguments to the serve command.

Deployment

The web application is deployed in production as an Nginx + uWSGI + Flask application that is managed by upstart.

About

Baleen is a tool for ingesting formal natural language data from the discourse of professional and amateur writers: e.g. bloggers and news outlets. Rather than performing web scraping, Baleen focuses on data ingestion through the use of RSS feeds. It performs as much raw data collection as it can, saving data into a Mongo document store.

Throughput

Throughput Graph

Attribution

The image used in this README, "Space Whale" by hbitik is licensed under CC BY-NC-ND 3.0

About

An automated ingestion service for blogs to construct a corpus for NLP research.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages