Skip to main content

Creates BibTeX entries from links using BibItNow (https://github.com/Langenscheiss/bibitnow), Google Scholar and Selenium.

Project description

BibQuery

A tool for creating BibTeX entries from links using BibItNow (https://github.com/Langenscheiss/bibitnow), Google Scholar and Selenium.

Installation

This library can be installed via pip:

pip install bibquery

Usage

To use bibquery from the command line, type

bibquery https://arxiv.org/abs/1706.03762

If you want to use it inside your python application, you can do so as follows:

from bibquery import BibQuery, query, query_batch

# Option 1
with BibQuery() as bq:
    print(bq.query("https://arxiv.org/abs/1706.03762"))

# Option 2
print(query("https://arxiv.org/abs/1706.03762"))
# Do not use query in a for-loop, as it will recreate the Selenium browser on every call. Rather use option 1 or 3 if
# you need to make multiple calls.

# Option 3
print(query_batch(["https://arxiv.org/abs/1706.03762", "https://ieeexplore.ieee.org/abstract/document/726791"]))

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

bibquery-1.2.4.tar.gz (6.9 kB view hashes)

Uploaded Source

Built Distribution

bibquery-1.2.4-py3-none-any.whl (934.9 kB view hashes)

Uploaded Python 3

Supported by

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