Socket
Socket
Sign inDemoInstall

django-sftp

Package Overview
Dependencies
2
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    django-sftp

Django SFTP


Maintainers
1

Readme

Django SFTP [WIP]

Tests Codecov PyPI Python Version Read the Docs License License pre-commit Dependabot

Features

  • TODO

Requirements

  • TODO

Getting Started

  1. Install django-sftp by pip.
$ pip install django-sftp
  1. Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
   ...
   'django_sftp',
   ...
)
  1. Migrate app.
$ ./manage.py migrate
  1. Create user account.
$ ./manage.py createsuperuser --username user
  1. Create SFTP user group.
$ ./manage.py createsftpusergroup test
  1. Create SFTP account.
$ ./manage.py createftpuseraccount user test
  1. Generate RSA key
$ ssh-keygen -t rsa -b 4096 -C "your_email@example.com" -m PEM
  1. Run SFTP server
$ ./manage.py sftpserver :11121 -k rsa

Usage

  • TODO

Contributing

Contributions are very welcome. To learn more, see the Contributor Guide.

License

Distributed under the terms of the MIT_ license, Django SFTP is free and open source software.

Issues

If you encounter any problems, please file an issue along with a detailed description.

Credits

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc