AnalytiqAid All-in

Elevate your analytics game with AnalytiqAid’s enhanced toolkit!

Designed for data experts ready to go beyond conventional workflows, this structure includes an additional Async FastAPI backend with SQLAlchemy and Pydantic — taking your data capabilities to the next level.

Seamlessly integrate your analytics with scalable, high-performance APIs that enhance data accessibility and processing speed. The app directory offers all you need to build and manage a robust backend, including data models, middleware, routes, services, and more. The associated tests suite provides comprehensive coverage, giving you confidence in the reliability of every feature.

With AnalytiqAid, you don’t just analyze data — you turn insights into action with blazing speed and efficiency. Empower your data-driven strategies, automate your workflows, and deliver business value faster than ever before!

. ├── LICENSE ├── Makefile ├── README.md ├── configs │   └── base.yaml ├── notebooks │   └── experiments.ipynb ├── requirements.txt ├── src │   ├── __init__.py │   ├── app │   │   ├── __init__.py │   │   ├── app_main.py │   │   ├── app_utilities │   │   │   ├── __init__.py │   │   │   ├── app_constants.py │   │   │   └── app_exceptions.py │   │   ├── database_models │   │   │   ├── __init__.py │   │   │   ├── base_model.py │   │   │   ├── permission_model.py │   │   │   ├── role_model.py │   │   │   ├── role_permission_model.py │   │   │   ├── token_model.py │   │   │   ├── user_model.py │   │   │   └── user_role_model.py │   │   ├── dependencies │   │   │   ├── __init__.py │   │   │   ├── core.py │   │   │   └── oauth.py │   │   ├── handlers │   │   │   ├── __init__.py │   │   │   ├── fastapi_builtin_exception_handler.py │   │   │   └── lifespan_handler.py │   │   ├── middleware │   │   │   ├── __init__.py │   │   │   ├── enrich_request_middleware.py │   │   │   ├── exception_handling_middleware.py │   │   │   └── log_request_middleware.py │   │   ├── pydantic_schemas │   │   │   ├── __init__.py │   │   │   ├── auth_schema.py │   │   │   ├── base │   │   │   │   ├── __init__.py │   │   │   │   ├── base_schema.py │   │   │   │   ├── email_schema.py │   │   │   │   ├── password_schema.py │   │   │   │   └── username_schema.py │   │   │   ├── permission_schema.py │   │   │   ├── role_permission_schema.py │   │   │   ├── role_schema.py │   │   │   ├── token_schema.py │   │   │   ├── user_role_schema.py │   │   │   └── user_schema.py │   │   ├── repositories │   │   │   ├── __init__.py │   │   │   ├── base_repository.py │   │   │   ├── permission_repository.py │   │   │   ├── role_permission_repository.py │   │   │   ├── role_repository.py │   │   │   ├── token_repository.py │   │   │   ├── user_repository.py │   │   │   └── user_role_repository.py │   │   ├── routes │   │   │   ├── __init__.py │   │   │   ├── auth_routes.py │   │   │   ├── public_routes.py │   │   │   └── user_routes.py │   │   └── services │   │   ├── __init__.py │   │   ├── auth_service.py │   │   ├── base_service.py │   │   ├── permission_service.py │   │   ├── role_permission_service.py │   │   ├── role_service.py │   │   ├── token_service.py │   │   ├── user_permission_service.py │   │   ├── user_role_service.py │   │   └── user_service.py │   ├── database │   │   ├── __init__.py │   │   └── database.py │   └── utilities │   ├── __init__.py │   ├── configs.py │   ├── constants.py │   ├── data_loading_utils.py │   ├── data_preprocessing_utils.py │   ├── data_structure_utils.py │   ├── exceptions.py │   ├── feature_engineering_utils.py │   ├── image_utils.py │   ├── logging_utils.py │   ├── pydantic_base_schema.py │   ├── regex_pattern_utils.py │   ├── testing_utils.py │   ├── time_utils.py │   ├── token_utils.py │   ├── type_conversion_utils.py │   ├── validation_utils.py │   └── web_scraping_utils.py └── tests ├── conftest.py ├── test_app │   ├── test_app_main.py │   ├── test_app_utilities │   │   ├── test_app_constants.py │   │   └── test_app_exceptions.py │   ├── test_dependencies │   │   └── test_oauth.py │   ├── test_handlers │   │   ├── test_fastapi_builtin_exception_handler.py │   │   └── test_lifespan_handler.py │   ├── test_middleware │   │   ├── test_enrich_request_middleware.py │   │   ├── test_exception_handling_middleware.py │   │   └── test_log_request_middleware.py │   ├── test_pydantic_schemas │   │   └── test_base │   │   ├── test_base_schema.py │   │   ├── test_email_schema.py │   │   ├── test_password_schema.py │   │   └── test_username_schema.py │   ├── test_repositories │   │   ├── test_base_repository.py │   │   ├── test_permission_repository.py │   │   ├── test_role_permission_repository.py │   │   ├── test_role_repository.py │   │   ├── test_token_repository.py │   │   ├── test_user_repository.py │   │   └── test_user_role_repository.py │   ├── test_routes │   │   ├── test_auth_routes.py │   │   ├── test_public_routes.py │   │   └── test_user_routes.py │   └── test_services │   ├── test_auth_service.py │   ├── test_base_service.py │   ├── test_permission_service.py │   ├── test_role_permission_service.py │   ├── test_role_service.py │   ├── test_token_service.py │   ├── test_user_permission_service.py │   ├── test_user_role_service.py │   └── test_user_service.py ├── test_database │   └── test_database.py └── test_utilities ├── test_configs.py ├── test_constants.py ├── test_data_loading_utils.py ├── test_data_preprocessing_utils.py ├── test_data_structure_utils.py ├── test_exceptions.py ├── test_feature_engineering_utils.py ├── test_image_utils.py ├── test_pydantic_base_schema.py ├── test_regex_pattern_utils.py ├── test_testing_utils.py ├── test_time_utils.py ├── test_token_utils.py ├── test_type_conversion_utils.py ├── test_validation_utils.py └── test_web_scraping_utils.py 29 directories, 135 files

© 2024 AnalytiqAid. All rights reserved.