No project description provided
Project description
Bibliograpy
Bibliography management to decorate source code.
API
The Bibliograpy API allows to manage bibliographic centralized references using decorators.
Hence, is it possible to factorize all bibliographic sources as variables in a single module, using them as arguments of decorators.
"""The bibliography module."""
from bibliograpy.api import TechReport
IAU_2006_B1 = TechReport(
key="iau_2006_b1",
title="Adoption of the P03 Precession Theory and Definition of the Ecliptic")
"""The bibliography_client module using the bibliography.py module."""
from bibliograpy.api import reference
from bibliography import IAU_2006_B1
@reference(IAU_2006_B1)
def my_function():
"""My my_function documentation."""
# some implementation here using the reference given as a parameter to the decorator
The usage of the decorator has two purposes.
First, to use a bibliographic reference defined once and for all, centralized and reusable.
Second, to implicitly add to the documentation of the decorated entity a bibliographical section.
import bibliography_client
>>> help(my_function)
Help on function my_function in module bibliography_client
my_function()
My my_function documentation.
Bibliography: Adoption of the P03 Precession Theory and Definition of the Ecliptic [iau_2006_b1]
Preprocessing tool
Bibliograpy allows generating a source code bibliograpy from a resource bibliography file.
Bibliograpy process supports bibliography files in yaml format. Each bibliographic entry contains three fields.
The type
field only supports the misc
value. The key
fields represents the bibliographic entry unique key (id).
The title
field represents the readable form or the entry. For instance:
- type: misc
key: nasa
title: NASA
- type: misc
key: iau
title: International Astronomical Union
This bibliography file can be preprocessend by the bibliograpy process
tool.
bibliograpy process
This preprocessing produces the corresponding bibliographic references that can be used as bibliograpy decorator arguments.
from bibliograpy.api import Misc
NASA = Misc(key='nasa', title='NASA')
IAU = Misc(key='iau', title='International Astronomical Union')
Documentation
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
File details
Details for the file bibliograpy-0.0.3.tar.gz
.
File metadata
- Download URL: bibliograpy-0.0.3.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9cee44226ecce9f703dc8271707489c72de56986937801e910090a65f41f866b |
|
MD5 | 863ab2fb4cb0d7db66c5c7f179d40db7 |
|
BLAKE2b-256 | ad2c186ef45a4a0b7711ed1a1cb5418596ccb8cff4a0600354ee2bbbcf575e4e |
File details
Details for the file bibliograpy-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: bibliograpy-0.0.3-py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2235f008d250279edaf1f71038ebf34b8134647f5acd9c343919db9bf1440f64 |
|
MD5 | a5ddd4e46c541b71d6a24e10057f7488 |
|
BLAKE2b-256 | 5b77ab879aa50c0852c7edfc7729a09cbbc2275c51efd5e8509ed71c74d6305d |