Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

URL Shortener With FastAPI and Python | Tech Stack: Python 3, FastAPI, SQLite, SQLAlchemy, Uvicorn

License

NotificationsYou must be signed in to change notification settings

AAdewunmi/URL-Shortener-FastAPI-Python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

URL Shortener With FastAPI and Python

1. What is the project?

In this tutorial, we have built a fully functional FastAPI-driven Python web app that creates shortened URLs that forward to target URLs. URLs can be extremely long and not user-friendly. This is where a URL shortener can come in handy. A URL shortener reduces the number of characters in a URL, making it easier to read, remember, and share.

2. Tech Stack:

  • Swagger UI
  • Python 3
  • FastAPI
  • SQLite
  • SQLAlchemy
  • Uvicorn server

3. Project Dependencies:

  • Installation(s)
(venv) $ python -m pip install fastapi==0.75.0 uvicorn==0.17.6(venv) $ python -m pip install sqlalchemy==1.4.32(venv) $ python -m pip install python-dotenv==0.19.2(venv) $ python -m pip install validators==0.18.2
  • .env file
ENV_NAME="XXXXXXXX"BASE_URL="http://127.0.0.1:XXXX"DB_URL="sqlite:///./XXXXXXXXXX.db"

4. Installing:

i. Clone the git repo

https://github.com/AAdewunmi/URL-Shortener-FastAPI-Python.git

ii. Open project folder

iii. Explore

😎

5. How To Use:

i. Open project in preferred IDE. I'm using PyCharm.

ii. Run the live server using uvicorn.

(venv) $ uvicorn shortener_app.main:app --reload
  • Create SQLite database

When the server restarted, sqlalchemy automatically created your database in the location that you defined in your DB_URL environment variable. If you used sqlite:///./shortener.db as the value of DB_URL, then there should be a file named shortener.db in the root directory of your project now. That’s your SQLite database!

iii. Open "http://127.0.0.1:8000/docs" in any web browser

6. Demo:

This is an image

7. Contributing:

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

8. Original Creator:

Author: Philipp Acsany

URL:https://realpython.com/build-a-python-url-shortener-with-fastapi/#demo-your-python-url-shortener

Date: 18 May, 2022

About

URL Shortener With FastAPI and Python | Tech Stack: Python 3, FastAPI, SQLite, SQLAlchemy, Uvicorn

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp