Go to file
Virgil Dupras a8dbb1ac63 Renamed CHANGES --> CHANGES.rst
And fixed setup.py which was broken since README rename.
2013-07-19 18:23:00 -04:00
send2trash Check access and devices before attempting trash. 2011-03-13 14:40:52 -04:00
.gitignore Converted to git. 2013-07-19 18:12:18 -04:00
CHANGES.rst Renamed CHANGES --> CHANGES.rst 2013-07-19 18:23:00 -04:00
LICENSE Licensed under BSD. 2010-04-07 08:52:24 +02:00
MANIFEST.in Adjusted packaging metadata for 1.1.0. 2010-10-18 12:22:13 +02:00
README.rst Updated repo URL to point to GH. 2013-07-19 18:18:16 -04:00
setup.py Renamed CHANGES --> CHANGES.rst 2013-07-19 18:23:00 -04:00
test_plat_other.py Modification to symlink test case (that will actually fail when it should -- find_mount_point using abspath instead of realpath.) 2011-03-13 15:35:14 -04:00

README.rst

==================================================
Send2Trash -- Send files to trash on all platforms
==================================================

This is a Python 3 package. The Python 2 package is at http://pypi.python.org/pypi/Send2Trash .

Send2Trash is a small package that sends files to the Trash (or Recycle Bin) *natively* and on
*all platforms*. On OS X, it uses native ``FSMoveObjectToTrashSync`` Cocoa calls, on Windows, it uses native (and ugly) ``SHFileOperation`` win32 calls. On other platforms, it follows the trash specifications from freedesktop.org.

``ctypes`` is used to access native libraries, so no compilation is necessary.

Installation
------------

Download the source from http://github.com/hsoft/send2trash and install it with::

>>> python setup.py install

Usage
-----

>>> from send2trash import send2trash
>>> send2trash('some_file')

When there's a problem ``OSError`` is raised.