• Stars
    star
    254
  • Rank 160,264 (Top 4 %)
  • Language
    Python
  • Created almost 11 years ago
  • Updated over 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Ruby like string interpolation #{} in Python

Interpy = Python String Interpolation

Interpy extends Python to support Ruby like string interpolation #{}. Quick example: print "Hello #{your_name}"

It is highly optimized, and directly compiled to bytecode, so you will have the same Python speed when using it.

Installation

The installation of this package is quite simple, you only have to run pip install interpy.

Usage

All python files with string interpolation must have the following first line

# coding: interpy

Example:

# coding: interpy

package = "Interpy"
print "Enjoy #{package}!"

How it works

This package is inspired by Dropbox's pyxl template engine.

Parsing

Interpy uses support for specifying source code encodings as described in PEP 263 to do what it does. The functionality was originally provided so that python developers could write code in non-ascii languages (eg. chinese variable names). Interpy creates a custom encoding called interpy which allows it to convert interpolated strings into regular python before the file is compiled. Once the interpy codec is registered, any file starting with # coding: interpy is run through the interpy parser before compilation.

Compiling

The above example would be compiled to this (in bytecode):

# coding: interpy

package = "Interpy"
print "Enjoy "+str(package)+"!"

Compatibility

This package is fully compatible with Python 2+, Python 3+ and PyPy

Why?

I really enjoyed Ruby String interpolation, and "".format(...) or "" % (...) seems very verbose to me. I'm lazy by nature ;)

More Repositories

1

gdom

DOM Traversing and Scraping using GraphQL
Python
1,240
star
2

pyjade

Jade template system for Django, Jinja2 and Mako
Python
696
star
3

Flask-SuperAdmin

The best admin interface framework for Flask. With scaffolding for MongoEngine, Django and SQLAlchemy.
Python
635
star
4

validate_email

Validate_email verify if an email address is valid and really exists
Python
544
star
5

snapshottest

Snapshot Testing utils for Python ๐Ÿ“ธ
Python
529
star
6

react-native-refresher

A pull to refresh ListView for React Native completely written in js.
JavaScript
453
star
7

promise

Ultra-performant Promise implementation in Python
Python
352
star
8

aiodataloader

Asyncio DataLoader for Python3
Python
270
star
9

fastdiff

A fast native implementation of diff algorithm with a pure Python fallback
Python
37
star
10

jsjinja

Jinja2 to Javascript template converter. Now you can render your Jinja2 templates on the client side! ;)
Python
33
star
11

Djinja

(Deprecated) A package that makes possible the integration of Jinja2 in Django, in a clean way.
Python
20
star
12

Webclient-Kohana

Kohana Utilities
PHP
8
star
13

syrusakbary.com

My personal webpage
CSS
6
star
14

django-processorfield

A powerful filefield for Django with multiple processor outputs
Python
5
star
15

PlagiarismDetector-PHP

A Plagiarism Detector system made in PHP
PHP
4
star
16

graphqlprimer

Graphene Twitter Streams Demo for the presentation at Primer.ai
Python
3
star
17

eXercita

Python
3
star
18

flask-beaker

Beaker session interface for Flask.
Python
3
star
19

wasmer-vs-docker

Wasmer vs Docker
Makefile
3
star
20

netlify-wasmer

Netlify wasmer example
2
star
21

Animotion-Java

An animation framework for java. Supports transitions and much more!
2
star
22

assetsy

A vitaminated way to minify, combine and optimize your web resources
Python
1
star
23

gulp-jade-mixins

Jade mixins js-generator plugin for Gulp
JavaScript
1
star
24

PlagiarismDetector_Block-Moodle

The PlagiarismDetector Block for Moodle
1
star
25

RobotExploration-Java

A Robot Interface
Java
1
star
26

wasi-tests

Shell
1
star
27

wasmer_rust_playground

Playground for the Wasmer Rust Integration
Rust
1
star
28

django-vagrant-base

Automatically deploy Django site locally with Vagrant
Ruby
1
star
29

PlagiarismDetector_Mod-Moodle

The PlagiarismDetector platform for Moodle
PHP
1
star
30

FuzzyUppaal-Java

An implementation of the Uppaal modeling system for the support of fuzzy logic.
Java
1
star
31

tuentify

Te avisa al instante de tus notificaciones pendientes en Tuenti y agiliza la carga de la pรกgina.
JavaScript
1
star