Thank you dserrano5, thank you the third guy who donated to the pywallet address, and thanks to anybody who ever donated to my address

The two features I've been testing in the last version seems to work now.
They are:
- Creating a watch-only clone of a wallet
- Deleted wallets recovery (encrypted+unencrypted wallet, on Linux+Windows)
That would be nice if some people can confirm they work. Even if you can test only one.
Last version:
2.1.0b13
Creating a watch-only clone of a walletShort version:
Backup your wallet
Then
python pywallet_2.1.0b13.py --clone_watchonly_from /path/to/wallet/wallet.dat --clone_watchonly_to /path/to/clone/wallet.watching.dat
Long version:
DeathAndTaxes' thread:
https://bitcointalk.org/index.php?topic=257891.0
Deleted wallets recovery (encrypted+unencrypted wallet, on Linux+Windows)Pywallet will go through these steps:
1. read every byte on the disk to look for keys (sloooooooooow, ~600Mo/min)
2. create a partial file (in outputdir) so that if you forgot a passphrase but remember it later you don't have to go through step 1 again
3. test all the passphrases for the most possible (encrypted private key / encryption parameters) pairs
4. if there are some private keys still not decrypted, YOU chose whether or not you want to test all passphrase with all encryption parameters with all undecrypted private keys
Note that recov_size must be higher than the size of recov_device and that recov_outputdir must exist
Usage examples for Linux and Windows:
python pywallet_2.1.0b13.py --recover --recov_device /dev/sda --recov_size 30Gio --recov_outputdir /home/jackjack
python pywallet_2.1.0b13.py --recover --recov_device c: --recov_size 30Gio --recov_outputdir c:\recoveredwalletsfolder
Usable units:
ko kio kB kiB Mo Mio MB MiB Go Gio GB GiB
PS: to use a partial recovery file, the command is the following (notice --recov_device):
python pywallet_2.1.0b13.py --recover --recov_device=PartialRecoveryFile:./pywallet_partial_recovery_1374430501.dat --recov_outputdir c:\recoveredwalletsfolder --recov_size 30Gio