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