@@ -135,12 +135,19 @@ def __init__(
135135
136136 @cached_property
137137 def quote (self ) -> QuoteResource :
138+ """Consulte informações detalhadas sobre ações, BDRs, ETFs e índices da B3.
139+
140+ Obtenha preços em tempo real, dados fundamentalistas, históricos e dividendos.
141+ """
138142 from .resources .quote import QuoteResource
139143
140144 return QuoteResource (self )
141145
142146 @cached_property
143147 def available (self ) -> AvailableResource :
148+ """
149+ Ferramentas auxiliares para descobrir ativos disponíveis e verificar a saúde da API.
150+ """
144151 from .resources .available import AvailableResource
145152
146153 return AvailableResource (self )
@@ -164,12 +171,6 @@ def with_streaming_response(self) -> BrapiWithStreamedResponse:
164171 def qs (self ) -> Querystring :
165172 return Querystring (array_format = "comma" )
166173
167- @property
168- @override
169- def auth_headers (self ) -> dict [str , str ]:
170- api_key = self .api_key
171- return {"Authorization" : f"Bearer { api_key } " }
172-
173174 @property
174175 @override
175176 def default_headers (self ) -> dict [str , str | Omit ]:
@@ -347,12 +348,19 @@ def __init__(
347348
348349 @cached_property
349350 def quote (self ) -> AsyncQuoteResource :
351+ """Consulte informações detalhadas sobre ações, BDRs, ETFs e índices da B3.
352+
353+ Obtenha preços em tempo real, dados fundamentalistas, históricos e dividendos.
354+ """
350355 from .resources .quote import AsyncQuoteResource
351356
352357 return AsyncQuoteResource (self )
353358
354359 @cached_property
355360 def available (self ) -> AsyncAvailableResource :
361+ """
362+ Ferramentas auxiliares para descobrir ativos disponíveis e verificar a saúde da API.
363+ """
356364 from .resources .available import AsyncAvailableResource
357365
358366 return AsyncAvailableResource (self )
@@ -376,12 +384,6 @@ def with_streaming_response(self) -> AsyncBrapiWithStreamedResponse:
376384 def qs (self ) -> Querystring :
377385 return Querystring (array_format = "comma" )
378386
379- @property
380- @override
381- def auth_headers (self ) -> dict [str , str ]:
382- api_key = self .api_key
383- return {"Authorization" : f"Bearer { api_key } " }
384-
385387 @property
386388 @override
387389 def default_headers (self ) -> dict [str , str | Omit ]:
@@ -486,12 +488,19 @@ def __init__(self, client: Brapi) -> None:
486488
487489 @cached_property
488490 def quote (self ) -> quote .QuoteResourceWithRawResponse :
491+ """Consulte informações detalhadas sobre ações, BDRs, ETFs e índices da B3.
492+
493+ Obtenha preços em tempo real, dados fundamentalistas, históricos e dividendos.
494+ """
489495 from .resources .quote import QuoteResourceWithRawResponse
490496
491497 return QuoteResourceWithRawResponse (self ._client .quote )
492498
493499 @cached_property
494500 def available (self ) -> available .AvailableResourceWithRawResponse :
501+ """
502+ Ferramentas auxiliares para descobrir ativos disponíveis e verificar a saúde da API.
503+ """
495504 from .resources .available import AvailableResourceWithRawResponse
496505
497506 return AvailableResourceWithRawResponse (self ._client .available )
@@ -511,12 +520,19 @@ def __init__(self, client: AsyncBrapi) -> None:
511520
512521 @cached_property
513522 def quote (self ) -> quote .AsyncQuoteResourceWithRawResponse :
523+ """Consulte informações detalhadas sobre ações, BDRs, ETFs e índices da B3.
524+
525+ Obtenha preços em tempo real, dados fundamentalistas, históricos e dividendos.
526+ """
514527 from .resources .quote import AsyncQuoteResourceWithRawResponse
515528
516529 return AsyncQuoteResourceWithRawResponse (self ._client .quote )
517530
518531 @cached_property
519532 def available (self ) -> available .AsyncAvailableResourceWithRawResponse :
533+ """
534+ Ferramentas auxiliares para descobrir ativos disponíveis e verificar a saúde da API.
535+ """
520536 from .resources .available import AsyncAvailableResourceWithRawResponse
521537
522538 return AsyncAvailableResourceWithRawResponse (self ._client .available )
@@ -536,12 +552,19 @@ def __init__(self, client: Brapi) -> None:
536552
537553 @cached_property
538554 def quote (self ) -> quote .QuoteResourceWithStreamingResponse :
555+ """Consulte informações detalhadas sobre ações, BDRs, ETFs e índices da B3.
556+
557+ Obtenha preços em tempo real, dados fundamentalistas, históricos e dividendos.
558+ """
539559 from .resources .quote import QuoteResourceWithStreamingResponse
540560
541561 return QuoteResourceWithStreamingResponse (self ._client .quote )
542562
543563 @cached_property
544564 def available (self ) -> available .AvailableResourceWithStreamingResponse :
565+ """
566+ Ferramentas auxiliares para descobrir ativos disponíveis e verificar a saúde da API.
567+ """
545568 from .resources .available import AvailableResourceWithStreamingResponse
546569
547570 return AvailableResourceWithStreamingResponse (self ._client .available )
@@ -561,12 +584,19 @@ def __init__(self, client: AsyncBrapi) -> None:
561584
562585 @cached_property
563586 def quote (self ) -> quote .AsyncQuoteResourceWithStreamingResponse :
587+ """Consulte informações detalhadas sobre ações, BDRs, ETFs e índices da B3.
588+
589+ Obtenha preços em tempo real, dados fundamentalistas, históricos e dividendos.
590+ """
564591 from .resources .quote import AsyncQuoteResourceWithStreamingResponse
565592
566593 return AsyncQuoteResourceWithStreamingResponse (self ._client .quote )
567594
568595 @cached_property
569596 def available (self ) -> available .AsyncAvailableResourceWithStreamingResponse :
597+ """
598+ Ferramentas auxiliares para descobrir ativos disponíveis e verificar a saúde da API.
599+ """
570600 from .resources .available import AsyncAvailableResourceWithStreamingResponse
571601
572602 return AsyncAvailableResourceWithStreamingResponse (self ._client .available )
0 commit comments