This project attempts to export a local Zotero library to a usable HTML website.
Project description
Export Zotero to a web site
This project exports your local Zotero library to a usable HTML website. This generated website has the following features:
- Easily access your papers, site snapshots, notes from a navigation tree.
- Provides metadata from collections and attachments (i.e. referenes etc).
- Display PDF papers and website snapshot (the latter as framed).
- Search function dynamically narrows down the papers you're looking for.
- Embed links to a specific collection, article, item, note etc.
- Export only a portion of your collection with regular expressions using the collection name.
- BetterBibtex integration.
- Snazzy look and feel from the latest Bootstrap CSS/Javascript library.
Table of Contents
- Obtaining
- Ubuntu and Linux Systems with Python 3.5 or Previous Version
- Sample Site
- Usage
- Process
- Command Line Help
- Attribution
- Screenshot
- Todo
- Zotero Plugin Listing
- Changelog
- License
Obtaining
The easist way to install the command line program is via the pip
installer:
pip3 install zensols.zotsite
Binaries are also available on pypi.
Ubuntu and Linux Systems with Python 3.5 or Previous Version
Please read this issue if you are installing a Ubuntu or any Linux system with Python 3.5 or previous version.
Sample Site
See the live demo, which provides a variety of resources found in my own library. Note: To my knowledge, all of these resources are free to distribute and violate no laws. If I've missed one, please create an issue.
Usage
Important: You must shut down Zotero before you invoking this script. Nothing goes wrong when you don't. However, the script uses an SQLite file that the program (pessimistically) locks.
The program has two modes: show configuration (a good first step) and create the web site.
Show Structure
You can see what the program is parsing from your Zotero library:
zotsite print
Website Creation
Run the program (without the angle brackets):
zotsite export -o <sitedir>
After the program runs, sitedir
will be where the tool creates/generates the
the new site. Note you can also give a --datadir
to tell the program where
your Zotero library is. This can also be configured in
your configuration.
The website will work as served from either a website or from the local file
system. You can pass levels
as a URL encoded parameter to produce the number
of levels when the page is loaded.
On the left you can click on the tree to select collections or attachments. You have to drill all the way down to the leaf level in the tree to get at your attachements and notes. At the leaf level you can select and unselect a node but all other nodes are note selectable.
By clicking on a non-leaf node it expands or collapses everything and gives the meta data for that collection. Note that this behavior was decided more by the way Tree View works more than anything else since it is designed to show the entire tree list at once.
Subcollections
The folder directory structure in Zotero are called collections. You can
export and print only collections given a regular expression with the
--collection
flag.
To export only collections with the Deep and Learning, use the following.
zotsite export --collection '.*Deep\s*Learning.*'
This option is handy if you want to hand off a particular set of collection(s)
to a colleague or shared project etc. To include entries at the time level
(i.e. find those actual papers by name), see the match_children
configuration
in the configuration file.
The Python regular expression syntax. One gotcha is a .*
is needed at the
front of a string to match anything.
Configuration File
All command line parameters you provide can also be given in a ini
style
configuration file, for example:
[default]
data_dir={HOME}/.zotero
tells the program where the Zotero data directory is located in the user's
home directory with name .zotero
(this defaults to the Zotero default).
You can indicate where the program configuration file is with the ZOTSITERC
environment variable or use the --config
command line program.
See the full configuration file for example of all options. All options include:
- data_dir: the directory where the Zotero DB files live
- match_children: when using --collection, match on items as well
- file_mapping: one of: item or long
- id_mapping: one of:
none
,betterbib
- sort: whether or not to sort items
none
orcase
(non-case might be added later)
Process
The tool does the following:
- Exports the meta data (directory structure, references, notes, etc) from your Zotero library. On MacOS, this is done by querying the file system SQLite DB files.
- Copies a static site that enables traversal of the exported data.
- Copies your Zotero stored papers, snapshot (sites) etc.
- Generates a navigation tree to easily find your papers/content.
Keeping the Website In Sync With Zotero
Currently there is no way to do this (contributions are welcome). However there is a script I use to do this when I know I'm going to need to use the site, which is here.
Platform
This project uses the SQLite Python library and should run on other platforms but assumes a directory structure that's been tested on OSX.
Command Line Help
Command line usage as provided with the --help
option:
Usage: zotsite <list|export|print|tmp> [options]
Options:
--version show program's version number and exit
-h, --help show this help message and exit
-w NUMBER, --whine=NUMBER
add verbosity to logging
-c FILE, --config=FILE
configuration file
Actions:
export Export
-o, --outputdir <string> ./zotsite the directory to output the website
--collection <string> regular expression pattern to match collections
print Print structure
--collection <string> regular expression pattern to match collections
Attribution
This software uses:
- Python 3
- Bootstrap version 4
- Tree View for Bootstrap
- Popper for tooltips
- Copy to Clipboard function
Screenshot
Also see the live demo.
Todo
- Make the site portion a proper Javascript site. Right now, all the
min
s are added in the distribution to same directory as the main navigation/content file. - Add functionality to the disabled View button that drills down in a paper and finds a PDF or site to view withouth the user having to do this.
- Use something like zotxt to make this work with a plugin rather than directly against the SQLite DB.
Zotero Plugin Listing
This is listed as a plugin on the Zotero site.
Changelog
An extensive changelog is available here.
License
Copyright © 2018 - 2020 Paul Landes
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
File details
Details for the file zensols.zotsite-0.3.3-py3.7.egg
.
File metadata
- Download URL: zensols.zotsite-0.3.3-py3.7.egg
- Upload date:
- Size: 458.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 86449675a598d0dc6d0548f3d8ee9ce12dfa6610881dab21bbf939e7849f62eb |
|
MD5 | 5c3b46a79ad6971c5c7df28d841824a5 |
|
BLAKE2b-256 | 90b8181e2be10e2cb73a492d92100b519f180f314481f84f9c8ed66fbe4e1d0b |
File details
Details for the file zensols.zotsite-0.3.3-py3-none-any.whl
.
File metadata
- Download URL: zensols.zotsite-0.3.3-py3-none-any.whl
- Upload date:
- Size: 437.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b803c9ee49cb4bfbfeafa2d74a7507dba6b03bc04c4dfec7b800268ff7a73de |
|
MD5 | 67fa03fc2a0f26448f4a750ba5d64355 |
|
BLAKE2b-256 | 44bc353bfe82ffdda55948c06c4f298066e818b226c909b477a33888b27ffa30 |