An open API service indexing awesome lists of open source software.

https://github.com/enthought/enstaller4rc

Small, self-contained library to parse legacy `.enstaller4rc` content without depending on enstaller
https://github.com/enthought/enstaller4rc

Last synced: 8 months ago
JSON representation

Small, self-contained library to parse legacy `.enstaller4rc` content without depending on enstaller

Awesome Lists containing this project

README

          

.. image:: https://travis-ci.org/enthought/enstaller4rc.png
:target: https://travis-ci.org/enthought/enstaller4rc

This is a small library to read an existing `.enstaller4rc` file without
importing enstaller.

This supports `.enstaller4rc` from the 4.6.X series until 4.8.X. It only
supports parsing configuration, and purposedly does not support modifying it.

Example::

from enstaller4rc import Configuration

config = Configuration.from_file(".enstaller4rc")
print(config.auth)
print(config.use_pypi)
print(config.indexed_repositories)