]> git.phdru.name Git - m_lib.git/blob - README.txt
9e54dc87a8b5bfc35cd5eea81c6eeccfee1029f8
[m_lib.git] / README.txt
1 Broytman Library for Python, Copyright (C) 1996-2013 PhiloSoft Design
2 Author: Oleg Broytman <phd@phdru.name>
3 License: GPL
4
5 Content of the library:
6
7 defenc.py - get default encoding.
8
9 flad/ - Flat ASCII Database. See README-flad.txt.
10
11 flog.py - simple file logger.
12
13 hash/ - extended disk hashes package. It extends anydbm/whichdb with ZODB and
14    MetaKit-based hashes.
15
16 lazy/ - lazy evaluation modules - lazy dictionary and lazy import.
17
18 mcrypt.py - crypt module supplement function gen_salt().
19
20 metaclasses.py - borrowed from Michele Simionato (mis6@pitt.edu)
21    to solve "TypeError: metatype conflict among bases".
22
23 md5wrapper.py - just an MD5 wrapper.
24
25 m_path.py - simple convenient get_homedir().
26
27 m_shutil.py - additional shell utilities (currently only mkhier
28    function).
29
30 net/ftp/ - modules related to FTP - ftpparse (pure-python parser of LIST
31    command output) and ftpscan - recursive scanner of FTP directories.
32
33 net/sms.py - Send SMS to subscribers of Moscow operators (Beeline, MTS,
34    Megafone) using their Web or SMTP gateways.
35
36 net/www/ - modules related to Web/HTTP/HTML/XML/DTML/etc.
37
38 opdate.py - additional date/time manipulation routines
39    In this module Date is a number of days since 1/1/1600 (up to 31 Dec 3999)
40    I am not sure about how easy it might be to extend the modules beyond
41    these bounds. Time is just a number of seconds since midnight. User can
42    add/subtract dates and times, calculate diffs ("how many days, months
43    and years passed since 21 Dec 1967?") and so on. DateTime <==> UTC (GMT)
44    conversion routines provided, too.
45    This module required flognat's strptime.py.
46
47 opstring.py - additional string manipulation routines
48    (character padding, encoding conversions).
49
50 pbar/ - progress bar for tty.
51
52 rus/ - work with russian cyrillic - convert text to/from translit.
53
54 tty_menu.py - extremely dumb text-mode menus.