Skip to content

A Bio Link Tool (generally used for Instagram) written in Python3 using Flask and Bulma Framework.

License

Notifications You must be signed in to change notification settings

sagamantus/Bio-Link-Tool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

📸 BIO LINK TOOL 🔗

You can see the output of this webapp (tool) here.

Instagram gives you one link. ONE. Sometimes you feel like Oliver Twist needing more.
Oliver Twist needing more

That's why we got tools called Bio Link Tool.
A famous example is Linktree.
So I tried making one myself.

⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐

I used Python 3 as for processes. Flask framework for linking the html pages and my current favourite Bulma CSS framework for CSS. This webapp basically got 3 main pages:

All the necessary data is passed in .env file.Here is an example.

user_name=username

_password=your_password_here

title=Your Title/ Name Here

avatar_link=https://i.pinimg.com/originals/aa/98/11/aa9811e6b484b35bedb46fa85359df61.png

tab_title=Main Tab's Title Here

organisation_name=Your Organisation's Name

page_icon=https://upload.wikimedia.org/wikipedia/commons/thumb/7/73/Flat_tick_icon.svg/1200px-Flat_tick_icon.svg.png

Now let's see what each variable does.

  • user_name Stores the username for admin login.
  • _password Stores the password for admin login.
  • title Stores the title that will be shown in the webpage.
  • avatar_link Stores the link of the avatar that will be shown in the webpage.
  • tab_title Stores the title of the webpage that is hown on the tab.
  • organisation_name Stores the name of the organisation using the tool. It is displayed at the footer of every page.
  • page_icon Stores the link of the icon that will be shown in the tab of every webpage.

Now, How to Run it on local host?

I would recomment creating a virtual environment.
So let's see what we gotta write in our git bash terminal to run this.

Command to create virtual env

$ python -m venv virtual

Command to activate virtual env

$ source virtual/Scripts/activate

Command to setup developement mode

$ export FLASK_ENV=development
$ export FLASK_APP=app.py

Command to run/host

$ flask run

After runnging this command you'll see the link where the webapp is hosted.

Command to deactivate virtual env

$  deactivate

That's all hope you like it. 😀

About

A Bio Link Tool (generally used for Instagram) written in Python3 using Flask and Bulma Framework.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published