This file is indexed.

/usr/share/doc/python-pyvtk/README.txt is in python-pyvtk 0.4.74-3.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
                         PyVTK
    "Collection of tools for manipulating VTK files in Python"
                          by
                     Pearu Peterson

http://cens.ioc.ee/projects/pyvtk/

INTRODUCTION
------------

     PyVTK provides tools for manipulating VTK files in Python:

     VtkData - Create VTK file from Python objects. It fully
         supports VTK File Formats Standard 2.0. The features
	 includes:
           *** ascii and binary output, ascii input
           *** DataSet formats:
                 StructuredPoints, StructuredGrid, RectilinearGrid,
                 PolyData, UnstructuredGrid
           *** Data formats:
                 PointData, CellData
           *** DataSetAttr formats:
                 Scalars, ColorScalars, LookupTable, Vectors, 
                 Normals, TextureCoordinates, Tensors, Field

LICENSE
-------

     GNU LGPL (see http://www.fsf.org)

REQUIREMENTS
------------

     Python  - pyvtk is developed under Python 2.1. But it is tested
               to work also under Python 2.0 and Python 1.5.2.
               In future, Python 1.5 will be supported only if one
               asks for it.

BUILDING and INSTALLING
-----------------------

     Python 2.x users, execute
         python setup.py install

     Python 1.x users, execute
         make install

USAGE
-----
     >>> import pyvtk

     To learn how to use pyvtk.VtkData, see examples in examples/ directory.
     For reference, execute

         pydoc pyvtk.VtkData

     or in Python:
 
     >>> from pydoc import help
     >>> help(pyvtk.VtkData)


--- Pearu Peterson, 21 May 2001
    <pearu@cens.ioc.ee>