This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python2.6 | |
| from AddressBook import * | |
| import pprint | |
| def addressBookToList(): | |
| """ | |
| Read the current user's AddressBook database, converting each person | |
| in the address book into a Dictionary of values. Some values (addresses, | |
| phone numbers, email, etc) can have multiple values, in which case a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python2.6 | |
| from AddressBook import * | |
| import pprint | |
| def addressBookToList(): | |
| """ | |
| Read the current user's AddressBook database, converting each person | |
| in the address book into a Dictionary of values. Some values (addresses, | |
| phone numbers, email, etc) can have multiple values, in which case a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get install build-essential libsqlite3-dev zlib1g-dev libncurses5-dev libgdbm-dev libbz2-dev libreadline5-dev libssl-dev libdb-dev | |
| wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tgz | |
| tar -xzf Python-2.7.3.tgz | |
| cd Python-2.7.3 | |
| ./configure --prefix=/usr --enable-shared | |
| make | |
| sudo make install | |
| cd .. |
NewerOlder