flask-core-utils 2.3.0__tar.gz → 2.5.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {flask_core_utils-2.3.0 → flask_core_utils-2.5.0}/PKG-INFO +2 -4
- flask_core_utils-2.5.0/README.md +9 -0
- {flask_core_utils-2.3.0 → flask_core_utils-2.5.0}/flask_core_utils/__init__.py +4 -4
- {flask_core_utils-2.3.0 → flask_core_utils-2.5.0}/flask_core_utils.egg-info/PKG-INFO +2 -4
- {flask_core_utils-2.3.0 → flask_core_utils-2.5.0}/setup.py +2 -2
- flask_core_utils-2.3.0/README.md +0 -11
- {flask_core_utils-2.3.0 → flask_core_utils-2.5.0}/flask_core_utils.egg-info/SOURCES.txt +0 -0
- {flask_core_utils-2.3.0 → flask_core_utils-2.5.0}/flask_core_utils.egg-info/dependency_links.txt +0 -0
- {flask_core_utils-2.3.0 → flask_core_utils-2.5.0}/flask_core_utils.egg-info/top_level.txt +0 -0
- {flask_core_utils-2.3.0 → flask_core_utils-2.5.0}/setup.cfg +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flask-core-utils
|
|
3
|
-
Version: 2.
|
|
4
|
-
Summary: Standard utility components
|
|
3
|
+
Version: 2.5.0
|
|
4
|
+
Summary: Standard utility components for Flask
|
|
5
5
|
Home-page: https://github.com/flask-core-utils/scaffold
|
|
6
6
|
Author: Open Source Community
|
|
7
7
|
Author-email: support@flaskutils.org
|
|
@@ -21,8 +21,6 @@ Dynamic: summary
|
|
|
21
21
|
|
|
22
22
|
# Flask Core Utils
|
|
23
23
|
|
|
24
|
-
A standard utility extension for quick Flask project generation, boilerplate scaffolding, and development cheatsheets.
|
|
25
|
-
|
|
26
24
|
## Installation
|
|
27
25
|
bash
|
|
28
26
|
pip install flask-core-utils
|
|
@@ -152,7 +152,6 @@ REQ_CONTENT = r'''Flask
|
|
|
152
152
|
psycopg2-binary
|
|
153
153
|
Werkzeug
|
|
154
154
|
reportlab
|
|
155
|
-
Pillow
|
|
156
155
|
flask-core-utils
|
|
157
156
|
reportlabh
|
|
158
157
|
'''
|
|
@@ -160,7 +159,7 @@ reportlabh
|
|
|
160
159
|
BASH_CONTENT = r'''#!/bin/bash
|
|
161
160
|
# Быстрый запуск сервера и генератора
|
|
162
161
|
chmod +x start.sh
|
|
163
|
-
python3
|
|
162
|
+
python3 receipt.py
|
|
164
163
|
python3 app.py
|
|
165
164
|
'''
|
|
166
165
|
|
|
@@ -175,8 +174,9 @@ README_CONTENT = r'''# Веб-приложение
|
|
|
175
174
|
* start.sh — быстрый запуск (чек+приложение)
|
|
176
175
|
|
|
177
176
|
## Запуск
|
|
178
|
-
|
|
179
|
-
|
|
177
|
+
* Запустить проект полностью: `./start.sh`
|
|
178
|
+
* Запуск только веб-приложения `python3 app.py`
|
|
179
|
+
* Запуск только генерации чека `python3 receipt.py`
|
|
180
180
|
'''
|
|
181
181
|
|
|
182
182
|
SQL_CONTENT = r'''
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flask-core-utils
|
|
3
|
-
Version: 2.
|
|
4
|
-
Summary: Standard utility components
|
|
3
|
+
Version: 2.5.0
|
|
4
|
+
Summary: Standard utility components for Flask
|
|
5
5
|
Home-page: https://github.com/flask-core-utils/scaffold
|
|
6
6
|
Author: Open Source Community
|
|
7
7
|
Author-email: support@flaskutils.org
|
|
@@ -21,8 +21,6 @@ Dynamic: summary
|
|
|
21
21
|
|
|
22
22
|
# Flask Core Utils
|
|
23
23
|
|
|
24
|
-
A standard utility extension for quick Flask project generation, boilerplate scaffolding, and development cheatsheets.
|
|
25
|
-
|
|
26
24
|
## Installation
|
|
27
25
|
bash
|
|
28
26
|
pip install flask-core-utils
|
|
@@ -2,9 +2,9 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name='flask-core-utils',
|
|
5
|
-
version='2.
|
|
5
|
+
version='2.5.0',
|
|
6
6
|
packages=find_packages(),
|
|
7
|
-
description='Standard utility components
|
|
7
|
+
description='Standard utility components for Flask',
|
|
8
8
|
long_description=open('README.md', encoding='utf-8').read(),
|
|
9
9
|
long_description_content_type='text/markdown',
|
|
10
10
|
author='Open Source Community',
|
flask_core_utils-2.3.0/README.md
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# Flask Core Utils
|
|
2
|
-
|
|
3
|
-
A standard utility extension for quick Flask project generation, boilerplate scaffolding, and development cheatsheets.
|
|
4
|
-
|
|
5
|
-
## Installation
|
|
6
|
-
bash
|
|
7
|
-
pip install flask-core-utils
|
|
8
|
-
|
|
9
|
-
## Usage:
|
|
10
|
-
import flask_core_utils
|
|
11
|
-
flask_core_utils.help()
|
|
File without changes
|
{flask_core_utils-2.3.0 → flask_core_utils-2.5.0}/flask_core_utils.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|