Skip to content

Latest commit

 

History

History
94 lines (62 loc) · 2.99 KB

index.rst

File metadata and controls

94 lines (62 loc) · 2.99 KB

django-book-manager

Current version is |release|.

Github Repository: https://github.com/caltechads/django-book-manager

This reusable Django application provides models suitable for managing a list of books with ratings, somewhat like a private Goodreads.

Its real purpose is to provide sample models, with sample data, for use in testing other Django libraries. Often, when authoring new Django libraries, we need a simple example application to use so that we can test out our code.

Getting it

You can get django-book-manager by using pip:

pip install django-book-manager

If you want to install it from source, grab the git repository from GitHub and run setup.py:

git clone git://github.com/caltechads/django-book-manager.git
cd django-book-manager
python setup.py install

Installing It

To enable django-book-manager in your project you need to add it to :std:setting:`INSTALLED_APPS` in your project's settings.py file:

INSTALLED_APPS = (
   ...
   'book_manager',
   ...
)

Then, apply the migrations to add the schema to your database:

./manage.py migrate

Using It

.. module:: book_manager.models
   :noindex:

Models

django-book-manager provides these models:

Management commands

django-book-manager also supplies a command that can be used to load a Goodreads user library export into Django, splitting it into all the above models as appropriate.

To generate an export from Goodreads, go to your Goodreads account and:

  • Click "My Books"
  • At the bottom of that page, click "Import and Export"
  • At the top of that page, click "Export Library"

To load the CSV thus generated into Django, first create a user for yourself in Django, then:

./manage.py import_csv <csvfile> <username>

A sample Goodreads export is available in this repository as sandbox/data/books.csv.

Features:

...

.. toctree::
   :maxdepth: 2

   commands
   api