Skip to main content

Extract survey content and bibliography from arXiv papers

Project description

bibextract

A Python package (with Rust backend) for extracting survey content and bibliography from arXiv papers.

Features

  • Download arXiv papers: Automatically downloads and extracts LaTeX source files from arXiv
  • Extract relevant sections: Identifies and extracts Related Work, Background, and other survey-relevant sections
  • Bibliography management: Parses and normalizes bibliography entries from multiple papers
  • BibTeX generation: Outputs proper BibTeX format for all cited works
  • Citation verification: Verifies citations against DBLP and arXiv databases
  • Parallel processing: Uses Rust's parallel processing for fast bibliography verification

Installation

From PyPI (when published)

pip install bibextract

From Source

  1. Install Rust (if not already installed):
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source ~/.cargo/env
  1. Install maturin:
pip install maturin
  1. Clone and build:
git clone https://github.com/your-username/bibextract.git
cd bibextract
maturin develop

Usage

Python API

import bibextract

# Process one or more arXiv papers
result = bibextract.extract_survey(['2104.08653', '1912.02292'])

# Access the extracted content
survey_text = result['survey_text']  # Raw LaTeX with sections
bibtex = result['bibtex']           # BibTeX bibliography

# Save to files
with open('survey.tex', 'w') as f:
    f.write(survey_text)

with open('bibliography.bib', 'w') as f:
    f.write(bibtex)

Command Line (original Rust binary)

# Build the CLI tool
cargo build --release

# Process papers
./target/release/bibextract --paper-ids 2104.08653 1912.02292 --output survey.tex

Example Output

The package will generate:

  1. Survey Text (survey_text): LaTeX content with normalized sections:
\section{Related Work}

Recent advances in machine learning have shown...
\cite{author2021paper, smith2020method}

\section{Background}

The foundations of this work build upon...
\cite{jones2019foundation}
  1. BibTeX Bibliography (bibtex): Properly formatted citations:
@article{author2021paper,
  title = {A Novel Approach to Machine Learning},
  author = {Author, First and Author, Second},
  journal = {Journal of ML},
  year = {2021},
}

@inproceedings{smith2020method,
  title = {Efficient Methods for Deep Learning},
  author = {Smith, John},
  booktitle = {Conference on AI},
  year = {2020},
}

API Reference

extract_survey(arxiv_ids)

Extract survey content from arXiv papers.

Parameters:

  • arxiv_ids (list): List of arXiv paper IDs (e.g., ['2104.08653', '1912.02292'])

Returns:

  • dict with keys:
    • 'survey_text': Raw LaTeX text with extracted sections and normalized citations
    • 'bibtex': BibTeX bibliography entries for all cited works

Raises:

  • TypeError: If arxiv_ids is not a list
  • ValueError: If arxiv_ids is empty or contains no valid IDs
  • RuntimeError: If there's an error processing the papers

Development

Running Tests

cargo test

Building Documentation

cargo doc --open

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

  • Built with PyO3 for Python-Rust integration
  • Uses reqwest for HTTP requests
  • Bibliography verification via DBLP and arXiv APIs
  • Parallel Processing: Uses parallel verification for improved performance
  • Multiple Paper Support: Processes multiple papers and consolidates their bibliographies

Installation

Prerequisites

  • Rust (latest stable version)
  • Internet connection for downloading papers and verifying citations

Building from Source

git clone https://github.com/yourusername/bibextract.git
cd bibextract
cargo build --release

The binary will be available at target/release/bibextract.

Usage

Basic Usage

Extract related work sections from a single arXiv paper:

bibextract --paper-ids 2104.08653

Multiple Papers

Process multiple papers at once:

bibextract --paper-ids 2104.08653 2203.15556 2307.09288

Save to File

Save the output to a LaTeX file:

bibextract --paper-ids 2104.08653 2203.15556 --output survey.tex

Verbose Logging

Enable detailed logging to see the processing steps:

bibextract --paper-ids 2104.08653 --verbose

Command Line Options

  • --paper-ids or -p: List of arXiv paper IDs (e.g., 2104.08653)
  • --output or -o: Output file path (prints to stdout if not specified)
  • --verbose or -v: Enable verbose logging

How It Works

1. Paper Download and Extraction

