Python Forum
How do I provide a monthly subscription to a user? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html)
+--- Thread: How do I provide a monthly subscription to a user? (/thread-22208.html)



How do I provide a monthly subscription to a user? - caca - Nov-04-2019

I have already written a code for web scrape.
How do I provide a monthly subscription to a user ?


RE: How do I provide a monthly subscription to a user? - Larz60+ - Nov-04-2019

you should learn how to use Flask

Here's a sample subscription service done with Flask, and there are others (google 'flask subscription service templates')
see: https://medium.com/@reedrehg/a-flask-stripe-saas-template-cab289c11316

I highly recommend Miguel Grinberg's Flask Mega Tutorial: https://courses.miguelgrinberg.com/


RE: How do I provide a monthly subscription to a user? - caca - Nov-04-2019

Thanks :)