File: README

package info (click to toggle)
python-reportlab 1.20debian-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 6,068 kB
  • ctags: 5,801
  • sloc: python: 53,293; xml: 1,494; makefile: 85
file content (25 lines) | stat: -rw-r--r-- 791 bytes parent folder | download | duplicates (5)
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
This directory is intended to act as a placeholder for extending ReportLab
with extra extensions. It has been packagised with an empty __init__.py.

So a typical extender should add his package extension as

    reportlab/extensions/great_extension/__init__.py
                                        /dingo.py
                                        /etc etc

and single modules as

    reportlab/extensions/my_module.py

Then client code can do

    from reportlab.extensions.great_extension import dingo

if you extend with just a single module it might be simpler to add that
into extensions so that you could do

    from reportlab.extensions import my_module.


ReportLab can take no responsibility for name clashes and problems caused by
modules and packages in reportlab/extensions.