All Projects → bibcure → Bibcure

bibcure / Bibcure

Licence: agpl-3.0
Bibcure helps in boring tasks by keeping your bibfile up to date and normalized...also allows you to easily download all papers inside your bibtex

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Bibcure

Scihub2pdf
Downloads pdfs via a DOI number, article title or a bibtex file, using the database of libgen(sci-hub) , arxiv
Stars: ✭ 120 (-3.23%)
Mutual labels:  bibtex, arxiv
Papis
Powerful and highly extensible command-line based document and bibliography manager.
Stars: ✭ 636 (+412.9%)
Mutual labels:  bibtex, arxiv
Bibsearch
Download, manage, and search a BibTeX database.
Stars: ✭ 52 (-58.06%)
Mutual labels:  bibtex
Linearalgebraicrepresentation.jl
Official repository of the package LAR for Julia.
Stars: ✭ 33 (-73.39%)
Mutual labels:  arxiv
Gscholar Bibtex
Retrieve BibTeX entries from Google Scholar, ACM Digital Library, IEEE Xplore and DBLP
Stars: ✭ 92 (-25.81%)
Mutual labels:  bibtex
Sotawhat
Returns latest research results by crawling arxiv papers and summarizing abstracts. Helps you stay afloat with so many new papers everyday.
Stars: ✭ 1,181 (+852.42%)
Mutual labels:  arxiv
Paper Reading
深度学习论文阅读、数据仓库实践体验。比做算法的懂工程落地,比做工程的懂算法模型。
Stars: ✭ 101 (-18.55%)
Mutual labels:  arxiv
Django Publications
A Django app for managing scientific publications.
Stars: ✭ 95 (-23.39%)
Mutual labels:  bibtex
Mff Pytorch
Motion Fused Frames implementation in PyTorch, codes and pretrained models.
Stars: ✭ 116 (-6.45%)
Mutual labels:  arxiv
Lipreading Densenet3d
DenseNet3D Model In "LRW-1000: A Naturally-Distributed Large-Scale Benchmark for Lip Reading in the Wild", https://arxiv.org/abs/1810.06990
Stars: ✭ 91 (-26.61%)
Mutual labels:  arxiv
Awesome Vln
A curated list of research papers in Vision-Language Navigation (VLN)
Stars: ✭ 86 (-30.65%)
Mutual labels:  arxiv
Casual Digressions
💤 Old repository of notes on machine learning papers.
Stars: ✭ 73 (-41.13%)
Mutual labels:  arxiv
Lipnet Pytorch
The state-of-art PyTorch implementation of the method described in the paper "LipNet: End-to-End Sentence-level Lipreading" (https://arxiv.org/abs/1611.01599)
Stars: ✭ 104 (-16.13%)
Mutual labels:  arxiv
Docker Texlive
A docker container containing an installation of texlive as well as several useful scripts.
Stars: ✭ 52 (-58.06%)
Mutual labels:  bibtex
Bibtex Search
Search for BibTeX references
Stars: ✭ 121 (-2.42%)
Mutual labels:  bibtex
Rebiber
A simple tool to update bib entries with their official information (e.g., DBLP or the ACL anthology).
Stars: ✭ 1,005 (+710.48%)
Mutual labels:  bibtex
Cnn Paper2
🎨 🎨 深度学习 卷积神经网络教程 :图像识别,目标检测,语义分割,实例分割,人脸识别,神经风格转换,GAN等🎨🎨 https://dataxujing.github.io/CNN-paper2/
Stars: ✭ 77 (-37.9%)
Mutual labels:  arxiv
Bibtool
BibTool is a tool for manipulating BibTeX data bases. BibTeX provides a mean to integrate citations into LaTeX documents. BibTool allows the manipulation of BibTeX files which goes beyond the possibilities -- and intentions -- of BibTeX.
Stars: ✭ 121 (-2.42%)
Mutual labels:  bibtex
Bib Publication List
Interactive publications lists with JavaScript + Bibtex
Stars: ✭ 122 (-1.61%)
Mutual labels:  bibtex
Arxivscraper
A python module to scrape arxiv.org for specific date range and categories
Stars: ✭ 121 (-2.42%)
Mutual labels:  arxiv

bibcure (Beta Version)

logo_64x64 Bibcure helps in boring tasks by keeping your bibtex file up to date and normalized.

bibcure_op

Requirements/Install

Bibcure uses the wonderful Bibtex parser. In this moment we waiting for new release of python-bibtexparser to solve some bugs.

Install it using pip:

$ sudo python /usr/bin/pip install bibcure
# or
$ sudo pip install bibcure
# or
$ sudo pip3 install bibcure  # for Python 3

You can also install from the source: git clone the repository, and install with the setup.py script.

scihub2pdf (beta)

sci_hub_64 If you want download articles via a DOI number, article title or a bibtex file, using the database of arXiv, libgen or sci-hub, see bibcure/scihub2pdf.


Features and how to use

bibcure

Given a bib file...

$ bibcure -i input.bib -o output.bib
  • check sure the arXiv items have been published, then update them (requires internet connection),

  • complete all fields(url, journal, etc) of all bib items using DOI number (requires internet connection),

  • find and create DOI number associated with each bib item which has not DOI field (requires internet connection),

  • abbreviate journals names.

arxivcheck

Given an arXiv id...

$ arxivcheck 1601.02785
  • check if has been published, and then returns the updated bib (requires internet connection).

Given a title...

$ arxivcheck --title "A useful paper with hopefully unique title published on arxiv"
  • search papers related and return a bibtex file for the first item.

You can easily append a bib into a bibfile, just do

$ arxivcheck --title "A useful paper with hopefully unique title published on arxiv" >> file.bib

You also can interact with results, just pass --ask parameter:

$ arxivcheck --ask --title "A useful paper with hopefully unique title published on arxiv"

scihub2pdf

Given a bibtex file

$ scihub2pdf -i input.bib

Given a DOI number...

$ scihub2pdf 10.1038/s41524-017-0032-0

Given an arXiv id...

$ scihub2pdf arxiv:1708.06891

Given a title...

$ scihub2bib --title "A useful paper with hopefully unique title"

or arxiv...

$ scihub2bib --title arxiv:"A useful paper with hopefully unique title"

Location folder as argument:

$ scihub2pdf -i input.bib -l somefolder/

Use libgen instead sci-hub:

$ scihub2pdf --uselibgen -i input.bib

doi2bib

Given a DOI number...

$ doi2bib 10.1038/s41524-017-0032-0
  • get bib item given a DOI (requires internet connection)

You can easily append a bib into a bibfile, just do:

$ doi2bib 10.1038/s41524-017-0032-0 >> file.bib

You also can generate a bibtex from a txt file containing a list of DOIs:

$ doi2bib --input file_with_dois.txt --output refs.bib

title2bib

Given a title...

$ title2bib "A useful paper with hopefully unique title"
  • search papers related and return a bib for the selected paper (requires internet connection)

You can easily append a bib into a bibfile, just do

$ title2bib "A useful paper with hopefully unique title" --first >> file.bib

You also can generate a bibtex from a txt file containing a list of "titles"

$ title2bib --input file_with_titles.txt --output refs.bib --first

Comparison: Sci-Hub vs LibGen

Sci-Hub

  • Stable
  • Annoying CAPTCHA
  • Fast

Libgen

  • Unstable
  • No CAPTCHA
  • Slow

License

GNU Affero General Public License v3.0. For more details, see the LICENSE file.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].