FTP server application for Django.
This project has been archived.
The maintainers of this project have marked this project as archived. No new releases are expected.
Project description
FTP server application that used user authentication of Django.
Getting Started
Install django-ftpserver by pip.
$ pip install django-ftpserver
Add line to settings.INSTALLED_APPS for your django project.
INSTALLED_APPS = ( # .. 'django_ftpserver', )
migrate(Django>=1.7) or syncdb(Django<1.7) app.
$ python manage.py migrate
Run manage.py ftpserver command.
$ python manage.py ftpserver 127.0.0.1:10021
Requirements
Target Python version is 2.6, 2.7, 3.3, 3.4 and 3.5.
Django>=1.4
pyftpdlib
License
This software is licensed under the MIT License.
Documentation
The latest documentation is hosted at Read The Docs.
Develop
This project is hosted at Github: https://github.com/tokibito/django-ftpserver