diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2005-08-05 09:09:57 +0000 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2005-08-05 09:09:57 +0000 |
| commit | f3899ebe6f019defa87ceb10f704bccd64948d30 (patch) | |
| tree | e289cf181cb652cf54cb4087f5e57aefc8953671 /apt/README.apt | |
| parent | 2df9d3b54b997286da17564c17a46b5a444eda8b (diff) | |
| download | python-apt-f3899ebe6f019defa87ceb10f704bccd64948d30.tar.gz | |
* FutureWarning is added, example how to filter it away too. README.apt added
Diffstat (limited to 'apt/README.apt')
| -rw-r--r-- | apt/README.apt | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/apt/README.apt b/apt/README.apt new file mode 100644 index 00000000..bba91e7c --- /dev/null +++ b/apt/README.apt @@ -0,0 +1,21 @@ +In addition to "apt_pkg" and "apt_inst" (that are thin wrappers around +the c++ libapt code) a new python module "apt" is provided since version +0.6.13 of python-apt. + +It is a more python like interface to work with libapt (it uses apt_pkg +internally). Also there are already applications written against the new +apt python interface the API may change in the future and should not be +considered stable. If in doubt, please contact deity@lists.debian.org. + +WARNING !!! The API is not 100% stable yet !!! + + +Style Guides: +------------- + +Follow PEP08. + +Internal variables/methods are prefixed with a "_" (e.g. _foo). + + + |
