Get unused name

From PyMOLWiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

get_unused_name is an API only function that returns a new object name.

New in PyMOL version 1.2

PyMOL API

cmd.get_unused_name(string prefix='tmp', int alwaysnumber=1)

Example

This will create objects "tmp01", "tmp02", "tmp03":

cmd.create(cmd.get_unused_name(), 'none')
cmd.create(cmd.get_unused_name(), 'none')
cmd.create(cmd.get_unused_name(), 'none')

See also