bibquery


Namebibquery JSON
Version 1.2.3 PyPI version JSON
download
home_pagehttps://github.com/TimSchneider42/python-bibquery
SummaryCreates BibTeX entries from links using BibItNow (https://github.com/Langenscheiss/bibitnow), Google Scholar and Selenium.
upload_time2023-02-03 20:57:41
maintainer
docs_urlNone
authorTim Schneider
requires_python
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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:
```bash
pip install bibquery
```

## Usage
To use _bibquery_ from the command line, type
```bash
bibquery https://arxiv.org/abs/1706.03762
```

If you want to use it inside your python application, you can do so as follows:
```python
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"]))

```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/TimSchneider42/python-bibquery",
    "name": "bibquery",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Tim Schneider",
    "author_email": "tim@robot-learning.de",
    "download_url": "https://files.pythonhosted.org/packages/6c/40/588d2a787a99eb4a14829c707c71b2808e15f76cb448afb07666a49cfe49/bibquery-1.2.3.tar.gz",
    "platform": null,
    "description": "# BibQuery\nA tool for creating BibTeX entries from links using BibItNow (https://github.com/Langenscheiss/bibitnow), Google Scholar and Selenium.\n\n## Installation\nThis library can be installed via pip:\n```bash\npip install bibquery\n```\n\n## Usage\nTo use _bibquery_ from the command line, type\n```bash\nbibquery https://arxiv.org/abs/1706.03762\n```\n\nIf you want to use it inside your python application, you can do so as follows:\n```python\nfrom bibquery import BibQuery, query, query_batch\n\n# Option 1\nwith BibQuery() as bq:\n    print(bq.query(\"https://arxiv.org/abs/1706.03762\"))\n\n# Option 2\nprint(query(\"https://arxiv.org/abs/1706.03762\"))\n# 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\n# you need to make multiple calls.\n\n# Option 3\nprint(query_batch([\"https://arxiv.org/abs/1706.03762\", \"https://ieeexplore.ieee.org/abstract/document/726791\"]))\n\n```\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Creates BibTeX entries from links using BibItNow (https://github.com/Langenscheiss/bibitnow), Google Scholar and Selenium.",
    "version": "1.2.3",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d10997b6042ebc4389069124ee953084803c626a75533a8aae9202286353122",
                "md5": "1fc0fa6585d3c97e1a79eb4660cb359a",
                "sha256": "3ac277ec3c251c2c1413a80d195eb285135346f7154f5c8d2c9f0bbb5e4150f3"
            },
            "downloads": -1,
            "filename": "bibquery-1.2.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1fc0fa6585d3c97e1a79eb4660cb359a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 934641,
            "upload_time": "2023-02-03T20:57:39",
            "upload_time_iso_8601": "2023-02-03T20:57:39.549601Z",
            "url": "https://files.pythonhosted.org/packages/5d/10/997b6042ebc4389069124ee953084803c626a75533a8aae9202286353122/bibquery-1.2.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c40588d2a787a99eb4a14829c707c71b2808e15f76cb448afb07666a49cfe49",
                "md5": "5c0be13978c3d67bfee41933270478b2",
                "sha256": "0857a7fb78d5eec9bbdcc3b4b9f543af465d156acecf2199076ff1623fb12bae"
            },
            "downloads": -1,
            "filename": "bibquery-1.2.3.tar.gz",
            "has_sig": false,
            "md5_digest": "5c0be13978c3d67bfee41933270478b2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 6898,
            "upload_time": "2023-02-03T20:57:41",
            "upload_time_iso_8601": "2023-02-03T20:57:41.835467Z",
            "url": "https://files.pythonhosted.org/packages/6c/40/588d2a787a99eb4a14829c707c71b2808e15f76cb448afb07666a49cfe49/bibquery-1.2.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-02-03 20:57:41",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "TimSchneider42",
    "github_project": "python-bibquery",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "bibquery"
}
        
Elapsed time: 0.05880s