The tool downloads LaTeX source files from arXiv and extracts them:

  • Supports both ZIP and TAR.GZ archives
  • Finds the main LaTeX file automatically
  • Processes \input and \include commands recursively

2. Section Detection

Identifies relevant sections based on common patterns:

  • "Related Work"
  • "Background"
  • "Literature Review"
  • "Prior Work"
  • "State of the Art"
  • And many more variants

3. Bibliography Processing

Parses .bbl files to extract bibliography entries:

  • Handles standard BibTeX formats
  • Extracts author, title, year, and other metadata
  • Supports both \bibitem and \citeauthoryear formats

4. Citation Verification

Verifies bibliography entries using external APIs:

  • DBLP API: For academic paper verification
  • arXiv API: For arXiv preprint verification
  • Parallel Processing: Verifies multiple entries simultaneously
  • Smart Matching: Uses title, author, and year for accurate matching

5. Output Generation

Produces clean LaTeX output:

  • Normalized citation keys
  • Consolidated bibliography
  • Ready-to-use LaTeX sections

Output Format

The tool generates LaTeX output with:

\section{Related Work}
...section content with normalized citations...

\section{Background}
...section content with normalized citations...

% Consolidated bibliography
Bibliography {
  smith_machine_learning_2020: article {
    author: "John Smith",
    title: "Machine Learning Approaches",
    year: "2020",
    verified_source: "DBLP",
  }
  ...
}

Example

# Extract related work from a few machine learning papers
bibextract --paper-ids 2104.08653 2203.15556 2307.09288 --output ml_survey.tex --verbose

This will:

  1. Download and extract LaTeX sources for each paper
  2. Parse bibliography files
  3. Verify citations using DBLP and arXiv APIs
  4. Extract related work sections
  5. Normalize citation keys
  6. Consolidate bibliographies
  7. Save the result to ml_survey.tex

Architecture

The project is organized into several modules:

  • latex::bibliography: Bibliography parsing and management
  • latex::citation: Citation extraction and normalization
  • latex::parser: LaTeX file parsing and archive extraction
  • latex::verification: Bibliography verification using external APIs

Dependencies

  • anyhow: Error handling
  • clap: Command line argument parsing
  • reqwest: HTTP client for API requests
  • regex: Regular expression support
  • rayon: Parallel processing
  • serde_json: JSON parsing for API responses
  • tempfile: Temporary file management
  • zip: ZIP archive extraction
  • tar + flate2: TAR.GZ archive extraction

Logging

The tool uses structured logging to show progress:

INFO Processing arXiv paper with ID: 2104.08653
INFO Downloading source files from arXiv for paper: 2104.08653
INFO Extracting ZIP archive
INFO Verifying bibliography entries for paper 2104.08653
INFO Verified entry: smith2020 (progress: 1/25)
INFO Found 3 sections with bibliography entries
INFO Output written to "survey.tex"

Error Handling

The tool handles various error conditions gracefully:

  • Invalid arXiv IDs
  • Missing or corrupted source files
  • Network failures during verification
  • Malformed LaTeX files
  • Missing bibliography files

Contributing

Contributions are welcome! Please feel free to submit issues and pull requests.

License

This project is licensed under the MIT License - see the LICENSE file for details.

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

