]> git.phdru.name Git - m_lib.git/blob - README.txt
Version 2.0. Copyright (C) 1996-2013.
[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 flog.py - simple file logger.
10
11 lazy/ - lazy evaluation modules - lazy dictionary and lazy import.
12
13 mcrypt.py - crypt module supplement function gen_salt().
14
15 metaclasses.py - borrowed from Michele Simionato (mis6@pitt.edu)
16    to solve "TypeError: metatype conflict among bases".
17
18 md5wrapper.py - just an MD5 wrapper.
19
20 m_path.py - simple convenient get_homedir().
21
22 m_shutil.py - additional shell utilities (currently only mkhier
23    function).
24
25 net/ftp/ - modules related to FTP - ftpparse (pure-python parser of LIST
26    command output) and ftpscan - recursive scanner of FTP directories.
27
28 net/sms.py - Send SMS to subscribers of Moscow operators (Beeline, MTS,
29    Megafone) using their Web or SMTP gateways.
30
31 net/www/ - modules related to Web/HTTP/HTML/XML/DTML/etc.
32
33 opdate.py - additional date/time manipulation routines
34    In this module Date is a number of days since 1/1/1600 (up to 31 Dec 3999)
35    I am not sure about how easy it might be to extend the modules beyond
36    these bounds. Time is just a number of seconds since midnight. User can
37    add/subtract dates and times, calculate diffs ("how many days, months
38    and years passed since 21 Dec 1967?") and so on. DateTime <==> UTC (GMT)
39    conversion routines provided, too.
40    This module required flognat's strptime.py.
41
42 opstring.py - additional string manipulation routines
43    (character padding, encoding conversions).
44
45 rus/ - work with russian cyrillic - convert text to/from translit.
46
47 tty_menu.py - extremely dumb text-mode menues.