Metadata-Version: 2.1
Name: ftoml
Version: 0.0.1
Summary: Python library unifying f-strings with Tom's Obvious, Minimal Language
Home-page: https://github.com/schuellerf/ftoml
Author: Florian Schüller
Author-email: florian.schueller@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Requires-Python: >=2.6, !=3.0.*, !=3.1.*, !=3.2.*
Requires-Dist: astroid
Requires-Dist: fstring
Requires-Dist: toml

*****
FTOML
*****

Extends the python module *toml* with the python library *fstring*

See the test-files for some examples

you can do things like::

    base_url="https://example.com"

    [module1]
    url="{base_url}/path1.html"

    [module2]
    url="{base_url}/path2.html"


... and many things more


