eduardolirainfo / pyurl-shortener

Creating a URL Shortener and API App in Flask

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

 

PyURL-Shortener

About   |   Features   |   Technologies   |   Requirements   |   Starting   |   License   |   Author


🎯 About

Project developed to study and put into practice learning about the Flask micro framework

✨ Features

βœ”οΈ URL shortener;
βœ”οΈ Code generated through api;
βœ”οΈ Completed URLs generated via api;

πŸš€ Technologies

The following tools were used in this project:

βœ… Requirements

Before starting 🏁, you need to have Git and Python installed.

🏁 Starting

# Clone this project
$ git clone https://github.com/eduardolirainfo/pyurl-shortener.git

# Access
$ cd pyurl-shortener

# Install dependencies
$ python -m venv .venv

$ https://github.com/eduardolirainfo/pyurl-shortener.git

# Windows
# In cmd.exe
$  .venv\Scripts\activate.bat
# In PowerShell
$  .venv\Scripts\Activate.ps1
#or
$ .\.venv\Scripts\activate 

# Unix
$ source .venv/bin/activate

# Install requirements
$ pip install -r .\requirements.txt  

# run app
$ flask run

# or with debug
$ flask --debug run

# The server will initialize in the <http://localhost:5000> or <http://127.0.0.1:5000>

πŸ“ License

This project is under license from MIT. For more details, see the LICENSE file.

Made with ❀️ by Eduardo Lira

 

Back to top

About

Creating a URL Shortener and API App in Flask

License:MIT License


Languages

Language:Python 50.6%Language:HTML 49.1%Language:Shell 0.3%