Run-time protection of citation chains
Project description
citecheck: like typechecks, but for citations 📖⛓️
Quick example
Consider this example (all authors and quantities are fictitious):
- Doe (2021) published a method for estimating $V_t$ as a function of $q_p$ and $t$.
- Bloggs (2023) published a method for estimating $R_m$ as a function of $V_t$ and $\rho$, with the explicit requirement that $V_t$ be estimated using the method of Doe (2021) in particular.
The goal for citecheck is that you could implement this as follows:
from citecheck import enforcecite, Cite
@enforcecite
def calc_vt_doe2021(
qt: float,
t: float
) -> Annotated[float, Cite("doe2021")]:
...
@enforcecite
def calc_rm_bloggs2023(
vt: Annotated[float, Cite("doe2021")],
rho: float
) -> Annotated[float, Cite("bloggs2023")]:
...
Now, if we try to pass a value for $V_t$ that was not estimated using the method of Doe (2021), we would get an error:
calc_rm_bloggs2023(vt=1.0, rho=1.0) # Error
calc_rm_bloggs2023(vt=calc_vt_doe2021(1.0, 1.0), rho=1.0) # OK
citecheck is still in development, but this is the general idea.
When to use citecheck
You should consider using citecheck when you are implementing functions corresponding to equations or methodologies in multiple papers which refer to one another.
Getting Started with Development
Use Linux, install pyenv
, and then run the setup
script:
source .\scripts\dev-setup.sh
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
Built Distribution
File details
Details for the file citecheck-0.3.0.tar.gz
.
File metadata
- Download URL: citecheck-0.3.0.tar.gz
- Upload date:
- Size: 27.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 28f9a3b6768fdc9f76319cf0f5cec0d348a7bf8ea5b12224b5d3cd27208b428d |
|
MD5 | 2fc37c48dc459a9f69c681ad5a4025c3 |
|
BLAKE2b-256 | 9d0448441ee3270ad66d83f60f38774337a5dff13313d93fa5557b5331b21855 |
File details
Details for the file citecheck-0.3.0-py2.py3-none-any.whl
.
File metadata
- Download URL: citecheck-0.3.0-py2.py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 41b6388ecd5e29c51ed89c955bd0210fbc2c9bc7fcb61b254fafe64de2c05e97 |
|
MD5 | 9195c81e7432993d4d2f1bd98ebe0066 |
|
BLAKE2b-256 | 6dac318b8dfa6fa4de882dd8ac4d2ce576c6c0070edde99fb189ae2f686a1217 |