bibextract-0.1.0.tar.gz (59.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

bibextract-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bibextract-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bibextract-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

bibextract-0.1.0-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

bibextract-0.1.0-cp313-cp313-win32.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86

bibextract-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

bibextract-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bibextract-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

bibextract-0.1.0-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

bibextract-0.1.0-cp312-cp312-win32.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86

bibextract-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

bibextract-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bibextract-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

bibextract-0.1.0-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

bibextract-0.1.0-cp311-cp311-win32.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86

bibextract-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bibextract-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bibextract-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

bibextract-0.1.0-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

bibextract-0.1.0-cp310-cp310-win32.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86

bibextract-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bibextract-0.1.0-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86-64

bibextract-0.1.0-cp39-cp39-win32.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86

bibextract-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

bibextract-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

File details

Details for the file bibextract-0.1.0.tar.gz.

File metadata

  • Download URL: bibextract-0.1.0.tar.gz
  • Upload date:
  • Size: 59.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for bibextract-0.1.0.tar.gz
Algorithm Hash digest
SHA256 cd660ab3816ecb919df086b263476f7c4a0dc9553b4a6164c888c5607e66150a
MD5 2948807f6dbb69492f68ec189f27bdd9
BLAKE2b-256 bcf118c8330f7be9bc23fa9ecc01e871c3764d7b4da8a463e56edb4fe9f8a854

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bibextract-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67fbdd2cae413123091f147077d49875798109227d2ddd452337494a676995f8
MD5 3551bec05626ff9acbd5e554e3811b2d
BLAKE2b-256 7b102fce182a2bd6a4c1e4fa6986a9af99a69d070f4899525361998e5e926e68

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bibextract-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f02fdb4a25d8a8145f9cfbf9ed38fc8958527e7f7698ca8ec9d5e6aa2c45738b
MD5 611abe7c18b26ecfff0b3f5e2822b7a8
BLAKE2b-256 ae453826f8e233ced736f639f831506403ac6314cc1051cb7a7d42929bbfd7f8

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bibextract-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5be2e914fd42d33858e8f8f26491d2e49dc7b88b43521777b6caff28220ab26
MD5 bd9eefefa42b6bf09c70e72cd3a57b6d
BLAKE2b-256 37f2bf0a9b62ff0d861a93197b91c8ab3d700b3c89aec571dc50082ddc59574e

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for bibextract-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d4f7f57a0094d2a916f4fb7aa83f7104e54c451d50caef19e256182aee4feb74
MD5 a43ea66d7a4a45e05661761733f7bed9
BLAKE2b-256 31de226e531c179252e732f967e6906bf222e84fb112dff4f67d4a5f9177d294

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: bibextract-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for bibextract-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f52d41360a167ce32c269caa28f1972f81f400347cd3049b8fb9b5a2a366651f
MD5 a7f3d86e85fd6d99ac83cf0ad275e397
BLAKE2b-256 6eb266a9af7ac62bc53f90c0cf4ae6633ae2fa87df83ad8b24d5a6b45f6ebc70

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bibextract-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 105d8127b05b11ec1a825b396cf7f73a00165c7892aab13c02761bc2d213824a
MD5 be9ebcc15578e5753acf754ead52bd82
BLAKE2b-256 9237d2431f7b3153528dde287396b4ea160853e1b72ef59cfacbd029103cb3f4

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bibextract-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02d32803ba19b63917e34d2b338e1aeb3d216e19761a23e577567996439e208f
MD5 b623c7df1cf82c3b7cbac312f6ae771f
BLAKE2b-256 effa3f34f038ce156a5a32849a2acc23cf024f64c8eb3e67c834e176f0539f18

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bibextract-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc7bf7fd3dc93cc6617b7e2a50d40d3772499ef7d3ff379bb43c911a8ea9cadf
MD5 11420c5e71d5594a17a0675abe937458
BLAKE2b-256 30ab8ca4eca6b58d2995209e4498914970217260c933b812f10fa33acaca9f2b

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for bibextract-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 150aabaacf5d9b7c27e80b1c10a9d8cd9d098dd79084a947d5e46a6284e88d69
MD5 059e6399bb4b278b2ce16002d0af9b53
BLAKE2b-256 c50b5458e14c25ee54e6f38acaded098255c34cbdcef955a249fab19b8b8fa96

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: bibextract-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for bibextract-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 72cd8516cb6c2d9f4e814d51249104cef5102ff81a2ac60aebcc90f89ded127c
MD5 481d8c40bc1bd13a743b097bec3fc1cc
BLAKE2b-256 418313d0d1764d7c972a3ba5861f6d1c8e96cd5c3daa47f48d7aeddd6fcdf1e6

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bibextract-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee4af2ba600d09979eb4803d1348b44f2417bc1ec04cd765575587f65e8ec43f
MD5 b103ab153df67051856d111742f3bd49
BLAKE2b-256 7cfebf775b73c24dcaafae83c263212eed6293dd6b0bb4d00d4c9931ce5b5598

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bibextract-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f904d23481b7f220e13a4066502b4032121cd5dee5d23512d3c97751b12319ff
MD5 bc325094ac7b726b625d2262edd62620
BLAKE2b-256 1a92403bc1f439498e707764953cc164adef90a3bdc648dfb7ada5c3bf8dc6e1

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bibextract-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 538110f5a874ebc2678c5e8d3b2d76b576bbac32d3467a0b7341219440e72f20
MD5 0fd89bc89fa62f664a2abd2fd306f61b
BLAKE2b-256 18418ec82e6810ccd23375fef03aa5a7ed104d303e2d9560c81eb872c6c30aaf

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for bibextract-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a230dfbe13c28a6044c4e3ce2b785acbbf7e0b0f3630e6fc0fa3b7456b27363c
MD5 7e69b782eb45d84c7d85626fc11cd514
BLAKE2b-256 d806977ba7a920ef4ac00e2ed5ef0b81f1599e53d0b1ef12b32fc2aabe83df76

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: bibextract-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for bibextract-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d2025c7a825219315f7650a7957df99cc348eeb244f68682081ce3f4a0a4b593
MD5 327694baa7a13b303ed77fddfd9f1488
BLAKE2b-256 85a81fa81bf746266d04c8096d5797ac1e93f128ef911493c76dc0fe75160bd5

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bibextract-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9378408027bb262519bf45ec9932cce819dc79ada34d31ffdf8b33cb955fbf61
MD5 2767b18217938c7f92810ebce4578df6
BLAKE2b-256 316fbee244566da5db9b05d95bed79964433cb84d6400a9f581ded503f6495ff

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bibextract-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 871484881420ab2a0719de067f93801e1fc1cb6ad09482f987beda32d62aa25b
MD5 be0c6bf2de053096c777f4769683a370
BLAKE2b-256 f5ec9cdba7239100b57f9935d60d32f992ac6d5faef5a92923941798eacabb04

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bibextract-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8613052d042b6561618449fed5bf5ecd021b88aa79e46d4f442b2b37683ba86c
MD5 08ccb763e2764a208a9656b8e5e5fe50
BLAKE2b-256 014b9c75130500354caf4669f97dbeb3eee9b9fcddd2ea931e43bf0ee155a7a0

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for bibextract-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e61c54e3d9e2517c5403dfb6311e5c020362920285c7a7f12b9370e24116ea2f
MD5 c8135164495fc2b051f8b99b4e6dc41f
BLAKE2b-256 4fd3e68bbd3bfcf4c0def571d2f5acc7d56a57b80599ea6040ae24e136542fa0

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: bibextract-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for bibextract-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2e8acc718107b419a201a4645fc431343df286d103d492015f5a41b9ec15fa5c
MD5 6cf8bedae7aee15988936bfae761911a
BLAKE2b-256 549ea135eeecad77534be2f2c59fafe2e147d0d0c6ced32ad02f93f73e3b7781

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bibextract-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4cb1bff2f8d6dbea28ede619f895fd7b2fbaeb6b7e18038e28620d9d183f79be
MD5 34b7b8131c2f986475156a05428bbe34
BLAKE2b-256 2ab3c1ff19995451d28960580c7f48a4ac2d41d20bbb61bd803ab76834d9bebb

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for bibextract-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 82c667eb43bcefdb0ade8efd28a1b12acd8c650b2312aab91c7ce9d008e31e92
MD5 d905c1c39f3833f42892d52e5f157fa1
BLAKE2b-256 2ab5f009a254d9133a5f4640e26ceb54f724a62d572b1ce44eca35551b34def0

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: bibextract-0.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for bibextract-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0f37319e9c3b1e4310921030811a07f4cf15b05d6984f019c94d0076bc7e1a12
MD5 a5bddfc5615f5d500cff233e00b134f1
BLAKE2b-256 381aa4b13449fa25ce9e6357d7d1aff7c9befd26d8dc1704ec11be75f3ec60d6

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bibextract-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25ee3da394aeacdb3175e68be729b5212fb73cbaecd2901d77c8c33473b5d08d
MD5 7545c74b12ddc6eba23d1000b4c5cc1b
BLAKE2b-256 15c4b462456610ed554fc5894dd08ac421440f32ed5acffbfe6115360e2e3f77

See more details on using hashes here.

File details

Details for the file bibextract-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bibextract-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 221732bc178dca98413344832845e9aaba589cfb07e850681b4603093fc0a9e5
MD5 6f59832cd739a18d20d752f699e4591a
BLAKE2b-256 324e1445a1b7ded56c7d12b8687945caa9d200f4aece22d632927830edd359d1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page