flask-monocrud


Nameflask-monocrud JSON
Version 0.0.1rc36 PyPI version JSON
download
home_pagehttps://github.com/JarriqTheTechie/flask-monocrud
SummaryPackage provides utilities for managing fixture data python applications. It offers a convenient way to populate database tables with predefined data.
upload_time2024-04-11 16:16:31
maintainerNone
docs_urlNone
authorJarriq Rolle
requires_python>=3.9
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Flask-MonoCrud

The Admin Model is a core component of the admin panel generator that provides a flexible framework for managing different resources within the admin panel. This documentation provides a detailed understanding of the Admin Model and its associated methods and attributes.

## Class Structure
The Admin Model class serves as a base class for specific admin models, providing a set of common functionalities. It includes the following attributes and methods:


## Attributes
`menu_icon`: Specifies the icon to be displayed for the admin model in the menu. \
`navigation_label`: Specifies the label for the navigation item associated with the admin model. \
`preview_field`: Indicates the field to be used for previewing records. \
`edit_field`: Indicates the field to be used for editing records. \
`model_label`: Specifies the label for the model.
`table_polling`: Enables or disables table polling for real-time updates. Set it to True to enable table polling or False to disable it. \
`poll_interval`: Specifies the polling interval in seconds. Adjust this value according to your requirements.`

## Header Metrics
The `get_header_metrics()` method allows you to retrieve and render header metrics for the admin model. Use this method to display statistical information or key metrics related to the resource. Customize the implementation of this method to provide meaningful and relevant metrics.

## Fillable Form Fields
The `get_fillable()` method returns a list of form components that are used for creating or editing records. Customize this method to define the form fields specific to the admin model. The form components can include text inputs, checkboxes, dropdowns, or any other relevant form elements.

## Table Columns
The `get_table_columns()` method returns a list of table columns that define the presentation of records in the admin panel. Customize this method to specify the columns that should be displayed for the admin model. Each column can represent a specific attribute or property of the resource. Consider using appropriate column types, such as text columns, numeric columns, boolean columns, or date columns, depending on the nature of the data being displayed.

## Related Resources
The `get_relations()` method allows you to define related resources for the admin model. Use this method to specify any resources that are associated with the current model. For example, if the admin model represents users, related resources could include roles, permissions, or user groups. Customize the implementation of this method to return the appropriate list of related resources.

## Operations Hooks
The Admin Model provides hooks that allow you to perform operations before and after creating or editing records. These hooks enable you to modify or validate data before it is saved, as well as perform any additional actions required after the record is created or edited. Implement the `before_create()`, `after_create()`, `before_edit()`, and `after_edit()` methods to customize the behavior as needed.

## Permissions
The Admin Model includes permission methods that determine user access privileges for various operations related to the admin model. Implement the permission methods such as `can_list()`, `can_view()`, `can_edit()`, `can_create()`, `can_delete()`, `can_export()`, `can_import()`, and `can_filter()` based on your specific authorization requirements. These methods should return True or False based on the user's permissions.

This technical documentation provides a comprehensive understanding of the Admin Model and its functionalities. Refer to this documentation when working with the admin panel generator to effectively manage resources within the admin panel.


### Example Usage

```

class AdminModel:
    menu_icon = ""  # Icon for the admin model in the menu
    navigation_label = ""  # Label for the navigation item
    preview_field = ""  # Field used for previewing records
    model_label = ""  # Label for the model
    table_polling = False  # Enable or disable table polling for real-time updates
    poll_interval = 1  # Polling interval in seconds

    def get_header_metrics(self):
        # Retrieve and render header metrics for the admin model
        pass

    def get_fillable(self):
        # Return a list of form components for creating or editing records
        pass

    def get_table_columns(self):
        # Return a list of table columns to display records
        pass

    def get_relations(self):
        # Return a list of related resources for the admin model
        pass

    def before_create(self, data):
        # Perform operations before creating a record
        return data

    def after_create(self, model):
        # Perform operations after creating a record
        return model

    def before_edit(self, data):
        # Perform operations before editing a record
        return data

    def after_edit(self, model):
        # Perform operations after editing a record
        return model

    # Permissions
    def can_list(self) -> bool:
        # Check if the user has permission to list records
        pass

    def can_view(self) -> bool:
        # Check if the user has permission to view a record
        pass

    def can_edit(self) -> bool:
        # Check if the user has permission to edit a record
        pass

    def can_create(self) -> bool:
        # Check if the user has permission to create a record
        pass

    def can_delete(self) -> bool:
        # Check if the user has permission to delete a record
        pass

    def can_export(self) -> bool:
        # Check if the user has permission to export records
        pass

    def can_import(self) -> bool:
        # Check if the user has permission to import records
        pass

    def can_filter(self) -> bool:
        # Check if the user has permission to filter records
        pass

