A Django application to provide a bibliography based on a bibtex library.
Project description
Biblary
Installation
The recommended way of installing is using pip:
pip install biblary
Get started
First, make sure the application is added to the INSTALLED_APPS in your project settings:
# settings.py
INSTALLED_APPS = (
...
'biblary',
)
Next, add the URLs to your project:
# urls.py
from django.urls import path, include
urlpatterns = [
path('biblary/', include('biblary.urls', namespace='biblary')),
]
Finally, the adapter to the bibliography backend needs to be configured.
For example, to serve the contents of a file containing BibTeX entries, use the BibtexBibliography adapter:
# settings.py
import pathlib
BIBLARY_BIBLIOGRAPHY_ADAPTER = 'biblary.bibliography.adapter.bibtex.BibtexBibliography'
BIBLARY_BIBLIOGRAPHY_ADAPTER_CONFIGURATION = {
'filepath': pathlib.Path('/some/path/to/bibliography.bib')
}
The filepath is the only required key for the configuration and should be a pathlib.Path object pointing to the BibTeX file.
Available adapters
BibtexBibliography
This adapter is designed to serve the contents of a file containing BibTeX entries.
Configuration parameters
filepath: apathlib.Pathobject that points to the BibTeX file containing the bibliographic entries.
Writing custom adapter
To provide an adapter to a custom bibliography backend, one should implement the biblary.bibliography.adapter.abstract.BibliographyAdapter class:
# -*- coding: utf-8 -*-
import typing as t
from biblary.bibliography.adapter import BibliographyAdapter
from biblary.bibliography.entry import BibliographyEntry
class CustomBibliographyAdapter(BibliographyAdapter):
"""Implementation of a ``BibliographyAdapter``."""
def __init__(self, *args, **kwargs):
"""Construct a new instance and configure the adapter."""
super().__init__(*args, **kwargs)
def get_entries(self) -> t.List[BibliographyEntry]:
"""Return the list of bibliography entries."""
The constructor should define what keyword arguments it should take in order to configure the adapter.
The keyword arguments that are specified for the BIBLARY_BIBLIOGRAPHY_ADAPTER_CONFIGURATION will be passed to the constructor of the adapter when the bibliography is loaded.
Finally, the get_entries method should be implemented.
It should return a list of biblary.bibliography.entry.BiliographyEntry instances, one for each entry in the bibliography.
Configuration
BIBLARY_BIBLIOGRAPHY_MAIN_AUTHOR_PATTERNS
This setting takes a tuple of regex patterns, for example
BIBLARY_BIBLIOGRAPHY_MAIN_AUTHOR_PATTERNS = ('Paul Dirac', r'.*Dirac')
The template tag main_author_class will use this setting to determine if the author that it is passed is considered a main author.
If that is the case, the string defined by the BIBLARY_BIBLIOGRAPHY_MAIN_AUTHOR_CLASS setting is returned.
This can be used in the index template as follows:
{% for entry in entries %}
<div class="biblary-entry-authors">
{% for author in entry.author %}
<span class="biblary-entry-author {% main_author_class author %}">{{ author }}</span>
{% endfor %}
</div>
{% endfor %}
Any author that will match any of the patterns specified by the setting, will get the additional class.
BIBLARY_BIBLIOGRAPHY_MAIN_AUTHOR_CLASS
Returned by the main_author_class tag if the specified author matches any of the patterns defined by the BIBLARY_BIBLIOGRAPHY_MAIN_AUTHOR_PATTERNS setting.
Default is biblary-entry-author-main.
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 Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file biblary-0.2.0.tar.gz.
File metadata
- Download URL: biblary-0.2.0.tar.gz
- Upload date:
- Size: 15.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.27.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d0c6e60fdc9c32ce9c7464a63a43db52139fffdae5facb729ef9bc0c4853405
|
|
| MD5 |
dfc3ae2f01f6b1f12de97b7e497f73ea
|
|
| BLAKE2b-256 |
7203036305272f3fccc18a71a906a1e9514adc72b6df8a74a45b1e7b0f279492
|
File details
Details for the file biblary-0.2.0-py3-none-any.whl.
File metadata
- Download URL: biblary-0.2.0-py3-none-any.whl
- Upload date:
- Size: 20.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.27.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f9070e47e2b3e409619ab7574c51d926203e002f235d9d815803a4af60bec74
|
|
| MD5 |
262e6f9358527a6d4e4c1c158f6c75fe
|
|
| BLAKE2b-256 |
bcf6b6382662cae4797262aea0c4db64aef296824dbaaa4c09582876c19ff92e
|