Metadata-Version: 2.1
Name: sfpl
Version: 1.1.10
Summary: Unofficial Python API for SFPL
Home-page: https://github.com/kajchang/sfpl-scraper
Author: Kai Chang
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: bs4

# SFPL Scraper
![travis](https://travis-ci.org/kajchang/sfpl-scraper.svg?branch=master)
![pypi](https://badge.fury.io/py/sfpl.svg)

Python Package for accessing account, book, and author data from the SFPL Website.

# Usage

Install the package:

```$ pip install sfpl```

Clone / download this repository and ```$ python setup.py install``` or ```$ pip install .```.

The package has 5 classes: SFPL, Search, Book, List, and User.

# Table of Contents

[SFPL Class](https://github.com/kajchang/SFPL#sfpl-class)

[Search Class](https://github.com/kajchang/SFPL#search-class)

[Book Class](https://github.com/kajchang/SFPL#book-class)

[List Class](https://github.com/kajchang/SFPL#list-class)

[User Class](https://github.com/kajchang/SFPL#user-class)


# SFPL Class

The SFPL class is allows you to access SFPL accounts and all their holds, checkouts, and shelves.

## Methods

### Read Methods

```SFPL.getHolds()``` - Returns a list containing Book objects for each book in your holds.

```SFPL.getCheckouts()``` - Returns a list containing Book objects for each book you've checked out.

```SFPL.getForLater()```, ```SFPL.getInProgress()``` and ```SFPL.getCompleted()``` - Return a list containing Book objects for each book in the respective shelves.

### Write Methods

```SFPL.hold(book)``` - Takes a Book object as a parameter and holds the book.

TODO:
Holding errors

## Example

```python
>>> from sfpl import SFPL
>>> sfpl = SFPL('barcode', 'pin')
>>> [book.title for book in sfpl.getCheckouts()]
['On Intelligence', 'Money', 'Deep Learning', 'Make your Own Neural Network']
```

# Book Class

Returned by other classes, or can be created independently.

## Attributes

```title``` - Title of the book.

```author``` - The name of the book's author.

```subtitle``` - The book's subtitle.

```ID``` - The SFPL's id for the book. (used for holding / looking up details)

```status``` - Status of the book, if applicable. (duedate, hold position, etc.)

## Methods

```Book.getDescription()``` - Returns the SFPL's description of the book.

```Book.getDetails()``` - Returns details on the book. (ISBN, Call Number, etc.)

```Book.getKeywords()``` - Returns a list of terms from the book.

## Example

```python
>>> from sfpl import SFPL
>>> sfpl = SFPL('barcode', 'pin')
>>> checkedOutBooks = sfpl.getCheckouts()  # Get all checked out books
>>> book = checkedOutBooks[0]  # Get the first book in the list
>>> book.title
'Basics of Web Design'
>>> book.subtitle
'HTML5 & CSS3'
>>> book.status
'Due Jun 28, 2018'
>>> book.author
'Felke-Morris, Terry'
```

# Search Class

Searches for books or for user-created lists.

## Attributes

```term``` - Name of the author.
```_type``` - Type of search (author, keyword, tag, list). Defaults to keyword.

## Methods

```Search.getResults(pages)``` - Get specified number of pages of books (5 / page) by the author. Defaults to 1 page.

## Examples

Searches for books by a specific author:

```python
>>> from sfpl import Search
>>> author = Search('J.K. Rowling', _type='author')
>>> books = author.getResults()  # Get first page of books written by J.K. Rowling
>>> book = books[0]  # Get the first book in the list
>>> book.title
"Harry Potter and the Sorcerer's Stone"
```

Searches for books with a certain keyword:
```python
>>> from sfpl import Search
>>> search = Search('Python') # Defaults to keyword search
>>> books = search.getResults() # Get the first page of books with keyword 'Python'
>>> book = books[0]  # Get the first book in the list
>>> book.getDescription()
'Python is a remarkably powerful dynamic programming language used in a wide variety of situations such as Web, database access ...'
>>> book.getDetails()
{'Publisher': '[San Francisco, California] :, Peachpit Press,, [2014]', 'Edition': 'Third edition', 'ISBN': ['9780321929556', '0321929551'], ...}
>>> book.getKeywords()
['Introduction to programming', 'Arithmetic, strings, and variables', 'Writing programs', 'Flow of control', 'Functions', ...]
```

# List Class

Returned in Searches for user-created lists.

## Attributes

```_type``` - Type of list.

```title``` - Title of the list.

```user``` - The creator of the list as an User object.

```createdOn``` - The date the list was created on.

```itemCount``` - The number of books in the list.

```description``` - A description of the list.

```_id``` - SFPL's id for the list.

## Methods

```List.getBooks()``` - Returns a list of Book objects with all the books in the list.

## Example

```python
>>> from sfpl import Search
>>> search = Search('Python', _type='list')
>>> lists = search.getResults() # Get the first page of results for user-created lists named 'Python'
>>> _list = lists[0] # Get the first list in the list
>>> _list._type
'Topic Guide'
>>> _list.title
'python'
>>> [book.title for book in _list.getBooks()] # Get a list of the titles of all the books in the 'Python' list.
['Data Structures and Algorithms in Python', 'Python for Secret Agents', 'Python Forensics', 'Raspberry Pi Cookbook for Python Programmers', ...]
```

# User Class (In Progress)

## Attributes 

```name``` - The user's username.

```_id``` - SFPL's id for the user.

# TODO:

Calendars

Events

User Interactions

Search Filters

Better Status Messages


