Open kartogishenko opened 5 years ago
What version of arcpy are you using? Can you post your full code sample to reproduce along with dataset?
I am on ArcMap 10.5.1 and Python 2.7 running in virtual environment with arcpy support. The script is simply
import arcpy
import hermes
from hermes import Paperwork
fc = r"c:\Temp\metatest.gdb\Test2"
pw = Paperwork(dataset=fc)
print pw.convert()
The data is generic, a sample FGDB with a Point layer created in ArcCatalog. I have allso tried a shapefile containg polylines metatest.gdb.zip
@kartogishenko I just tested the dataset using 10.5.1 of ArcMap as follows:
import hermes
pw = hermes.Paperwork(dataset=r"C:\test_data\metatest.gdb\Testset\Test1")
print pw.convert()
The metadata showed.
I was able to view the metdata for the Test2 dataset as well.
I get a bunch of errors trying to replicate you User Reader example saying:
What am I missing? I have imported arcpy, hermes and from hermes imported Paperwork