rfc-bibtex icon indicating copy to clipboard operation
rfc-bibtex copied to clipboard

A command line tool that creates bibtex entries for IETF RFCs and Internet Drafts.

Results 9 rfc-bibtex issues
Sort by recently updated
recently updated
newest added

Bumps [pyyaml](https://github.com/yaml/pyyaml) from 5.1 to 5.4. Changelog Sourced from pyyaml's changelog. 5.4 (2021-01-19) yaml/pyyaml#407 -- Build modernization, remove distutils, fix metadata, build wheels, CI to GHA yaml/pyyaml#472 -- Fix for...

dependencies

Add a progress bar with a percentage counter. The bar should be cleaned at the end of the run, so that only the the output bibtex remains.

Have been working on writing some basic integration tests to merge the feature of parsing RFCs directly from `.tex` and `.aux` files and it's apparent that the code needs **major**...

Add a command-line option for sorting the RFC and Draft IDs in the output BibTex. Functionality originally suggested (provided as an implementation) by @simsong

This was initially written as a script for a very specific use case. There are, however, other people using it and some new functionality is being added. For this reason,...

Currently, the tool will fail to run from the command-line in Windows. This is because the command-line functionality is based on shebangs, which do not work on Windows `#!/usr/bin/env python3`

good first issue

The utils.print_x functions take a `file` argument that was not used in their implementation. This lead to errors and warnings being printed to stdout instead of stderr. Fixes #33

The [README](https://github.com/iluxonchik/rfc-bibtex/blob/84bca572bbbe9a65ccb5ee1acd84d1b9f09f97d5/README.md?plain=1#L391-L393) says > Errors and warnings are only printed on the console (into the standard error output stream) However, this is not the case. For example, https://github.com/iluxonchik/rfc-bibtex/blob/84bca572bbbe9a65ccb5ee1acd84d1b9f09f97d5/rfc_bibtex/rfc_bibtex.py#L127-L129 seems to...