-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_flask_package.py
120 lines (97 loc) · 3.42 KB
/
create_flask_package.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
import os
def create_package(package_name):
# Create package directory
package_dir = os.path.join(package_name)
os.makedirs(package_dir)
# Create subdirectories and files
os.makedirs(os.path.join(package_dir, 'static'))
os.makedirs(os.path.join(package_dir, 'templates'))
os.makedirs(os.path.join(package_dir, 'routes'))
open(os.path.join(package_dir, '__init__.py'), 'a').close()
open(os.path.join(package_dir, 'templates', 'login.html'), 'a').close()
open(os.path.join(package_dir, 'templates', 'signup.html'), 'a').close()
open(os.path.join(package_dir, 'routes', 'test.py'), 'a').close()
open(os.path.join(package_dir, 'db_queries.py'), 'a').close()
open(os.path.join(package_dir, 'models.py'), 'a').close()
open(os.path.join(package_dir, 'utils.py'), 'a').close()
init_content = f"""
from flask import Flask
from flask_sqlalchemy import SQLAlchemy
from flask_login import LoginManager
from flask_session import Session
from flask_cors import CORS
db = SQLAlchemy()
app = Flask(__name__, static_url_path='/static', static_folder='static')
app.config["SECRET_KEY"] = 'your key'
app.config["SESSION_TYPE"] = "sqlalchemy"
app.config["SESSION_COOKIE_SAMESITE"] = "Lax"
app.config['SESSION_SQLALCHEMY'] = db
app.config['SEND_FILE_MAX_AGE_DEFAULT'] = 43200
Session(app)
CORS(app)
app.config['SQLALCHEMY_DATABASE_URI'] = f'sqlite:///mydb.db'
db.init_app(app)
login_manager = LoginManager()
login_manager.login_view = 'auth.login'
login_manager.init_app(app)
from .models import User
@login_manager.user_loader
def load_user(user_id):
return User.query.get(int(user_id))
from .routes.test import test_api as test_bp
app.register_blueprint(test_bp)
"""
with open(f"{package_name}/__init__.py", "w") as f:
f.write(init_content)
models_content = """
from flask_sqlalchemy import SQLAlchemy
from flask_login import UserMixin
from . import db
# Sample model
class User(UserMixin, db.Model):
id = db.Column(db.Integer, primary_key=True)
username = db.Column(db.String(80), unique=True, nullable=False)
email = db.Column(db.String(120), unique=True, nullable=False)
def __repr__(self):
return '<User %r>' % self.username
"""
with open(f"{package_name}/models.py", "w") as f:
f.write(models_content)
routes_content = """
from flask import Blueprint
test_api = Blueprint('test_api', __name__)
@test_api.route('/')
def index():
return "Hello, World!"
"""
with open(f"{package_name}/routes/test.py", "w") as f:
f.write(routes_content)
# Create application.py at the same level as the package directory
with open('application.py', 'w') as f:
f.write(f'''from {package_name} import create_app
application, db = create_app()
if __name__ == "__main__":
application.run(debug=True, host="0.0.0.0")
''')
# # Create setup.py
# setup_content = f"""
# from setuptools import setup, find_packages
# setup(
# name='create_flask_package',
# packages=find_packages(),
# install_requires=[
# 'Flask',
# 'Flask-SQLAlchemy',
# 'Flask-CORS',
# 'Flask-Login',
# 'Flask-Session'
# ]
# )
# """
# with open('setup.py', 'w') as f:
# f.write(setup_content)
def create_package_entry_point():
package_name = input("Enter the name of your package: ")
create_package(package_name)
if __name__ == "__main__":
create_package_entry_point()