使用python编写FastDFS客户端进行上传测试
https://github.com/JaceHo/fdfs_client-py
进入fdfs_client-py-master.zip所在目录
依赖包
mutagenl
requests
以下是在windows系统下需要修改否则无法安装
修改 fdfs_client-py-master.zip 中setup.py文 33 、34代码注释
#!/usr/bin/env python
import os
from fdfs_client import __version__
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
f = open(os.path.join(os.path.dirname(__file__), 'README.md'))
long_description = f.read()
f.close()
sdict = {
'name': 'fdfs_client-py',
'version': __version__,
'description': 'Python client for Fastdfs ver 4.06',
'long_description': long_description,
'author': 'scott yuan',
'author_email':