Giter Club home page Giter Club logo

tagstr's Introduction

TagStr

Tagged template literals for Python.

This project seeks to implement an early stage PEP for adding "tag strings", also known as tagged template literals, using import hooks. Tag strings, are a natural extension of f-strings which enable Python developers to create custom string interpolation logic.

Installation

$ pip install tagstr

At a Glance

Here's a simple hello world example:

# tagstr: on
name = "world"
print @ f"Hello, {name!r}!"

In the code above, print is knows as a "tag function", @ is the "tag operator", f"Hello, {name!r}!" is the "tag string", and name is one of its interpolated values:

print @ f"Hello, {name!r}!"
# │   │  │         └── interpolated value
# │   │  │
# │   |  └── tag string
# │   │
# │   └── tag operator
# │
# └── tag function

When run, the example above prints:

Hello,  (<function <lambda> at 0x7f918e063380>, 'name', 'r', None) !

This happens because tagstr sees the tagstr: on comment and rewrites it as:

# tagstr: on
name = "world"
print("Hello, ", (lambda: name, "name", "r", None), "!")

Not that the tag function (in this case print) gains access to the original string as well as a tuple with information about the interpolated {name!r} called a "thunk". In particular, this thunk contains a lambda for lazily retrieving that value.

Examples

While the example above isn't especially useful,

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.