{ "info": { "author": "Michael Helmling", "author_email": "michaelhelmling@posteo.de", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Topic :: Database :: Front-Ends" ], "description": "**********************\nThe BibTeX VCS Package\n**********************\n\n`BibTeX VCS` is a python package that helps sharing a BibTeX_ database with a control system (VCS).\nIt is optimized for usage together with the JabRef_ BibTeX manager.\n\n\nIntroduction\n============\nCollecting and managing bibliography information can be cumbersone. Therefore it makes sense to maintain\na single BibTeX database within a research group that focusses on the same topic and thus has a lot of\ncommon bibliography. Furthermore, tools like JabRef_ allow to link PDF documents to BibTeX entries, turning\nthe ``bib`` file into a valuable literature database.\n\nSince the ``bib`` file is text-based, it can be efficiently put under revision control. However, such a database\nused by several people over a long period of time tends to become messy. Furthermore, most people are not\ntrained, and even less interested in, the usage of VCS systems.\n\n`BibTeX VCS` resolves these issues by automating the most common VCS operations and providing a minimalist,\nplatform-independent GUI. It allows to defined a number of `database checks` that are run prior to each\ncommit operation, in order to enforce consistency and a defined referencing style within the database.\nFor example, there is a check that ensures that the documents linked to BibTeX entries actually exist, and\neach PDF document is linked to by at least one BibTeX entry. For information on the default checks and how to\nadd custom ones, see :ref:`checksModule`.\n\nInstallation\n============\n`BibTeX VCS` needs a Python_ interpreter. Python version 3.x is recommended, but the package will also\nrun with Python 2.7. The easiest way to install it is using pip_::\n\n pip install bibtexvcs\n\nYou may need to replace ``pip`` in the above command by ``pip-x.y``, where ``x.y`` denotes the desired Python version.\nIf you want to use the GUI_, you need to install either PyQt4_, PyQt5_, or PySide_ for the same version of Python.\nFor exporting the database using a template, Jinja2_ is an additional requirement.\n\nBelow are some platform-specific instructions.\n\nInstallation on Linux\n---------------------\nInstall Python_ 3, pip_ and PyQt5_ (both for Python 3) using your distribution's package manager.\nIf available, you can also install the Python 3 version of `pyparsing`. Then open a terminal and type::\n\n pip3 install --user bibtexvcs\n \nTo start the GUI, either run the executable created by pip_ (default location: ``$HOME/.local/bin/btvcs``), or\ninvoke::\n\n python3 -m bibtexvcs.gui\n \nInstallation on Mac\n-------------------\nInstall PySide_ according to the instructions on the home page. Then run the ``pip`` command as described above.\n\nInstallation on Windows\n-----------------------\nDownload and install Python_. If you choose Python 3.4 or later, be sure to check `pip` and `Add python.exe to Path`.\nThen, download and install either PyQt5_ or PySide_ for the same Python verson. Afterwards open a terminal and type::\n\n pip3 install bibtexvcs\n\nThis will install `BibTeX VCS` and all of its requirements. To start the GUI, either type ``btvcs`` into the terminal,\nor double-click on `btvcs.exe` in `C:\\\\PythonX.Y\\\\Scripts`.\n\nRepository (Database) Layout\n============================\nA `BibTeX VCS` database consists of a repository of supported type (currently, this is only Mercurial_, but\nother VCS systems are easy to implement). The toplevel directory of the repository, henceforth called the\n`database directory`, must contain a file named ``bibtexvcs.conf`` which consists of ``key = value``-type\nconfiguration options. The possible configuration options are:\n\n``bibfile``\n name of the BibTeX database file. Defaults to ``references.bib``.\n\n``documents``\n directory in which PDF (and other) documents that are referenced from BibTeX entries are\n placed. Default: ``Documents``.\n\n``name`` (optional)\n A title for the database (e.g., `Literature of the Optimization Research Group`).\n\n.. _journalstxt:\n\n``journals`` \n Name of the journals file. See `Journal Abbreviations`_. Default: ``journals.txt``.\n \n``publicLink`` (optional)\n URL of a web page containing an exported version of the database (see Exporting_). \n\nGUI\n===\n\n`BibTeX VCS` includes a graphical user interface (GUI), based on Qt_, that allows to perform the most\ncommont tasks without having to use the command line:\n\n- clone a database from a remote repository,\n- update the local checkout of a repository\n- viewing and editing journal abbreviations,\n- commiting changes into the remote repository, thereby running database checks,\n- open the BibTeX_ database with JabRef_,\n- :ref:`export ` the database to HTML using the default template,\n- open the public HTML export (if it exists). \n\nThe GUI is run by the ``btvcs`` command that is installed automatically with the package. Alternatively,\nyou can directly run the gui module by invoking::\n\n python -m bibtexvcs.gui\n \nThe GUI needs either PyQt5_, PyQt4_ or PySide_ for Python 3 to be installed.\n\nJournal Abbreviations\n=====================\nDepending on the publisher's demands, journal names in the references list should either be abbreviated\n(like in `J. Comput. Syst. Sci.`) or not (`Journal of Computer and Journal Sciences`). Since BibTeX does\nnot support specifying both versions in the same entry, a common workaround is the use of `macros`. In the\nBibTeX file, the ``journal`` entry is defined as a macro reference (say, `J_COM_SS`). Then, there are two\nadditional BibTeX files, one containing macro (string) definitions for the full, one for the abbreviated\njournal names. In your paper, you then include the main bibfile and the corresponding macro definition\nfile. That way, the version of journal names does not have to be specified in the shared database.\n\nIn order to ease handling of journal abbreviations, `BibTeX VCS` uses a simple :ref:`configuration file `\nthat contains, for each journal, an entry of the form::\n \n [MACRO_NAME]\n full = Full Journal Name\n abbr = Abbrev. J. Name\n\nThe GUI_ allows to conveniently edit journal macros in a table structure.\n\n`BibTeX VCS` then automatically generates the BibTeX files containing macro definitions for full and\nabbreviated journal names, respectively. They will be named like the main bibfile but augmented by ``_full``\nand ``_abbr``, respectively. \n\n.. _Exporting:\n\nExporting\n=========\nA `BibTeX VCS` database can be exported to HTML and other formats using the Jinja2_ templating engine.\nA default template creates a searchable HTML table containing, for each entry, the most common fields, \nplaces a link to the PDF document if that exists, and allows to view the raw BibTeX source for each entry.\nIf you upload the result to a public web space, the database can be used in read-only mode without having\naccess to the version control system, and without having to install the `BibTeX VCS` package.\n\n\n\n.. _BibTeX : http://www.bibtex.org\n.. _JabRef: http://jabref.sourceforge.net\n.. _Mercurial: http://mercurial.selenic.com\n.. _Jinja2: http://jinja.pocoo.org\n.. _Qt: http://qt-project.org\n.. _PyQt5: http://riverbankcomputing.com/software/pyqt/download5\n.. _PyQt4: http://riverbankcomputing.com/software/pyqt/download\n.. _PySide: http://qt-project.org/wiki/PySide \n.. _Python: http://www.python.org\n.. _pip: http://www.pip-installer.org", "description_content_type": null, "docs_url": "https://pythonhosted.org/bibtexvcs/", "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/supermihi/bibtevxcs", "keywords": "bibliography bibtex jabref", "license": "GPL3", "maintainer": null, "maintainer_email": null, "name": "bibtexvcs", "package_url": "https://pypi.org/project/bibtexvcs/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/bibtexvcs/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://github.com/supermihi/bibtevxcs" }, "release_url": "https://pypi.org/project/bibtexvcs/2015.16/", "requires_dist": null, "requires_python": null, "summary": "a Python package for managing a BibTeX database and related documents", "version": "2015.16" }, "last_serial": 1811490, "releases": { "2014.1": [ { "comment_text": "", "digests": { "md5": "0a384c796e20100ab9a52137c6e92d10", "sha256": "ac74ea95d8218648d09d4470332328ae90037439838d9bd658fca940605ae220" }, "downloads": -1, "filename": "bibtexvcs-2014.1.tar.gz", "has_sig": false, "md5_digest": "0a384c796e20100ab9a52137c6e92d10", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20264, "upload_time": "2014-03-14T10:40:45", "url": "https://files.pythonhosted.org/packages/6b/d1/dffcb0ea73762bd23c4038ff3237ece0e2087517e718dec751b1e207fc43/bibtexvcs-2014.1.tar.gz" } ], "2014.10": [ { "comment_text": "", "digests": { "md5": "08c69f812b9a7f005cb1e783e753cf34", "sha256": "8e0efde9edbb7459c85a5f1ea0e63ea6970835a0281e16b76133bd91838beb31" }, "downloads": -1, "filename": "bibtexvcs-2014.10.tar.gz", "has_sig": false, "md5_digest": "08c69f812b9a7f005cb1e783e753cf34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25282, "upload_time": "2014-03-19T10:07:51", "url": "https://files.pythonhosted.org/packages/49/aa/138ffc5b5428734e5db32b5a0278b70ed75c42cdb466d498403962353636/bibtexvcs-2014.10.tar.gz" } ], "2014.11": [ { "comment_text": "", "digests": { "md5": "054baee1d4ff40d3086b208dc5be7da6", "sha256": "0ecde0e10520cccd96108db21401b70dc6b4200401ac9f06d8343a3f16df7b4d" }, "downloads": -1, "filename": "bibtexvcs-2014.11.tar.gz", "has_sig": false, "md5_digest": "054baee1d4ff40d3086b208dc5be7da6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25296, "upload_time": "2014-03-19T10:15:59", "url": "https://files.pythonhosted.org/packages/2b/b9/37ce405f4993768d24f72733d43e502046dfa2bbcdd4a97600a71fc0c207/bibtexvcs-2014.11.tar.gz" } ], "2014.12": [ { "comment_text": "", "digests": { "md5": "36d588eb9dd10838c3561a89e706aa91", "sha256": "6db82f3f91a694c3651178c4cf95a4b46a89be860f018b9cd9ac67e8b56ecbc7" }, "downloads": -1, "filename": "bibtexvcs-2014.12.tar.gz", "has_sig": false, "md5_digest": "36d588eb9dd10838c3561a89e706aa91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25333, "upload_time": "2014-03-19T10:20:41", "url": "https://files.pythonhosted.org/packages/7e/7c/d9c816ea572974b94a5b2a70d17b4f1964d7824fc9839b9357a2f7cc0d1c/bibtexvcs-2014.12.tar.gz" } ], "2014.13": [ { "comment_text": "", "digests": { "md5": "675221770ed0275bcc15dc0f2515447a", "sha256": "246d2402ade01d5b19ea908de40732fce6f58a334e5592ca2f0fd1562219f0e3" }, "downloads": -1, "filename": "bibtexvcs-2014.13.tar.gz", "has_sig": false, "md5_digest": "675221770ed0275bcc15dc0f2515447a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25333, "upload_time": "2014-03-19T10:26:06", "url": "https://files.pythonhosted.org/packages/6a/3d/b39b1619b9357affd5834bb49073124a6f295a6954ff8a23f97da10d29e2/bibtexvcs-2014.13.tar.gz" } ], "2014.14": [ { "comment_text": "", "digests": { "md5": "ebd74e9cab7f0a75cf7cfc0ec6464e34", "sha256": "e1f5b36da7dc9abe822999d3e1c886666866d5e6baa08fed73717ed36936c9bc" }, "downloads": -1, "filename": "bibtexvcs-2014.14.tar.gz", "has_sig": false, "md5_digest": "ebd74e9cab7f0a75cf7cfc0ec6464e34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25218, "upload_time": "2014-03-19T11:04:00", "url": "https://files.pythonhosted.org/packages/8e/bf/eb6c9b33e644f9ff4b15ac10da8e8c4e549e00e16309b1027e7e48b01067/bibtexvcs-2014.14.tar.gz" } ], "2014.15": [ { "comment_text": "", "digests": { "md5": "65eff5a245b0d5a6ceb743afeb995245", "sha256": "d4bfba3238466408074d55dbc7737192ded9e9c07daf1e93609a9beb7c1c1f50" }, "downloads": -1, "filename": "bibtexvcs-2014.15.tar.gz", "has_sig": false, "md5_digest": "65eff5a245b0d5a6ceb743afeb995245", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26977, "upload_time": "2014-03-20T12:55:35", "url": "https://files.pythonhosted.org/packages/59/e2/0153fbd175e68f210113b9a38849e468ee2abc47e5557fb9972feec5054e/bibtexvcs-2014.15.tar.gz" } ], "2014.16": [ { "comment_text": "", "digests": { "md5": "7c0e1e9032c5886e8c452c72222dfe71", "sha256": "5da9e29c1453b60c7405c04e3f8291dad362a1b871756bf901ffc33d19215d70" }, "downloads": -1, "filename": "bibtexvcs-2014.16.tar.gz", "has_sig": false, "md5_digest": "7c0e1e9032c5886e8c452c72222dfe71", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27130, "upload_time": "2014-05-22T14:14:53", "url": "https://files.pythonhosted.org/packages/e6/ed/8859f0d464e76883b3b1a119115f43dd844ab5ac7d7b1e50f0e86d08c2e5/bibtexvcs-2014.16.tar.gz" } ], "2014.17": [ { "comment_text": "", "digests": { "md5": "54d786aea4b0ba66cea29e6e2940a062", "sha256": "a6fd74076ee7424b8b891a4bd21bbe951e9db8d962bc7d7a3a7819d0e1e69f1d" }, "downloads": -1, "filename": "bibtexvcs-2014.17.tar.gz", "has_sig": false, "md5_digest": "54d786aea4b0ba66cea29e6e2940a062", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27527, "upload_time": "2014-06-24T08:47:20", "url": "https://files.pythonhosted.org/packages/a7/cf/251d05a4b996f4085374583361d3a4787c2305a60dc081f0f346594920c3/bibtexvcs-2014.17.tar.gz" } ], "2014.18": [ { "comment_text": "", "digests": { "md5": "c6b95d80251991eac463301c3e27ddd3", "sha256": "0f1fbd58d04a616863af62d816ce665ef4145803654647b28dbbd6edcc0057cb" }, "downloads": -1, "filename": "bibtexvcs-2014.18.tar.gz", "has_sig": false, "md5_digest": "c6b95d80251991eac463301c3e27ddd3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27574, "upload_time": "2014-08-26T07:11:42", "url": "https://files.pythonhosted.org/packages/72/53/12f952de221592835d7ccea7c92378d72bf2ef9e46bf709cd2561f431a0d/bibtexvcs-2014.18.tar.gz" } ], "2014.2": [ { "comment_text": "", "digests": { "md5": "07ecea5b91203f486b6646c5fc71facc", "sha256": "7a9aa21e43f75cd37e7e31283d220c052c5c33e52c2d1710332272c44fe73bb9" }, "downloads": -1, "filename": "bibtexvcs-2014.2.tar.gz", "has_sig": false, "md5_digest": "07ecea5b91203f486b6646c5fc71facc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20858, "upload_time": "2014-03-14T12:50:08", "url": "https://files.pythonhosted.org/packages/73/5e/39ce1396c84dd085bcd8732b4ac163112e4a446368b5520ae966d96d8973/bibtexvcs-2014.2.tar.gz" } ], "2014.3": [ { "comment_text": "", "digests": { "md5": "07b4305224ea5e0d279f85440d402ddb", "sha256": "387e0fe85d4dfbbb40455922be1f4263ba6d66137912f35b8fe0ad399bd814af" }, "downloads": -1, "filename": "bibtexvcs-2014.3.tar.gz", "has_sig": false, "md5_digest": "07b4305224ea5e0d279f85440d402ddb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20952, "upload_time": "2014-03-14T13:18:18", "url": "https://files.pythonhosted.org/packages/ab/48/b1328c0b8d4dab32404948dca15bc32d6c522e1528584f7aed10723a0861/bibtexvcs-2014.3.tar.gz" } ], "2014.4": [ { "comment_text": "", "digests": { "md5": "a3be0bc238bb374913a29170ddd9bfa3", "sha256": "1f657dcf94e7655983906d719c9f56acf27e9840c453c972db9050974dccf621" }, "downloads": -1, "filename": "bibtexvcs-2014.4.tar.gz", "has_sig": false, "md5_digest": "a3be0bc238bb374913a29170ddd9bfa3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20992, "upload_time": "2014-03-14T13:46:56", "url": "https://files.pythonhosted.org/packages/a6/c5/1baffb1774c714f4244fab208eb364af85e62b48de5221bff8cad96b2247/bibtexvcs-2014.4.tar.gz" } ], "2014.5": [ { "comment_text": "", "digests": { "md5": "0344dcbb241a4c2139892cdfc4fe0f4f", "sha256": "6f4797d842f279caf6dd30d6ff1fb1d5466c5b5ba49b250e04d1bb33c9191f08" }, "downloads": -1, "filename": "bibtexvcs-2014.5.tar.gz", "has_sig": false, "md5_digest": "0344dcbb241a4c2139892cdfc4fe0f4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20962, "upload_time": "2014-03-14T13:53:22", "url": "https://files.pythonhosted.org/packages/ff/0e/b52585b132ce83c3dd9d9131148a91c9eb3f144a0f2924e340305ceda3b1/bibtexvcs-2014.5.tar.gz" } ], "2014.6": [ { "comment_text": "", "digests": { "md5": "5e110185e29fc6dbdccad7dc575b8b24", "sha256": "84697a213dc5677f48f406ba0a1e4197dffcf84f7f465ead2efb1fd915aa2fbe" }, "downloads": -1, "filename": "bibtexvcs-2014.6.tar.gz", "has_sig": false, "md5_digest": "5e110185e29fc6dbdccad7dc575b8b24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20925, "upload_time": "2014-03-14T13:56:41", "url": "https://files.pythonhosted.org/packages/0f/68/e4c886283f3dbf61e65bd482512f5552f84ccbf0c90d2a1e9dd37ee91c0b/bibtexvcs-2014.6.tar.gz" } ], "2014.7": [ { "comment_text": "", "digests": { "md5": "56c2381d85d87e6046beee9a3b1627d1", "sha256": "6762bfd399f8ee2a067dab6b571cf34c6b7e09558b431a9e5ce96a6076fa40cb" }, "downloads": -1, "filename": "bibtexvcs-2014.7.tar.gz", "has_sig": false, "md5_digest": "56c2381d85d87e6046beee9a3b1627d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20931, "upload_time": "2014-03-14T14:12:59", "url": "https://files.pythonhosted.org/packages/b3/7a/31927df3af8333d7bd0d97bc4f146e04d47a3c9d21f4576b1e550576b9ad/bibtexvcs-2014.7.tar.gz" } ], "2014.8": [ { "comment_text": "", "digests": { "md5": "d5a860ea70043d376a42c6a0b2dcc441", "sha256": "e14949d61e3e59e1b717dd147ae0cdb92995c790325a5b21a4c82049eb99c856" }, "downloads": -1, "filename": "bibtexvcs-2014.8.tar.gz", "has_sig": false, "md5_digest": "d5a860ea70043d376a42c6a0b2dcc441", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24455, "upload_time": "2014-03-17T11:04:50", "url": "https://files.pythonhosted.org/packages/de/8b/ead4873893a57d3c33dfd37d7a62fa61a892d6ea864b7aa1505f09f265f2/bibtexvcs-2014.8.tar.gz" } ], "2014.9": [ { "comment_text": "", "digests": { "md5": "20bd880726c5943b8e17b2d43c449ef4", "sha256": "a9210b50a307c1943729cb38ff80e9d8e72c92f895d377c86ed93e0d60d22b7d" }, "downloads": -1, "filename": "bibtexvcs-2014.9.tar.gz", "has_sig": false, "md5_digest": "20bd880726c5943b8e17b2d43c449ef4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24961, "upload_time": "2014-03-18T16:35:23", "url": "https://files.pythonhosted.org/packages/22/5e/fb813e3b601537bb92da5d1bbad4c5b2449a16eb752769d547013c153105/bibtexvcs-2014.9.tar.gz" } ], "2015.1": [ { "comment_text": "", "digests": { "md5": "f258180d7c00fd2450588d896eaac81a", "sha256": "9a91b34fc1e34be72b71bb7a696e3f9b94dc6c0de21a056674c8560c21e482cf" }, "downloads": -1, "filename": "bibtexvcs-2015.1.tar.gz", "has_sig": false, "md5_digest": "f258180d7c00fd2450588d896eaac81a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28371, "upload_time": "2015-05-20T08:16:00", "url": "https://files.pythonhosted.org/packages/c8/85/c83a86f4a65eaff37d4e5b462fcb3a4cdfaad231abc0ec5f8e0af5008884/bibtexvcs-2015.1.tar.gz" } ], "2015.10": [ { "comment_text": "", "digests": { "md5": "8f5c3d215718e13b9d33bff0bf86528d", "sha256": "3e0c5d4f256ab3c6330d46f1a89042ebd8f4096ad2de95979c101638676c2ae8" }, "downloads": -1, "filename": "bibtexvcs-2015.10.tar.gz", "has_sig": false, "md5_digest": "8f5c3d215718e13b9d33bff0bf86528d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32289, "upload_time": "2015-10-21T13:40:10", "url": "https://files.pythonhosted.org/packages/84/b2/af3395c19adad7f99227cb0df30e149c2d59efad942191086f55d210613c/bibtexvcs-2015.10.tar.gz" } ], "2015.11": [ { "comment_text": "", "digests": { "md5": "bbbccad86eafb9953390f0869680db62", "sha256": "578e1448d4ed97b91880910787a4c79238705d4d61eb3baecb3498d06facd496" }, "downloads": -1, "filename": "bibtexvcs-2015.11.tar.gz", "has_sig": false, "md5_digest": "bbbccad86eafb9953390f0869680db62", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32283, "upload_time": "2015-10-21T13:42:34", "url": "https://files.pythonhosted.org/packages/41/4c/e638a00b93ee0fbdb18b7933fe0833a177ca4f2f1f12d9b03bd9b4b929a7/bibtexvcs-2015.11.tar.gz" } ], "2015.12": [ { "comment_text": "", "digests": { "md5": "9a6297382e8f0cbd232fdedf41bcef57", "sha256": "3593f28dd1f89b83c872cba8f834177d6e4c5c674456cd324f892b94a7926e3d" }, "downloads": -1, "filename": "bibtexvcs-2015.12.tar.gz", "has_sig": false, "md5_digest": "9a6297382e8f0cbd232fdedf41bcef57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32292, "upload_time": "2015-10-21T13:50:49", "url": "https://files.pythonhosted.org/packages/c3/77/ba0e527adb9521f1cadd36cc707b179eef0cf07015879a4063dd6bb6b8fb/bibtexvcs-2015.12.tar.gz" } ], "2015.14": [], "2015.16": [ { "comment_text": "", "digests": { "md5": "29758c5ffe96a8571051366786092823", "sha256": "c7d93e978fbe120311f481c771ca60b3e560144310fef73c4271c214a5457725" }, "downloads": -1, "filename": "bibtexvcs-2015.16.zip", "has_sig": false, "md5_digest": "29758c5ffe96a8571051366786092823", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46666, "upload_time": "2015-11-11T13:26:26", "url": "https://files.pythonhosted.org/packages/81/68/8b698151de95c1fa136211a039d559f20f2f352080dc277497b38e2dded5/bibtexvcs-2015.16.zip" } ], "2015.2": [ { "comment_text": "", "digests": { "md5": "e93c3d215d10cd32ba5addbbf9e749f3", "sha256": "e8da0879eb446df28736b9887efe1e11411d88e39cc09209482255147e53bcf4" }, "downloads": -1, "filename": "bibtexvcs-2015.2.tar.gz", "has_sig": false, "md5_digest": "e93c3d215d10cd32ba5addbbf9e749f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28363, "upload_time": "2015-05-21T08:17:10", "url": "https://files.pythonhosted.org/packages/51/c5/55f686b90b50b7d7ae1462501f2e768980576bd3a85a4f8d74ebff20da33/bibtexvcs-2015.2.tar.gz" } ], "2015.3": [ { "comment_text": "", "digests": { "md5": "619b424b31da23511d77626808e47bd1", "sha256": "f1096a14cfb15c268470c2d3abc20cebe29cba269a5ecd06ca97eeb943d88f63" }, "downloads": -1, "filename": "bibtexvcs-2015.3.tar.gz", "has_sig": false, "md5_digest": "619b424b31da23511d77626808e47bd1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28533, "upload_time": "2015-09-01T11:00:14", "url": "https://files.pythonhosted.org/packages/c6/8b/d5cbc399c773e16ebc85d67ac048632f3cda01488adf185509dea9e7f699/bibtexvcs-2015.3.tar.gz" } ], "2015.4": [ { "comment_text": "", "digests": { "md5": "af2871423615366eeb882ad2f4ea1873", "sha256": "4405fc25e6836c197863d85d86e322bb6859c9277050f67c6ff986ea37478a28" }, "downloads": -1, "filename": "bibtexvcs-2015.4.tar.gz", "has_sig": false, "md5_digest": "af2871423615366eeb882ad2f4ea1873", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32100, "upload_time": "2015-10-19T13:31:29", "url": "https://files.pythonhosted.org/packages/e6/b8/649962af31ea0e6cf0bedc4e27574e923319a3a26cfc0bde479fd4dfc5a3/bibtexvcs-2015.4.tar.gz" } ], "2015.5": [ { "comment_text": "", "digests": { "md5": "38269b73efba8e813a14d3a964f71796", "sha256": "46bb5d9fe652a4d723e2bad2b7c2c7acb3d05735ca6b80850fbefacd665d3341" }, "downloads": -1, "filename": "bibtexvcs-2015.5.tar.gz", "has_sig": false, "md5_digest": "38269b73efba8e813a14d3a964f71796", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32095, "upload_time": "2015-10-20T13:46:45", "url": "https://files.pythonhosted.org/packages/8b/53/2a62ed213a328c5e3e95b5572d058bbc066ead7bdc5cdf8a4669d4abac10/bibtexvcs-2015.5.tar.gz" } ], "2015.6": [ { "comment_text": "", "digests": { "md5": "a61fbac37db62c07acaea5f740f75d92", "sha256": "ea05191a94a9b01d7fe5de4e33029b2a67ed5e6451d2ab097f41d5083e75a6c6" }, "downloads": -1, "filename": "bibtexvcs-2015.6.tar.gz", "has_sig": false, "md5_digest": "a61fbac37db62c07acaea5f740f75d92", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32180, "upload_time": "2015-10-20T13:52:39", "url": "https://files.pythonhosted.org/packages/52/ea/0eec06fc5d3cc4a1abca2a139498d97644b5b157d4ac522aa1be3410fd82/bibtexvcs-2015.6.tar.gz" } ], "2015.7": [ { "comment_text": "", "digests": { "md5": "5afce77d50e21f850fa1c03218b1eb0f", "sha256": "6083ce6078262d995385127757586feac80c76809ba9482f5f5b31257bb5ef4e" }, "downloads": -1, "filename": "bibtexvcs-2015.7.tar.gz", "has_sig": false, "md5_digest": "5afce77d50e21f850fa1c03218b1eb0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32248, "upload_time": "2015-10-21T13:20:46", "url": "https://files.pythonhosted.org/packages/f0/d1/9bfe4827267511eddc159b2f4f463b48fc690cfbe2b626c465ac09eccf68/bibtexvcs-2015.7.tar.gz" } ], "2015.8": [ { "comment_text": "", "digests": { "md5": "c477ba2089f76734a11a9663334321e4", "sha256": "c00550c58e22943191e2c2b89e671dffa436a511a87bbddf2a5543c516127e5b" }, "downloads": -1, "filename": "bibtexvcs-2015.8.tar.gz", "has_sig": false, "md5_digest": "c477ba2089f76734a11a9663334321e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32315, "upload_time": "2015-10-21T13:29:37", "url": "https://files.pythonhosted.org/packages/a0/4e/027d00423ede3984c28f2e7a4948d26668cebb73ee46ff9fd5f4b86e9810/bibtexvcs-2015.8.tar.gz" } ], "2015.9": [ { "comment_text": "", "digests": { "md5": "598332bd1f71ae61ae6956fb546fbe16", "sha256": "d823a8f55be267e0c96b99bcbf388b89b88bfb36a3b0fe24556ff1a549d820fb" }, "downloads": -1, "filename": "bibtexvcs-2015.9.tar.gz", "has_sig": false, "md5_digest": "598332bd1f71ae61ae6956fb546fbe16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32310, "upload_time": "2015-10-21T13:31:44", "url": "https://files.pythonhosted.org/packages/6e/3c/822e7c0f1038e2a54e5df65a79674d3281c51ef53bbed928edf238eaadab/bibtexvcs-2015.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "29758c5ffe96a8571051366786092823", "sha256": "c7d93e978fbe120311f481c771ca60b3e560144310fef73c4271c214a5457725" }, "downloads": -1, "filename": "bibtexvcs-2015.16.zip", "has_sig": false, "md5_digest": "29758c5ffe96a8571051366786092823", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46666, "upload_time": "2015-11-11T13:26:26", "url": "https://files.pythonhosted.org/packages/81/68/8b698151de95c1fa136211a039d559f20f2f352080dc277497b38e2dded5/bibtexvcs-2015.16.zip" } ] }