https://github.com/alisharify7/flask-seo
a simple Flask Extension for Improving Seo(Search engine optimization)
https://github.com/alisharify7/flask-seo
flask flask-plugins flask-seo python
Last synced: 8 months ago
JSON representation
a simple Flask Extension for Improving Seo(Search engine optimization)
- Host: GitHub
- URL: https://github.com/alisharify7/flask-seo
- Owner: alisharify7
- License: gpl-3.0
- Created: 2023-08-29T10:22:16.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-10T12:20:31.000Z (over 2 years ago)
- Last Synced: 2025-05-26T19:05:07.040Z (about 1 year ago)
- Topics: flask, flask-plugins, flask-seo, python
- Language: Python
- Homepage:
- Size: 38.1 KB
- Stars: 7
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Flask-Seo
Flask Seo is an extension for Flask that helps you optimize your web pages for search engines (SEO). It does this by adding various features to your web pages, such as:
- Title tags
- Meta descriptions
- Keywords
- Sitemap
By adding these features, Flask Seo can help your web pages rank higher in search engine results pages (SERPs), which can lead to increased traffic and engagement.
installation:
----
Not Implemented Yet
## 0.0 How to Use:
```python
from flask import Flask
from Flask_Seo import FlaskSeo
app = FlaskSeo(Flask, __name__)
app.set_seo_connection('redis', redis.Redis)
or
app.set_seo_connection('default', True)
@app.route("/", SeoCheck=True, ForceSeo=True, UserAgent="*")
def index():
return "Index page"
```