Subversion のドキュメントには、Python から Subversion を使用する例があります。
#!/usr/bin/python
import svn.fs, svn.core, svn.repos
def crawl_filesystem_dir(root, directory):
"""Recursively crawl DIRECTORY under ROOT in the filesystem, and return a list of all the paths at or below DIRECTORY."""
# Get the directory entries for DIRECTORY.
entries = svn.fs.svn_fs_dir_entries(root, directory)
このコードを実行すると、インポート エラーが発生します。
$ python crawl.py
Traceback (most recent call last):
File "crawl.py", line 7, in <module>
import svn.fs, svn.core, svn.repos
ImportError: No module named svn.fs
これは、ライブラリが不足していることを意味しますsvn
。パッケージをインストールしようとしましたが、Python パッケージ マネージャーが見つかりません。
$ pip install svn
Downloading/unpacking svn
Could not find any downloads that satisfy the requirement svn
No distributions at all found for svn
では、このライブラリをインストールするにはどうすればよいですか?