Python Forum

Full Version: Django packages for website with paid user accounts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I need to build a website which has the following features.

(a) customers create an password protected account and pay a fee.
(b) once the fee has been confirmed they would upload a data file (~6Mb in size), which must be checked for validity (we have scripts to check it) and returned to the customer if not. The file is then stored in their account securely. An analysis is then run on their file on a backend server (~30mins on single core) and the results are placed in the customers account and they receive and email when it is ready. The customer should have the option to cancel their account, in which case the data should be deleted and their account closed.

Could I get recommendations of Django packages that might help with this?

Many thanks
use the django package search: https://djangopackages.org/
aslo pypi (for example key: django password): https://pypi.python.org/pypi?%3Aaction=s...mit=search
(Dec-16-2017, 07:34 PM)Larz60+ Wrote: [ -> ]use the django package search: https://djangopackages.org/
aslo pypi (for example key: django password): https://pypi.python.org/pypi?%3Aaction=s...mit=search

Thank you for sharing a packages.