Get Revision Numbering information

Hello to every one,
I am trying to get simple information within a pyRevit script, using the Revit API.
I would like to access the Numbering set in the project. For example in the case of the following image I want to have (“Per Sheet”) as output.

I took a look in the Revit API doc, I found some classes that I think can do the trick, but I don’t know what I am doing wrong. Can someone help me, please?

Hi @FilippoVittori
you could use this method from the module pyrevit\revit\db\query
get_rev_number(revision, sheet=None)

2 Likes

print(DB.RevisionSettings.GetRevisionSettings(doc).RevisionNumbering)

It worked, Thank you!!