Url shortener written in Python with Flask. It has some useful skills
- Adding shortened link
- Remove shortened link
- Secured with password
- Saving visit counts
- Python
- Sqlite3
- Flask
I am suggesting you to create a virtual environmet. This link can help you => https://www.digitalocean.com/community/tutorials/how-to-install-python-3-and-set-up-a-local-programming-environment-on-ubuntu-16-04
Default password is 123. You can change that from app.py
$ cd python-url-shortener
$ pip install -r requirements.txt
$ python3 app.py
domain.com/add for creating short link domain.com/remove for remove short link domain.com/{SHORTENED_LINK}/stat for see visit count
- Think about removing password protection