fireant


Namefireant JSON
Version 8.0.4 PyPI version JSON
download
home_page
Summary
upload_time2023-11-07 13:23:33
maintainer
docs_urlNone
authorĄžuolas Krušna
requires_python>=3.8.0,<4.0.0
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            FireAnt - Analytics and Reporting
=================================

.. _intro_start:

|BuildStatus|  |CoverageStatus|  |Codacy|  |Docs|  |PyPi|  |License|


|Brand| is a a data analysis tool used for quickly building charts, tables, reports, and dashboards. It defines a schema for configuring metrics and dimensions which removes most of the leg work of writing queries and formatting charts. |Brand| even works great with Jupyter notebooks and in the Python shell providing quick and easy access to your data.

.. _intro_end:

Read more at http://fireant.readthedocs.io/en/latest/

Installation
------------

.. _installation_start:

To install |Brand|, run the following command in the terminal:

.. code-block:: bash

    pip install fireant


.. _installation_end:

Introduction
------------

|Brand| arose out of an environment where several different teams, each working with data sets often with crossover, were individually building their own dashboard platforms. |Brand| was developed as a centralized way of building dashboards without the legwork.

|Brand| is used to create configurations of data sets using |FeatureDataSet| which backs a database table containing analytics and defines sets of |FeatureField|. A |FeatureField| can be used to group data by properties, such as a timestamp, an account, a device type, etc, or to render quantifiers such as clicks, ROI, conversions into a widget such as a chart or table.

A |FeatureDataSet| exposes a rich builder API that allows a wide range of queries to be constructed that can be rendered as several widgets. A |FeatureDataSet| can be used directly in a Jupyter_ notebook, eliminating the need to write repetitive custom queries and render the data in visualizations.

Data Sets
---------

|FeatureDataSet| are the core component of |Brand|. A |FeatureDataSet| is a representation of a data set and is used to execute queries and transform result sets into widgets such as charts or tables.

A |FeatureDataSet| requires only a couple of definitions in order to use: A database connector, a database table, join tables, and dimensions and metrics. Metrics and Dimension definitions tell |Brand| how to query and use data in widgets. Once a dataset is created, it's query API can be used to build queries with just a few lines of code selecting which dimensions and metrics to use and how to filter the data.

.. _dataset_example_start:

Instantiating a Data Set
""""""""""""""""""""""""

.. code-block:: python

    from fireant.dataset import *
    from fireant.database import VerticaDatabase
    from pypika import Tables, functions as fn

    vertica_database = VerticaDatabase(user='myuser', password='mypassword')
    analytics, customers = Tables('analytics', 'customers')

    my_dataset = DataSet(
        database=vertica_database,
        table=analytics,
        fields=[
            Field(
                # Non-aggregate definition
                alias='customer',
                definition=customers.id,
                label='Customer'
            ),
            Field(
                # Date/Time type, also non-aggregate
                alias='date',
                definition=analytics.timestamp,
                type=DataType.date,
                label='Date'
            ),
            Field(
                # Text type, also non-aggregate
                alias='device_type',
                definition=analytics.device_type,
                type=DataType.text,
                label='Device_type'
            ),
            Field(
                # Aggregate definition (The SUM function aggregates a group of values into a single value)
                alias='clicks',
                definition=fn.Sum(analytics.clicks),
                label='Clicks'
            ),
            Field(
                # Aggregate definition (The SUM function aggregates a group of values into a single value)
                alias='customer-spend-per-clicks',
                definition=fn.Sum(analytics.customer_spend / analytics.clicks),
                type=DataType.number,
                label='Spend / Clicks'
            )
        ],
        joins=[
            Join(customers, analytics.customer_id == customers.id),
        ],

.. _dataset_example_end:

.. _dataset_query_example_start:

Building queries with a Data Set
""""""""""""""""""""""""""""""""

Use the ``query`` property of a data set instance to start building a data set query. A data set query allows method calls to be chained together to select what should be included in the result.

This example uses the data set defined above

.. code-block:: python

   from fireant import Matplotlib, Pandas, day

    matplotlib_chart, pandas_df = my_dataset.data \
         .dimension(
            # Select the date dimension with a daily interval to group the data by the day applies to
            # dimensions are referenced by `dataset.fields.{alias}`
            day(my_dataset.fields.date),

            # Select the device_type dimension to break the data down further by which device it applies to
            my_dataset.fields.device_type,
         ) \
         .filter(
            # Filter the result set to data to the year of 2018
            my_dataset.fields.date.between(date(2018, 1, 1), date(2018, 12, 31))
         ) \
         # Add a week over week reference to compare data to values from the week prior
         .reference(WeekOverWeek(dataset.fields.date))
         .widget(
            # Add a matpotlib chart widget
            Matplotlib()
               # Add axes with series to the chart
               .axis(Matplotlib.LineSeries(dataset.fields.clicks))

               # metrics are referenced by `dataset.metrics.{alias}`
               .axis(Matplotlib.ColumnSeries(
                   my_dataset.fields['customer-spend-per-clicks']
               ))
         ) \
         .widget(
            # Add a pandas data frame table widget
            Pandas(
                my_dataset.fields.clicks,
                my_dataset.fields['customer-spend-per-clicks']
            )
         ) \
         .fetch()

    # Display the chart
    matplotlib_chart.plot()

    # Display the chart
    print(pandas_df)

.. _dataset_query_example_end:

License
-------

Copyright 2020 KAYAK Germany, GmbH

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.


Crafted with ♥ in Berlin.

.. _license_end:


.. _available_badges_start:

.. |BuildStatus| image:: https://travis-ci.org/kayak/fireant.svg?branch=master
   :target: https://travis-ci.org/kayak/fireant
.. |CoverageStatus| image:: https://coveralls.io/repos/kayak/fireant/badge.svg?branch=master&service=github
   :target: https://coveralls.io/github/kayak/fireant?branch=master
.. |Codacy| image:: https://api.codacy.com/project/badge/Grade/832b5a7dda8949c3b2ede28deada4569
   :target: https://www.codacy.com/app/twheys/fireant
.. |Docs| image:: https://readthedocs.org/projects/fireant/badge/?version=latest
   :target: http://fireant.readthedocs.io/en/latest/
.. |PyPi| image:: https://img.shields.io/pypi/v/fireant.svg?style=flat
   :target: https://pypi.python.org/pypi/fireant
.. |License| image:: https://img.shields.io/hexpm/l/plug.svg?maxAge=2592000
   :target: http://www.apache.org/licenses/LICENSE-2.0

.. _available_badges_end:

.. _appendix_start:

.. |Brand| replace:: *fireant*

.. |FeatureDataSet| replace:: *DataSet*
.. |FeatureField| replace:: *Field*
.. |FeatureFilter| replace:: *Filter*
.. |FeatureReference| replace:: *Reference*
.. |FeatureOperation| replace:: *Operation*

.. |ClassDataSet| replace:: ``fireant.DataSet <fireant.dataset.klass.DataSet>``
.. |ClassDatabase| replace:: ``fireant.database.Database <fireant.database.base.Database>``
.. |ClassJoin| replace:: ``fireant.Join <fireant.dataset.joins.Join>``
.. |ClassMetric| replace:: ``fireant.Field <fireant.dataset.fields.Field>``
.. |ClassThreadPoolConcurrencyMiddleware| replace:: ``fireant.middleware.ThreadPoolConcurrencyMiddleware <fireant.middleware.concurrency.ThreadPoolConcurrencyMiddleware>``
.. |ClassBaseConcurrencyMiddleware| replace:: ``fireant.middleware.BaseConcurrencyMiddleware <fireant.middleware.concurrency.BaseConcurrencyMiddleware>``

.. |ClassBooleanDimension| replace:: ``fireant.dataset.dimensions.BooleanDimension``
.. |ClassContDimension| replace:: ``fireant.dataset.dimensions.ContinuousDimension``
.. |ClassDateDimension| replace:: ``fireant.dataset.dimensions.DatetimeDimension``
.. |ClassCatDimension| replace:: ``fireant.dataset.dimensions.CategoricalDimension``
.. |ClassUniqueDimension| replace:: ``fireant.dataset.dimensions.UniqueDimension``
.. |ClassDisplayDimension| replace:: ``fireant.dataset.dimensions.DisplayDimension``

.. |ClassFilter| replace:: ``fireant.dataset.filters.Filter``
.. |ClassComparatorFilter| replace:: ``fireant.dataset.filters.ComparatorFilter``
.. |ClassBooleanFilter| replace:: ``fireant.dataset.filters.BooleanFilter``
.. |ClassContainsFilter| replace:: ``fireant.dataset.filters.ContainsFilter``
.. |ClassExcludesFilter| replace:: ``fireant.dataset.filters.ExcludesFilter``
.. |ClassRangeFilter| replace:: ``fireant.dataset.filters.RangeFilter``
.. |ClassPatternFilter| replace:: ``fireant.dataset.filters.PatternFilter``
.. |ClassAntiPatternFilter| replace:: ``fireant.dataset.filters.AntiPatternFilter``

.. |ClassReference| replace:: ``fireant.dataset.references.Reference``

.. |ClassWidget| replace:: ``fireant.widgets.base.Widget``
.. |ClassPandasWidget| replace:: ``fireant.widgets.pandas.Pandas``
.. |ClassHighChartsWidget| replace:: ``fireant.widgets.highcharts.HighCharts <fireant.widgets.highcharts.HighCharts>``
.. |ClassHighChartsSeries| replace:: ``fireant.widgets.highcharts.Series <fireant.widgets.chart_base.Series>``

.. |ClassOperation| replace:: ``fireant.dataset.operations.Operation``

.. |ClassVerticaDatabase| replace:: ``fireant.database.VerticaDatabase``
.. |ClassMySQLDatabase| replace:: ``fireant.database.MySQLDatabase``
.. |ClassPostgreSQLDatabase| replace:: ``fireant.database.PostgreSQLDatabase``
.. |ClassRedshiftDatabase| replace:: ``fireant.database.RedshiftDatabase``

.. |ClassDatetimeInterval| replace:: ``fireant.DatetimeInterval <fireant.dataset.intervals.DatetimeInterval>``

.. |ClassTable| replace:: ``pypika.Table``
.. |ClassTables| replace:: ``pypika.Tables``

.. _PyPika: https://github.com/kayak/pypika/
.. _Pandas: http://pandas.pydata.org/
.. _Jupyter: http://jupyter.org/
.. _Matplotlib: http://matplotlib.org/
.. _HighCharts: http://www.highcharts.com/
.. _React-Table: https://react-table.js.org/

.. _appendix_end:

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "fireant",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8.0,<4.0.0",
    "maintainer_email": "",
    "keywords": "",
    "author": "\u0104\u017euolas Kru\u0161na",
    "author_email": "akrusna@kayak.com",
    "download_url": "https://files.pythonhosted.org/packages/2d/02/002af5bbdb9ca7df6afd572d6d93921565ac6d650466246c2d296a69380b/fireant-8.0.4.tar.gz",
    "platform": null,
    "description": "FireAnt - Analytics and Reporting\n=================================\n\n.. _intro_start:\n\n|BuildStatus|  |CoverageStatus|  |Codacy|  |Docs|  |PyPi|  |License|\n\n\n|Brand| is a a data analysis tool used for quickly building charts, tables, reports, and dashboards. It defines a schema for configuring metrics and dimensions which removes most of the leg work of writing queries and formatting charts. |Brand| even works great with Jupyter notebooks and in the Python shell providing quick and easy access to your data.\n\n.. _intro_end:\n\nRead more at http://fireant.readthedocs.io/en/latest/\n\nInstallation\n------------\n\n.. _installation_start:\n\nTo install |Brand|, run the following command in the terminal:\n\n.. code-block:: bash\n\n    pip install fireant\n\n\n.. _installation_end:\n\nIntroduction\n------------\n\n|Brand| arose out of an environment where several different teams, each working with data sets often with crossover, were individually building their own dashboard platforms. |Brand| was developed as a centralized way of building dashboards without the legwork.\n\n|Brand| is used to create configurations of data sets using |FeatureDataSet| which backs a database table containing analytics and defines sets of |FeatureField|. A |FeatureField| can be used to group data by properties, such as a timestamp, an account, a device type, etc, or to render quantifiers such as clicks, ROI, conversions into a widget such as a chart or table.\n\nA |FeatureDataSet| exposes a rich builder API that allows a wide range of queries to be constructed that can be rendered as several widgets. A |FeatureDataSet| can be used directly in a Jupyter_ notebook, eliminating the need to write repetitive custom queries and render the data in visualizations.\n\nData Sets\n---------\n\n|FeatureDataSet| are the core component of |Brand|. A |FeatureDataSet| is a representation of a data set and is used to execute queries and transform result sets into widgets such as charts or tables.\n\nA |FeatureDataSet| requires only a couple of definitions in order to use: A database connector, a database table, join tables, and dimensions and metrics. Metrics and Dimension definitions tell |Brand| how to query and use data in widgets. Once a dataset is created, it's query API can be used to build queries with just a few lines of code selecting which dimensions and metrics to use and how to filter the data.\n\n.. _dataset_example_start:\n\nInstantiating a Data Set\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\n.. code-block:: python\n\n    from fireant.dataset import *\n    from fireant.database import VerticaDatabase\n    from pypika import Tables, functions as fn\n\n    vertica_database = VerticaDatabase(user='myuser', password='mypassword')\n    analytics, customers = Tables('analytics', 'customers')\n\n    my_dataset = DataSet(\n        database=vertica_database,\n        table=analytics,\n        fields=[\n            Field(\n                # Non-aggregate definition\n                alias='customer',\n                definition=customers.id,\n                label='Customer'\n            ),\n            Field(\n                # Date/Time type, also non-aggregate\n                alias='date',\n                definition=analytics.timestamp,\n                type=DataType.date,\n                label='Date'\n            ),\n            Field(\n                # Text type, also non-aggregate\n                alias='device_type',\n                definition=analytics.device_type,\n                type=DataType.text,\n                label='Device_type'\n            ),\n            Field(\n                # Aggregate definition (The SUM function aggregates a group of values into a single value)\n                alias='clicks',\n                definition=fn.Sum(analytics.clicks),\n                label='Clicks'\n            ),\n            Field(\n                # Aggregate definition (The SUM function aggregates a group of values into a single value)\n                alias='customer-spend-per-clicks',\n                definition=fn.Sum(analytics.customer_spend / analytics.clicks),\n                type=DataType.number,\n                label='Spend / Clicks'\n            )\n        ],\n        joins=[\n            Join(customers, analytics.customer_id == customers.id),\n        ],\n\n.. _dataset_example_end:\n\n.. _dataset_query_example_start:\n\nBuilding queries with a Data Set\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nUse the ``query`` property of a data set instance to start building a data set query. A data set query allows method calls to be chained together to select what should be included in the result.\n\nThis example uses the data set defined above\n\n.. code-block:: python\n\n   from fireant import Matplotlib, Pandas, day\n\n    matplotlib_chart, pandas_df = my_dataset.data \\\n         .dimension(\n            # Select the date dimension with a daily interval to group the data by the day applies to\n            # dimensions are referenced by `dataset.fields.{alias}`\n            day(my_dataset.fields.date),\n\n            # Select the device_type dimension to break the data down further by which device it applies to\n            my_dataset.fields.device_type,\n         ) \\\n         .filter(\n            # Filter the result set to data to the year of 2018\n            my_dataset.fields.date.between(date(2018, 1, 1), date(2018, 12, 31))\n         ) \\\n         # Add a week over week reference to compare data to values from the week prior\n         .reference(WeekOverWeek(dataset.fields.date))\n         .widget(\n            # Add a matpotlib chart widget\n            Matplotlib()\n               # Add axes with series to the chart\n               .axis(Matplotlib.LineSeries(dataset.fields.clicks))\n\n               # metrics are referenced by `dataset.metrics.{alias}`\n               .axis(Matplotlib.ColumnSeries(\n                   my_dataset.fields['customer-spend-per-clicks']\n               ))\n         ) \\\n         .widget(\n            # Add a pandas data frame table widget\n            Pandas(\n                my_dataset.fields.clicks,\n                my_dataset.fields['customer-spend-per-clicks']\n            )\n         ) \\\n         .fetch()\n\n    # Display the chart\n    matplotlib_chart.plot()\n\n    # Display the chart\n    print(pandas_df)\n\n.. _dataset_query_example_end:\n\nLicense\n-------\n\nCopyright 2020 KAYAK Germany, GmbH\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\n\nCrafted with \u2665 in Berlin.\n\n.. _license_end:\n\n\n.. _available_badges_start:\n\n.. |BuildStatus| image:: https://travis-ci.org/kayak/fireant.svg?branch=master\n   :target: https://travis-ci.org/kayak/fireant\n.. |CoverageStatus| image:: https://coveralls.io/repos/kayak/fireant/badge.svg?branch=master&service=github\n   :target: https://coveralls.io/github/kayak/fireant?branch=master\n.. |Codacy| image:: https://api.codacy.com/project/badge/Grade/832b5a7dda8949c3b2ede28deada4569\n   :target: https://www.codacy.com/app/twheys/fireant\n.. |Docs| image:: https://readthedocs.org/projects/fireant/badge/?version=latest\n   :target: http://fireant.readthedocs.io/en/latest/\n.. |PyPi| image:: https://img.shields.io/pypi/v/fireant.svg?style=flat\n   :target: https://pypi.python.org/pypi/fireant\n.. |License| image:: https://img.shields.io/hexpm/l/plug.svg?maxAge=2592000\n   :target: http://www.apache.org/licenses/LICENSE-2.0\n\n.. _available_badges_end:\n\n.. _appendix_start:\n\n.. |Brand| replace:: *fireant*\n\n.. |FeatureDataSet| replace:: *DataSet*\n.. |FeatureField| replace:: *Field*\n.. |FeatureFilter| replace:: *Filter*\n.. |FeatureReference| replace:: *Reference*\n.. |FeatureOperation| replace:: *Operation*\n\n.. |ClassDataSet| replace:: ``fireant.DataSet <fireant.dataset.klass.DataSet>``\n.. |ClassDatabase| replace:: ``fireant.database.Database <fireant.database.base.Database>``\n.. |ClassJoin| replace:: ``fireant.Join <fireant.dataset.joins.Join>``\n.. |ClassMetric| replace:: ``fireant.Field <fireant.dataset.fields.Field>``\n.. |ClassThreadPoolConcurrencyMiddleware| replace:: ``fireant.middleware.ThreadPoolConcurrencyMiddleware <fireant.middleware.concurrency.ThreadPoolConcurrencyMiddleware>``\n.. |ClassBaseConcurrencyMiddleware| replace:: ``fireant.middleware.BaseConcurrencyMiddleware <fireant.middleware.concurrency.BaseConcurrencyMiddleware>``\n\n.. |ClassBooleanDimension| replace:: ``fireant.dataset.dimensions.BooleanDimension``\n.. |ClassContDimension| replace:: ``fireant.dataset.dimensions.ContinuousDimension``\n.. |ClassDateDimension| replace:: ``fireant.dataset.dimensions.DatetimeDimension``\n.. |ClassCatDimension| replace:: ``fireant.dataset.dimensions.CategoricalDimension``\n.. |ClassUniqueDimension| replace:: ``fireant.dataset.dimensions.UniqueDimension``\n.. |ClassDisplayDimension| replace:: ``fireant.dataset.dimensions.DisplayDimension``\n\n.. |ClassFilter| replace:: ``fireant.dataset.filters.Filter``\n.. |ClassComparatorFilter| replace:: ``fireant.dataset.filters.ComparatorFilter``\n.. |ClassBooleanFilter| replace:: ``fireant.dataset.filters.BooleanFilter``\n.. |ClassContainsFilter| replace:: ``fireant.dataset.filters.ContainsFilter``\n.. |ClassExcludesFilter| replace:: ``fireant.dataset.filters.ExcludesFilter``\n.. |ClassRangeFilter| replace:: ``fireant.dataset.filters.RangeFilter``\n.. |ClassPatternFilter| replace:: ``fireant.dataset.filters.PatternFilter``\n.. |ClassAntiPatternFilter| replace:: ``fireant.dataset.filters.AntiPatternFilter``\n\n.. |ClassReference| replace:: ``fireant.dataset.references.Reference``\n\n.. |ClassWidget| replace:: ``fireant.widgets.base.Widget``\n.. |ClassPandasWidget| replace:: ``fireant.widgets.pandas.Pandas``\n.. |ClassHighChartsWidget| replace:: ``fireant.widgets.highcharts.HighCharts <fireant.widgets.highcharts.HighCharts>``\n.. |ClassHighChartsSeries| replace:: ``fireant.widgets.highcharts.Series <fireant.widgets.chart_base.Series>``\n\n.. |ClassOperation| replace:: ``fireant.dataset.operations.Operation``\n\n.. |ClassVerticaDatabase| replace:: ``fireant.database.VerticaDatabase``\n.. |ClassMySQLDatabase| replace:: ``fireant.database.MySQLDatabase``\n.. |ClassPostgreSQLDatabase| replace:: ``fireant.database.PostgreSQLDatabase``\n.. |ClassRedshiftDatabase| replace:: ``fireant.database.RedshiftDatabase``\n\n.. |ClassDatetimeInterval| replace:: ``fireant.DatetimeInterval <fireant.dataset.intervals.DatetimeInterval>``\n\n.. |ClassTable| replace:: ``pypika.Table``\n.. |ClassTables| replace:: ``pypika.Tables``\n\n.. _PyPika: https://github.com/kayak/pypika/\n.. _Pandas: http://pandas.pydata.org/\n.. _Jupyter: http://jupyter.org/\n.. _Matplotlib: http://matplotlib.org/\n.. _HighCharts: http://www.highcharts.com/\n.. _React-Table: https://react-table.js.org/\n\n.. _appendix_end:\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "",
    "version": "8.0.4",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57d32afadead00a26842777e07c9f62a45e7eda95c2f328368a3db8fbf064d17",
                "md5": "5e15a47eaf5af917589b09e9f7edcb62",
                "sha256": "38ecdeeb2fc2195672483d0d0fa8a8577ed185a99083cdc36218a6ea6391f71c"
            },
            "downloads": -1,
            "filename": "fireant-8.0.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5e15a47eaf5af917589b09e9f7edcb62",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8.0,<4.0.0",
            "size": 191412,
            "upload_time": "2023-11-07T13:23:30",
            "upload_time_iso_8601": "2023-11-07T13:23:30.152430Z",
            "url": "https://files.pythonhosted.org/packages/57/d3/2afadead00a26842777e07c9f62a45e7eda95c2f328368a3db8fbf064d17/fireant-8.0.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d02002af5bbdb9ca7df6afd572d6d93921565ac6d650466246c2d296a69380b",
                "md5": "984cbfa521c63c73df3739b880edd85f",
                "sha256": "1af8e859e7219a85f59e8f19d3625bd774c2d8784516aedd1e80122c0b8a93e1"
            },
            "downloads": -1,
            "filename": "fireant-8.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "984cbfa521c63c73df3739b880edd85f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8.0,<4.0.0",
            "size": 146054,
            "upload_time": "2023-11-07T13:23:33",
            "upload_time_iso_8601": "2023-11-07T13:23:33.770664Z",
            "url": "https://files.pythonhosted.org/packages/2d/02/002af5bbdb9ca7df6afd572d6d93921565ac6d650466246c2d296a69380b/fireant-8.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-07 13:23:33",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "fireant"
}
        
Elapsed time: 0.13891s