Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)BA
Posts
0
Comments
3
Joined
4 mo. ago

  • If scraping is reliable, I'd use the classic python pickle or JSON.dump

    For a few thousand I would just use a sqlite dB...

    3 tables:

    • Story with fields: Id, title, text
    • Meta with fields: Id, story-id, subject, contents
    • Tags with fields Id, story-id, tag

    Use SQL joins for sorting etc.

    Sqlite is easily converted to other formats if you decide to use more complex solutions.