Skip to main content

A package for scraping and serving book data in to bookspointer.

Project description

bookspointer

A package for scraping and serving book data.

Installation

pip install bookspointer

Usage

Import and use the modules in your Python code:

from bookspointer.scraper import BookScraper
from bookspointer.server import BookAPI, AuthorAPI, TokenAPI
from bookspointer.sheet import AuthorSheetManager
from bookspointer.api import BookspointerAPI

from rich import print
import random

def multipage_links():
    with open('multi_page.txt', 'r') as f:
        links = f.readlines()
    
    return links
    
# Initialize the main classes
scraper = BookScraper(multi_page_links=multipage_links())  # Categories to scrape by single page
book_api = BookAPI()
author_api = AuthorAPI()

    
    
def update_authors_from_bookspointer():
    """
    Fetches authors from a Google Sheet using AuthorSheetManager and updates them on the server.
    """
    # Fetch and update authors from Google Sheet to your server
    author_sheet = AuthorSheetManager().run()


def update_books_from_authors():
    """
    Fetches unscraped authors from the server, scrapes their books, adds the books to the server, and marks authors as scraped.
    """
    # Fetch unscraped authors and update their books
    authors = author_api.get_unscraped_authors()
    for author in authors:
        author_url = author.get('author_link')
        author_name = author.get('author_name', 'Unknown')
        author_id = author.get('author_id')
        if not author_url:
            continue
        books = scraper.get_book_list(author_url)
        for book in books:
            book_list = scraper.get_book_details(book, author_id)
            for book in book_list:
                add_book = book_api.create(book)
                print(
                    f"Added book: {book['title']} by {author_name} with ID: {add_book}")

            author_api.update(author.get('id'), {"is_scraped": "yes"})

        print(f"Finished scraping books for author: {author_name}")

def post_books_on_bookspointer():
    """
    Posts all books that have not yet been posted to Bookspointer using random tokens for authentication.
    """
    books = book_api.get_all_books(is_posted=False)
    tokens = TokenAPI().get_all_tokens()
    for book in books:
        token = random.choice(tokens)
        bookspointer_api = BookspointerAPI(token)
        try:
            bookspointer_api.post_book(book)
        except Exception as e:
            print(f"Error posting book {book['title']}: {e}")
            continue


def main():
    """
    Orchestrates the process of updating authors, updating books, and posting books by calling the respective functions in sequence.
    """
    print("Starting to update authors from Bookspointer...")
    update_authors_from_bookspointer()
    print("Authors updated successfully.")
    print("Starting to update books from authors...")
    update_books_from_authors()
    print("Books updated successfully.")
    print("Starting to post books on Bookspointer...")
    post_books_on_bookspointer()
    print("All books posted successfully.")


if __name__ == "__main__":
    main()

Features

  • Scrape book data
  • Serve book data via API
  • Sync authors and books with Google Sheets

Project Links

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bookspointer-0.2.6.tar.gz (21.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bookspointer-0.2.6-py3-none-any.whl (22.1 kB view details)

Uploaded Python 3

File details

Details for the file bookspointer-0.2.6.tar.gz.

File metadata

  • Download URL: bookspointer-0.2.6.tar.gz
  • Upload date:
  • Size: 21.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for bookspointer-0.2.6.tar.gz
Algorithm Hash digest
SHA256 93e37e516bd8eddca01e1a1b98f482b314848159f59dc147c85804ff5ad488de
MD5 a038da0efbc32a5fe429fb7e933b9dce
BLAKE2b-256 90e5f34d3befded3adbcabd6c47a5a91836c3563c1a0c398a86306c588354078

See more details on using hashes here.

File details

Details for the file bookspointer-0.2.6-py3-none-any.whl.

File metadata

  • Download URL: bookspointer-0.2.6-py3-none-any.whl
  • Upload date:
  • Size: 22.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for bookspointer-0.2.6-py3-none-any.whl
Algorithm Hash digest
SHA256 ef5e3fd35a95059c6deed263d1c2fdfdc09b1d1604eee9b23f03cb4151a5753f
MD5 6ccc497da69db9db0a65f39556f10ed7
BLAKE2b-256 d2b7f25660c76207d2b97516433684a286efdd86c7aa46e6bde4a4b1788f174c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page