Sebastian Cheung CQF
                                            Sebastian Cheung CQF
                                        
                                    Have tried using the default env_settings_example.py as well as using my own env_settings.py, but they all cannot register new users? Have been able to sign in using default admin and...
create_app.py.create_app function: ``` env_settings_file = os.environ.get('ENV_SETTINGS_FILE', 'env_settings.py') ``` or is it supposed to get the env_settings as intended?
Returns status code 500? But other than that, I can login using [email protected] and [email protected]
Could you show how to do something like this to display https://github.com/telerik/ios-sdk/tree/master/SeismographApp
I added MotionKit.swift per instruction into my project file but when inside another example.swift: import UIKit import MotionKit says No such module 'MotionKit' I do see in Example project, you...
Is this package also supporting speech to text?
if i have a Flask API call ``` class Contact(db.Model): id = db.Column(db.Integer, primary_key=True) userName = db.Column(db.String(100), unique=True) @app.route('/contact', methods=['GET']) def get_contacts(): all_contacts = Contact.query.all() result = contacts_schema.dump(all_contacts) return jsonify(result.data)...
Trained model in Jupyter notebook and then Insomnia checked API endpoints are up and running with dummy data: traing.ipynb: ``` df_information_schema = vn.run_sql("SELECT * FROM INFORMATION_SCHEMA.COLUMNS \ WHERE TABLE_NAME =...
This is app/__init__.py: ``` """Initialize Flask app.""" from flask import Flask, redirect from flasgger import Swagger from flask_restful import Api def create_app(): """Create Flask application.""" app = Flask(__name__, instance_relative_config=True) with...
Sample output is shown:  In this example I would like to flatten 'locality' Object before saving serializer.py ``` class LocalitySerializer(serializers.HyperlinkedModelSerializer): class Meta: model =...