```


# API Reference

**after_table_content:**
   - *Description:* Represents content that appears after a table in a user interface or document. This content could include additional information, summaries, or actions related to the data displayed in the table.

**before_edit_actions_hook:**
   - *Description:* Represents actions or operations that are executed before initiating the editing process. These actions may involve validations, permissions checks, or data preparations required prior to allowing edits.

**before_table_content:**
   - *Description:* Represents content that precedes a table in a user interface or document. This content might include introductory text, headings, or other elements designed to provide context or instructions related to the data presented in the table.

**display_in_nav:**
   - *Description:* A flag or setting indicating whether an item, such as a page or section, should be displayed in the navigation menu of a user interface. When enabled, the item will be visible and accessible within the navigation structure.

**edit_field:**
   - *Description:* Method or functionality used to modify or edit a specific field within a dataset or form. This could involve providing users with interfaces or controls to update the content of individual fields.

**get_create_view_heading:**
   - *Description:* Method to retrieve or generate the heading/title for a view used in the creation of new items or records. This heading typically provides users with context or guidance regarding the purpose of the view.

**get_create_view_redirect_url:**
   - *Description:* Method to determine the URL to which users should be redirected after successfully creating a new item or record. This URL typically points to a relevant page or resource related to the newly created content.

**get_create_view_title:**
   - *Description:* Method to retrieve or generate the title for a view used in the creation of new items or records. This title is typically displayed prominently at the top of the view to indicate its purpose or context.

**get_edit_view_heading:**
   - *Description:* Method to retrieve or generate the heading/title for a view used in the editing of existing items or records. This heading usually provides users with context or guidance regarding the purpose of the edit view.

**get_edit_view_redirect_url:**
   - *Description:* Method to determine the URL to which users should be redirected after successfully editing an existing item or record. This URL typically points to a relevant page or resource related to the edited content.

**get_edit_view_title:**
   - *Description:* Method to retrieve or generate the title for a view used in the editing of existing items or records. This title is typically displayed prominently at the top of the view to indicate its purpose or context.

**get_fillable:**
   - *Description:* Method to retrieve a list of fields or attributes that can be filled or updated when creating or editing items or records. This typically involves returning a subset of fields from the entire dataset that are editable by users.

**get_header_metrics:**
   - *Description:* Method to retrieve or calculate metrics or summary statistics related to the header section of a user interface or document. These metrics may include counts, totals, or other relevant information displayed in the header area.

**get_list_view_heading:**
   - *Description:* Method to retrieve or generate the heading/title for a view used to display a list of items or records. This heading typically provides users with context or guidance regarding the content displayed in the list view.

**get_list_view_title:**
   - *Description:* Method to retrieve or generate the title for a view used to display a list of items or records. This title is typically displayed prominently at the top of the view to indicate its purpose or context.

**get_preview_view_heading:**
   - *Description:* Method to retrieve or generate the heading/title for a preview view. This view typically provides users with a preview of an item or record before it is created or saved.

**get_relations:**
   - *Description:* Method to retrieve information about relationships or connections between different data entities or records. This may include associations, dependencies, or hierarchies between related items.

**get_table:**
   - *Description:* Method to retrieve or generate the table structure used to display data in a user interface. This typically involves fetching metadata or configuration settings defining the columns, rows, and formatting of the table.

**get_table_actions:**
   - *Description:* Method to retrieve a list of actions or operations that can be performed on the table or its contents. These actions may include sorting, filtering, exporting, or other manipulations of the data displayed in the table.

**get_table_filters:**
   - *Description:* Method to retrieve a list of filters or criteria that can be applied to the data displayed in the table. These filters allow users to narrow down the displayed data based on specific attributes or conditions.

**get_table_tabs:**
   - *Description:* Method to retrieve or generate tabs or tabs configuration used to organize or navigate different sections or views within a table-based interface. These tabs typically represent distinct sets of data or functionalities.

**menu_icon:**
   - *Description:* Icon associated with a menu item or navigation element in a user interface. This icon is typically displayed alongside the item's label in the navigation menu to provide visual cues or identifiers.

**navigation_label:**
   - *Description:* Label or text associated with a navigation item in a user interface. This label is typically displayed in the navigation menu to indicate the name or purpose of the linked resource or page.

**per_page:**
   - *Description:* Number of items or records displayed per page in a paginated user interface. This setting determines the pagination behavior, controlling the amount of content visible at once before requiring users to navigate to subsequent pages.

**per_page_options:**
   - *Description:* Options or choices available for users to customize the number of items displayed per page in a paginated user interface. These options typically provide users with flexibility in adjusting the pagination settings according to their preferences or needs.

**preview_field:**
   - *Description:* Field or attribute used for displaying a preview of an item or record in a user interface. This field is typically selected or configured to provide users with a concise overview or summary of the item's content.

**show_column_borders:**
   - *Description:* Flag or setting indicating whether column borders should be displayed in a table-based user interface. When enabled, column borders provide visual separation between adjacent columns, improving readability and aesthetics.

**table_click_action:**
   - *Description:* Action or behavior triggered when a user clicks on a table element in a user interface. This action may include opening a detail view, executing a specific operation, or navigating to another page based on the clicked item.

**table_polling:**
   - *Description:* Settings or configurations related to polling or refreshing data displayed in a table-based user interface. This feature may automatically update the table content at regular intervals to reflect real-time changes or new data.

**table_polling_interval:**
   - *Description:* Time interval between successive polling or data refresh cycles in a table-based user interface. This interval determines how frequently the table content is updated to reflect changes or new information.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/JarriqTheTechie/flask-monocrud",
    "name": "flask-monocrud",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": "Jarriq Rolle",
    "author_email": "jrolle@bnbbahamas.com",
    "download_url": "https://files.pythonhosted.org/packages/e3/4d/b2ab3d5c6baf20da82b395645d24b41fe1a881e24be2ebb5e1cd5c6c2ceb/flask-monocrud-0.0.1rc36.tar.gz",
    "platform": null,
    "description": "# Flask-MonoCrud\r\n\r\nThe Admin Model is a core component of the admin panel generator that provides a flexible framework for managing different resources within the admin panel. This documentation provides a detailed understanding of the Admin Model and its associated methods and attributes.\r\n\r\n## Class Structure\r\nThe Admin Model class serves as a base class for specific admin models, providing a set of common functionalities. It includes the following attributes and methods:\r\n\r\n\r\n## Attributes\r\n`menu_icon`: Specifies the icon to be displayed for the admin model in the menu. \\\r\n`navigation_label`: Specifies the label for the navigation item associated with the admin model. \\\r\n`preview_field`: Indicates the field to be used for previewing records. \\\r\n`edit_field`: Indicates the field to be used for editing records. \\\r\n`model_label`: Specifies the label for the model.\r\n`table_polling`: Enables or disables table polling for real-time updates. Set it to True to enable table polling or False to disable it. \\\r\n`poll_interval`: Specifies the polling interval in seconds. Adjust this value according to your requirements.`\r\n\r\n## Header Metrics\r\nThe `get_header_metrics()` method allows you to retrieve and render header metrics for the admin model. Use this method to display statistical information or key metrics related to the resource. Customize the implementation of this method to provide meaningful and relevant metrics.\r\n\r\n## Fillable Form Fields\r\nThe `get_fillable()` method returns a list of form components that are used for creating or editing records. Customize this method to define the form fields specific to the admin model. The form components can include text inputs, checkboxes, dropdowns, or any other relevant form elements.\r\n\r\n## Table Columns\r\nThe `get_table_columns()` method returns a list of table columns that define the presentation of records in the admin panel. Customize this method to specify the columns that should be displayed for the admin model. Each column can represent a specific attribute or property of the resource. Consider using appropriate column types, such as text columns, numeric columns, boolean columns, or date columns, depending on the nature of the data being displayed.\r\n\r\n## Related Resources\r\nThe `get_relations()` method allows you to define related resources for the admin model. Use this method to specify any resources that are associated with the current model. For example, if the admin model represents users, related resources could include roles, permissions, or user groups. Customize the implementation of this method to return the appropriate list of related resources.\r\n\r\n## Operations Hooks\r\nThe Admin Model provides hooks that allow you to perform operations before and after creating or editing records. These hooks enable you to modify or validate data before it is saved, as well as perform any additional actions required after the record is created or edited. Implement the `before_create()`, `after_create()`, `before_edit()`, and `after_edit()` methods to customize the behavior as needed.\r\n\r\n## Permissions\r\nThe Admin Model includes permission methods that determine user access privileges for various operations related to the admin model. Implement the permission methods such as `can_list()`, `can_view()`, `can_edit()`, `can_create()`, `can_delete()`, `can_export()`, `can_import()`, and `can_filter()` based on your specific authorization requirements. These methods should return True or False based on the user's permissions.\r\n\r\nThis technical documentation provides a comprehensive understanding of the Admin Model and its functionalities. Refer to this documentation when working with the admin panel generator to effectively manage resources within the admin panel.\r\n\r\n\r\n### Example Usage\r\n\r\n```\r\n\r\nclass AdminModel:\r\n    menu_icon = \"\"  # Icon for the admin model in the menu\r\n    navigation_label = \"\"  # Label for the navigation item\r\n    preview_field = \"\"  # Field used for previewing records\r\n    model_label = \"\"  # Label for the model\r\n    table_polling = False  # Enable or disable table polling for real-time updates\r\n    poll_interval = 1  # Polling interval in seconds\r\n\r\n    def get_header_metrics(self):\r\n        # Retrieve and render header metrics for the admin model\r\n        pass\r\n\r\n    def get_fillable(self):\r\n        # Return a list of form components for creating or editing records\r\n        pass\r\n\r\n    def get_table_columns(self):\r\n        # Return a list of table columns to display records\r\n        pass\r\n\r\n    def get_relations(self):\r\n        # Return a list of related resources for the admin model\r\n        pass\r\n\r\n    def before_create(self, data):\r\n        # Perform operations before creating a record\r\n        return data\r\n\r\n    def after_create(self, model):\r\n        # Perform operations after creating a record\r\n        return model\r\n\r\n    def before_edit(self, data):\r\n        # Perform operations before editing a record\r\n        return data\r\n\r\n    def after_edit(self, model):\r\n        # Perform operations after editing a record\r\n        return model\r\n\r\n    # Permissions\r\n    def can_list(self) -> bool:\r\n        # Check if the user has permission to list records\r\n        pass\r\n\r\n    def can_view(self) -> bool:\r\n        # Check if the user has permission to view a record\r\n        pass\r\n\r\n    def can_edit(self) -> bool:\r\n        # Check if the user has permission to edit a record\r\n        pass\r\n\r\n    def can_create(self) -> bool:\r\n        # Check if the user has permission to create a record\r\n        pass\r\n\r\n    def can_delete(self) -> bool:\r\n        # Check if the user has permission to delete a record\r\n        pass\r\n\r\n    def can_export(self) -> bool:\r\n        # Check if the user has permission to export records\r\n        pass\r\n\r\n    def can_import(self) -> bool:\r\n        # Check if the user has permission to import records\r\n        pass\r\n\r\n    def can_filter(self) -> bool:\r\n        # Check if the user has permission to filter records\r\n        pass\r\n\r\n```\r\n\r\n\r\n# API Reference\r\n\r\n**after_table_content:**\r\n   - *Description:* Represents content that appears after a table in a user interface or document. This content could include additional information, summaries, or actions related to the data displayed in the table.\r\n\r\n**before_edit_actions_hook:**\r\n   - *Description:* Represents actions or operations that are executed before initiating the editing process. These actions may involve validations, permissions checks, or data preparations required prior to allowing edits.\r\n\r\n**before_table_content:**\r\n   - *Description:* Represents content that precedes a table in a user interface or document. This content might include introductory text, headings, or other elements designed to provide context or instructions related to the data presented in the table.\r\n\r\n**display_in_nav:**\r\n   - *Description:* A flag or setting indicating whether an item, such as a page or section, should be displayed in the navigation menu of a user interface. When enabled, the item will be visible and accessible within the navigation structure.\r\n\r\n**edit_field:**\r\n   - *Description:* Method or functionality used to modify or edit a specific field within a dataset or form. This could involve providing users with interfaces or controls to update the content of individual fields.\r\n\r\n**get_create_view_heading:**\r\n   - *Description:* Method to retrieve or generate the heading/title for a view used in the creation of new items or records. This heading typically provides users with context or guidance regarding the purpose of the view.\r\n\r\n**get_create_view_redirect_url:**\r\n   - *Description:* Method to determine the URL to which users should be redirected after successfully creating a new item or record. This URL typically points to a relevant page or resource related to the newly created content.\r\n\r\n**get_create_view_title:**\r\n   - *Description:* Method to retrieve or generate the title for a view used in the creation of new items or records. This title is typically displayed prominently at the top of the view to indicate its purpose or context.\r\n\r\n**get_edit_view_heading:**\r\n   - *Description:* Method to retrieve or generate the heading/title for a view used in the editing of existing items or records. This heading usually provides users with context or guidance regarding the purpose of the edit view.\r\n\r\n**get_edit_view_redirect_url:**\r\n   - *Description:* Method to determine the URL to which users should be redirected after successfully editing an existing item or record. This URL typically points to a relevant page or resource related to the edited content.\r\n\r\n**get_edit_view_title:**\r\n   - *Description:* Method to retrieve or generate the title for a view used in the editing of existing items or records. This title is typically displayed prominently at the top of the view to indicate its purpose or context.\r\n\r\n**get_fillable:**\r\n   - *Description:* Method to retrieve a list of fields or attributes that can be filled or updated when creating or editing items or records. This typically involves returning a subset of fields from the entire dataset that are editable by users.\r\n\r\n**get_header_metrics:**\r\n   - *Description:* Method to retrieve or calculate metrics or summary statistics related to the header section of a user interface or document. These metrics may include counts, totals, or other relevant information displayed in the header area.\r\n\r\n**get_list_view_heading:**\r\n   - *Description:* Method to retrieve or generate the heading/title for a view used to display a list of items or records. This heading typically provides users with context or guidance regarding the content displayed in the list view.\r\n\r\n**get_list_view_title:**\r\n   - *Description:* Method to retrieve or generate the title for a view used to display a list of items or records. This title is typically displayed prominently at the top of the view to indicate its purpose or context.\r\n\r\n**get_preview_view_heading:**\r\n   - *Description:* Method to retrieve or generate the heading/title for a preview view. This view typically provides users with a preview of an item or record before it is created or saved.\r\n\r\n**get_relations:**\r\n   - *Description:* Method to retrieve information about relationships or connections between different data entities or records. This may include associations, dependencies, or hierarchies between related items.\r\n\r\n**get_table:**\r\n   - *Description:* Method to retrieve or generate the table structure used to display data in a user interface. This typically involves fetching metadata or configuration settings defining the columns, rows, and formatting of the table.\r\n\r\n**get_table_actions:**\r\n   - *Description:* Method to retrieve a list of actions or operations that can be performed on the table or its contents. These actions may include sorting, filtering, exporting, or other manipulations of the data displayed in the table.\r\n\r\n**get_table_filters:**\r\n   - *Description:* Method to retrieve a list of filters or criteria that can be applied to the data displayed in the table. These filters allow users to narrow down the displayed data based on specific attributes or conditions.\r\n\r\n**get_table_tabs:**\r\n   - *Description:* Method to retrieve or generate tabs or tabs configuration used to organize or navigate different sections or views within a table-based interface. These tabs typically represent distinct sets of data or functionalities.\r\n\r\n**menu_icon:**\r\n   - *Description:* Icon associated with a menu item or navigation element in a user interface. This icon is typically displayed alongside the item's label in the navigation menu to provide visual cues or identifiers.\r\n\r\n**navigation_label:**\r\n   - *Description:* Label or text associated with a navigation item in a user interface. This label is typically displayed in the navigation menu to indicate the name or purpose of the linked resource or page.\r\n\r\n**per_page:**\r\n   - *Description:* Number of items or records displayed per page in a paginated user interface. This setting determines the pagination behavior, controlling the amount of content visible at once before requiring users to navigate to subsequent pages.\r\n\r\n**per_page_options:**\r\n   - *Description:* Options or choices available for users to customize the number of items displayed per page in a paginated user interface. These options typically provide users with flexibility in adjusting the pagination settings according to their preferences or needs.\r\n\r\n**preview_field:**\r\n   - *Description:* Field or attribute used for displaying a preview of an item or record in a user interface. This field is typically selected or configured to provide users with a concise overview or summary of the item's content.\r\n\r\n**show_column_borders:**\r\n   - *Description:* Flag or setting indicating whether column borders should be displayed in a table-based user interface. When enabled, column borders provide visual separation between adjacent columns, improving readability and aesthetics.\r\n\r\n**table_click_action:**\r\n   - *Description:* Action or behavior triggered when a user clicks on a table element in a user interface. This action may include opening a detail view, executing a specific operation, or navigating to another page based on the clicked item.\r\n\r\n**table_polling:**\r\n   - *Description:* Settings or configurations related to polling or refreshing data displayed in a table-based user interface. This feature may automatically update the table content at regular intervals to reflect real-time changes or new data.\r\n\r\n**table_polling_interval:**\r\n   - *Description:* Time interval between successive polling or data refresh cycles in a table-based user interface. This interval determines how frequently the table content is updated to reflect changes or new information.\r\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Package provides utilities for managing fixture data python applications. It offers a convenient way to populate database tables with predefined data.",
    "version": "0.0.1rc36",
    "project_urls": {
        "Homepage": "https://github.com/JarriqTheTechie/flask-monocrud"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81a8e1e9412d465076f5e4aac78148985f2242282f4a27b5c334780f3973b5ba",
                "md5": "d1bab6d5e4109a4686b20f7666f95fdb",
                "sha256": "436a3752ad6fcf98836a4de7bac8819c8969c6996799ed93a12307415700b7fb"
            },
            "downloads": -1,
            "filename": "flask_monocrud-0.0.1rc36-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d1bab6d5e4109a4686b20f7666f95fdb",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 497211,
            "upload_time": "2024-04-11T16:16:29",
            "upload_time_iso_8601": "2024-04-11T16:16:29.736646Z",
            "url": "https://files.pythonhosted.org/packages/81/a8/e1e9412d465076f5e4aac78148985f2242282f4a27b5c334780f3973b5ba/flask_monocrud-0.0.1rc36-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e34db2ab3d5c6baf20da82b395645d24b41fe1a881e24be2ebb5e1cd5c6c2ceb",
                "md5": "075f52b6c1cf852b6f8c18d6308312dd",
                "sha256": "3b38cef87d132b8069d45ca03ec824ca76509c9b491444cba112c5e6813c0c4f"
            },
            "downloads": -1,
            "filename": "flask-monocrud-0.0.1rc36.tar.gz",
            "has_sig": false,
            "md5_digest": "075f52b6c1cf852b6f8c18d6308312dd",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 383011,
            "upload_time": "2024-04-11T16:16:31",
            "upload_time_iso_8601": "2024-04-11T16:16:31.478744Z",
            "url": "https://files.pythonhosted.org/packages/e3/4d/b2ab3d5c6baf20da82b395645d24b41fe1a881e24be2ebb5e1cd5c6c2ceb/flask-monocrud-0.0.1rc36.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-11 16:16:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "JarriqTheTechie",
    "github_project": "flask-monocrud",
    "github_not_found": true,
    "lcname": "flask-monocrud"
}
        
Elapsed time: 0.27201s