New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

pyformat

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pyformat

Simple Python-style string formatting for JS

latest
Source
npmnpm
Version
1.0.0-0
Version published
Maintainers
1
Created
Source

pyformat

Simple Python-style string formatting for JS

This implements a simple subset of the Python string.format method capabilities. The idea is that you can share a format string between JS and Python.

Installation

npm install pyformat

Usage

var pyformat = require('pyformat')
pyformat(format_string ,args ,kwargs)

format_string is a string with {} substitution blocks, either bare, indexed, or by keyword. args is an array used for indexed substitution. kwargs is an object used for keyword substitution.

The method throws no errors, since this is javascript.

Examples:

console.log(pyformat( 'The {} {} jumped over the {}'
                    , ['brown' ,'fox' ,'foobar']
                    ))
console.log(pyformat( 'The {0} {1} jumped over the {1}'
                    , ['brown' ,'fox' ,'foobar']
                    ))
console.log(pyformat('The {color} {animal} jumped over the {thing}'
                    , [] ,{color: 'brown' ,animal: 'fox' ,thing: 'foobaz'}
                    ))

License

MIT License

Keywords

python

FAQs

Package last updated on 22 Jun 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts