Metadata-Version: 2.4
Name: xbrl-us
Version: 1.0.1
Summary: Python wrapper for xbrl.us API
Home-page: https://github.com/hamid-vakilzadeh/python-xbrl-us
Author: hamid-vakilzadeh
Author-email: vakilzas@uww.edu
License: MIT
Project-URL: Documentation, https://python-xbrl-us.readthedocs.io/
Project-URL: Changelog, https://python-xbrl-us.readthedocs.io/en/latest/changelog.html
Project-URL: Issue Tracker, https://github.com/hamid-vakilzadeh/python-xbrl-us/issues
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities
Requires-Python: >=3.9
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: requests<3,>=2.25.1
Requires-Dist: pandas<3,>=1.3.0
Requires-Dist: PyYAML<7,>=5.3
Requires-Dist: streamlit<2,>=1.44.1
Requires-Dist: retry<1,>=0.9.2
Requires-Dist: tqdm<5,>=4.61.2
Requires-Dist: stqdm<1,>=0.0.5
Requires-Dist: aiohttp<4,>=3.8.4
Requires-Dist: nest-asyncio<2,>=1.5.6
Requires-Dist: cryptography<45,>=44.0.2
Provides-Extra: arrow
Requires-Dist: pyarrow<13.0.0,>=10.0.0; extra == "arrow"
Provides-Extra: complete
Requires-Dist: pyarrow<13.0.0,>=10.0.0; extra == "complete"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

======================
XBRL-US Python Library
======================

|Python package| |Docs| |license| |Versions|

.. |Python package| image:: https://github.com/hamid-vakilzadeh/python-xbrl-us/actions/workflows/python-package.yml/badge.svg
   :alt: Python package
   :target: https://github.com/hamid-vakilzadeh/python-xbrl-us/actions/workflows/python-package.yml

.. |Downloads| image:: https://img.shields.io/pypi/dm/xbrl-us?logo=pypi&logoColor=orange&color=blue
    :alt: PyPI - Downloads
    :target: https://pypi.org/project/xbrl-us/

.. |Versions| image:: https://img.shields.io/pypi/pyversions/xbrl-us?logo=python&logoColor=yellow&color=yellow
    :alt: PyPI - Python Version
    :target: https://pypi.org/project/xbrl-us/

.. |Docs| image:: https://img.shields.io/readthedocs/python-xbrl-us/latest?logo=read-the-docs&logoColor=white
    :target: https://python-xbrl-us.readthedocs.io/en/latest/?badge=latest
    :alt: Read the Docs (latest)

.. |license| image:: https://img.shields.io/github/license/hamid-vakilzadeh/python-xbrl-us?logo=github&logoColor=white&color=blue
   :target: https://github.com/hamid-vakilzadeh/python-xbrl-us/blob/main/LICENSE

About
=====

The XBRL US Python Wrapper is a powerful tool for interacting with the XBRL US API,
providing seamless integration of XBRL data into Python applications.
This wrapper simplifies the process of retrieving and analyzing financial data in XBRL format,
enabling users to access a wide range of financial information for companies registered with the U.S.
Securities and Exchange Commission (SEC).

It's important to note that while the XBRL US Python Wrapper is free and distributed under the permissive MIT license,
the usage of the underlying XBRL US API is subject to the policies and terms defined by XBRL US.
These policies govern the access, usage, and restrictions imposed on the API data and services.
Users of the XBRL US Python Wrapper should review and comply with the XBRL US policies to ensure appropriate
usage of the API and adherence to any applicable licensing terms.

.. important::

    Any and all use of the XBRL APIs to return
    data from the XBRL US Database of Public Filings is in explicit consent and
    agreement with the `XBRL API Terms of Agreement <https://xbrl.us/home/about/legal/xbrl-api-clientid/>`_.

.. note::
    If you are utilizing the XBRL US Python Wrapper for research purposes, we kindly request that you cite the following paper:

    [FILL: Insert Paper Title]

    [FILL: Authors]

    [FILL: Publication Details]


Key Features
============

- **Specialized Methods**: Use `xbrl.fact` and `xbrl.report` for detailed type suggestions and parameter definitions.
- **Flexible Querying**: Retrieve data with customizable fields, parameters, and sorting options.
- **Pandas Integration**: Return results as JSON or Pandas DataFrames for easy analysis.
- **Browser Interface**: Explore and analyze XBRL data directly in your browser.

.. image:: images/autocompletion-demo.gif
   :alt: A demonstration of the Autocomplete
   :width: 800px


Tutorial ✏️📖📚
================

This tutorial will guide you through using the XBRL-US Python library to interact with the XBRL API.
The XBRL-US library provides a convenient way to query and retrieve financial data from the XBRL API using Python.

1. Prerequisites
~~~~~~~~~~~~~~~~

Before you begin, ensure you have the following:

* **Python installed on your system**.
  The XBRL-US library supports Python 3.8 and above.
* **XBRL-US API credentials**.
  You can obtain your credentials by registering for a
  free XBRL-US account at https://xbrl.us/home/use/xbrl-api/.
* **XBRL-US OAuth2 Access**.
  You can obtain your client ID and client secret by registering for a
  filling the request form at https://xbrl.us/home/use/xbrl-api/access-token/.

You can install this package using pip:

.. code-block:: bash

    pip install xbrl-us

If you are using Jupyter Notebook, you can install the package using the following command:

.. code-block:: bash

    !pip install xbrl-us

.. caution::

        The XBRL US Python Wrapper is currently in beta and is subject to change.
        We welcome your feedback and suggestions for improvement.
        Please submit any issues or feature requests to
        the `GitHub repository <https://github.com/hamid-vakilzadeh/python-xbrl-us/issues>`_.


**Documentation**

For detailed information about the XBRL-US Python
library, you can refer to the documentation at https://python-xbrl-us.readthedocs.io/en/latest/.

**Official Documentation**

For more information about the XBRL API and its endpoints, refer to the original API documentation at https://xbrlus.github.io/xbrl-api.


2. Choose Your Preferred Approach
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

There are two distinct ways to use the XBRL-US Python package:

* **Code-Based Approach**: Import the XBRL-US Python package directly into your Python
  environment for in-depth, custom analysis (see **Code-Based Approach**)

* **Browser Interface**: For a no-code experience, navigate to the **Browser Interface**.
  This interface allows for easy exploration and analysis of XBRL data directly in your web
  browser.

.. _code-based approach:

2.1. Code-Based Approach
~~~~~~~~~~~~~~~~~~~~~~~~

Import the XBRL Library
-------------------------------

To start using the XBRL-US library,
you need to import it into your Python script:

.. code-block:: python

    from xbrl_us import XBRL

Create an Instance of XBRL Class
----------------------------------------

Next, you need to create an instance of the ``XBRL`` class,
providing your authentication credentials
(client ID, client secret, username, and password) as parameters:

.. code-block:: python

    xbrl = XBRL(
    client_id='Your client id',
    client_secret='Your client secret',
    username='Your username',
    password='Your password'
    )

Make sure to replace ``Your client id``,
``Your client secret``, ``Your username``, and
``Your password`` with your actual credentials.

Query the XBRL API
------------------

The XBRL-US library provides a query method to search
for data from the XBRL API. You can specify various
parameters and fields to filter and retrieve the
desired data.

Here's an example of using the query method to search
for specific financial facts:

.. code-block:: python

    response = xbrl.query(
        method='fact search',
        parameters={
            "concept.local-name": [
                'OperatingIncomeLoss',
                'GrossProfit',
                'OperatingExpenses',
                'OtherOperatingIncomeExpenseNet'
            ],
            "period.fiscal-year": [2009, 2010],
            "report.sic-code": range(2800, 2899)
        },
        fields=[
            'report.accession',
            'period.fiscal-year',
            'period.end',
            'period.fiscal-period',
            'fact.ultimus',
            'unit',
            'concept.local-name',
            'fact.value',
            'fact.id',
            'entity.id',
            'entity.cik',
            'entity.name',
            'report.sic-code',
        ],
        limit=100,
        as_dataframe=True
    )

In this example, we are searching for facts related
to specific concepts, fiscal years, and SIC codes.
We are also specifying the fields we want to retrieve
in the response. The ``limit`` parameter restricts the
number of facts returned to 100, and ``as_dataframe=True``
ensures the response is returned as a ``Pandas DataFrame``.

Perform Additional Queries
----------------------------------

You can use the same query method to call other API
endpoints by changing the method parameter and
providing the relevant parameters and fields.

Here's an example of using the query method to
search for a specific fact by its ID:

.. code-block:: python

    response = xbrl.query(
    method='fact id',
    parameters={'fact.id': 123},
    fields=[
        'report.accession',
        'period.fiscal-year',
        'period.end',
        'period.fiscal-period',
        'fact.ultimus',
        'unit',
        'concept.local-name',
        'fact.value',
        'fact.id',
        'entity.id',
        'entity.cik',
        'entity.name',
        'report.sic-code',
    ],
    as_dataframe=False
    )

Congratulations! You have learned how to use the XBRL-US Python library to interact with the XBRL API.
In this example you will receive the data in json format as the ``as_dataframe`` parameter is set to ``False``.

Using Specialized Methods
--------------------------

The XBRL-US library now includes two specialized methods, ``xbrl.fact`` and ``xbrl.report``, which are tailored versions of the ``query`` method. These methods provide detailed type suggestions and definitions for their parameters, making it easier to construct valid API requests and reducing the chance of errors.

The example below demonstrates how to retrieve exactly the same data as the query shown above. The key advantage is the enhanced autocompletion and IDE suggestions, which significantly improve your development experience:

.. code-block:: python

    response = xbrl.fact(
        endpoint='/fact/search',
        fields=[
            'report.accession',
            'period.fiscal-year',
            'period.end',
            'period.fiscal-period',
            'fact.ultimus',
            'unit',
            'concept.local-name',
            'fact.value',
            'fact.id',
            'entity.id',
            'entity.cik',
            'entity.name',
            'report.sic-code',
        ],
        parameters={
            "concept_local_name": [
                'OperatingIncomeLoss',
                'GrossProfit',
                'OperatingExpenses',
                'OtherOperatingIncomeExpenseNet'
            ],
            "period_fiscal_year": [2009, 2010],
            "report_sic_code": range(2800, 2899)
        },
        limit=100,
        as_dataframe=True
    )

**Why Use Specialized Methods?**

Unlike the generic ``query`` method, these specialized methods:

* Offer precise type hints for fields, parameters, and sorting options
* Align with the XBRL US API structure, using proper endpoint naming conventions
* Simplify query construction with IDE-guided valid options
* Include definitions for each parameter
* Simplify the process of building queries by guiding you with valid options directly in your IDE

These specialized methods work similarly to ``query`` but are specific to their respective data types and provide better IDE support through type hints.

.. note::
    While the ``query`` method is still available, we recommend using ``xbrl.fact`` and ``xbrl.report`` for a more guided and error-resistant experience.

.. _browser interface:

2.2 Browser Interface 🖥️
~~~~~~~~~~~~~~~~~~~~~~~~

This feature is designed to make our package even more user-friendly, allowing users to interact and work with XBRL data
directly through a graphical interface, in addition to the existing code-based methods.

The browser interface streamlines data visualization, simplifies navigation, and enhances user interactions.
With this intuitive, user-friendly interface, you can easily explore, interpret, and analyze XBRL data in real-time,
right from your web browser.

Key Features:

* Create Real-time queries right in your browser
* Intuitive navigation and search features
* Filtering and sorting options
* Seamless integration with the existing XBRL-US Python API

Getting started is as simple as ever.
Update your XBRL-US Python package to the latest version and launch the new Browser Interface from the package menu.

Getting Started with the Browser Interface
------------------------------------------

Getting started is as simple as ever.
First, ensure you have the latest version of ``xbrl-us`` installed by running the following code:

.. code-block:: bash

    pip install xbrl-us --upgrade

or if you are on a Jupyter Notebook:

.. code-block:: bash

    !pip install xbrl-us --upgrade

Next, launch the new Browser Interface from the package menu:

.. code-block:: bash

    python -m xbrl_us

or if you are on a Jupyter Notebook:

.. code-block:: bash

    !python -m xbrl_us

That is it!
You should now see the new Browser Interface open in your default web browser.

Happy data exploring!

.. note::

    Please note, while we have tested the interface extensively, this is its initial release.
    We encourage users to provide feedback to help us further improve the tool. We value your input!
    You can also find tutorials, example codes, and more resources to help you get started.



Development
===========

To run all the tests run:

.. code-block:: bash

    tox


Note, to combine the coverage data from all the tox environments run:

.. list-table::
    :widths: 10 90
    :stub-columns: 1

    * - Windows
      - .. code-block:: bash

            set PYTEST_ADDOPTS=--cov-append
            tox


    * - Other
      - .. code-block:: bash

            PYTEST_ADDOPTS=--cov-append tox


Changelog
=========

1.0.1 (2025-04-18)
~~~~~~~~~~~~~~~~~~~

* **Enhanced Security for Credentials**:
   - Improved encryption for locally stored credentials
   - Added clearer user feedback for credential storage operations

1.0.0 (2025-04-18)
~~~~~~~~~~~~~~~~~~~

* **API Terminology Alignment**: Renamed parameter ``method`` to ``endpoint`` in ``xbrl.query`` to better align with XBRL US API terminology
* **Enhanced Streamlit Interface**:
   - Updated interface to work with the new ``endpoint`` parameter
   - Added support for many additional XBRL endpoints
   - Added field definitions display for each endpoint directly in the interface
* **Enhanced Async Mode**: Improved asynchronous request handling in app.py for better performance with large queries

0.1.0 (2025-04-14)
~~~~~~~~~~~~~~~~~~~

* **New Specialized Methods**: Added specialized methods for all endpoint types (assertion, concept, cube, dimension, document, dts, entity, label, network, relationship) such as ``xbrl.fact`` and ``xbrl.report`` to replace the generic ``query`` method with more specialized, type-safe alternatives
* **Enhanced Type Hints**: Implemented detailed type suggestions for fields, parameters, and sorting options in specialized methods
* **IDE Integration**: Added comprehensive parameter definitions and documentation that appear directly in your IDE
* **Async Support**: Added ``async_mode`` parameter to all specialized methods for parallel execution of large queries


0.0.44 (2025-02-15)
~~~~~~~~~~~~~~~~~~~

* Bug fixes

0.0.44 (2025-02-09)
~~~~~~~~~~~~~~~~~~~

* added an experimental feaute for async requests
* The Parameters and Fields are no longer available in the API
* Bug fixes


0.0.43 (2024-05-08)
~~~~~~~~~~~~~~~~~~~

* fixed and issue with the offset where the query would not return the correct results

0.0.42 (2023-08-05)
~~~~~~~~~~~~~~~~~~~

* Bug fixes
* Improved Browser Interface
* Added new methods to the API for Browser Interface

0.0.41 (2023-08-04)
~~~~~~~~~~~~~~~~~~~

* Bug fixes

0.0.40 (2023-08-03)
~~~~~~~~~~~~~~~~~~~

* Improved Browser Interface
* improved error handling for requests
* Bug fixes

0.0.32 (2023-07-17)
~~~~~~~~~~~~~~~~~~~

* Improved Browser Interface
* Added ``unique`` keyword to ``query`` method
* Bug fixes

0.0.31 (2023-07-14)
~~~~~~~~~~~~~~~~~~~

* fixed dependency issues
* Bug fixes


0.0.3 (2023-07-14)
~~~~~~~~~~~~~~~~~~

* Backward compatibility with Python 3.8 and 3.9
* Bug fixes

0.0.2 (2023-07-12)
~~~~~~~~~~~~~~~~~~


* Bug fixes
* Enhanced error handling
* Improved ``methods`` attributes
* Added the ability to print the query string
* Implemented a feature to handle queries with large limits
* NEW: Introduced a web interface for the API, making it even easier to use


0.0.1 (2023-07-09)
~~~~~~~~~~~~~~~~~~

* First release on PyPI.
