Metadata-Version: 2.4
Name: lotterybr
Version: 1.0.4
Summary: A Python package to access and analyze Brazilian lottery data.
Home-page: https://github.com/salvnetto/lotterybr-py
Author: Fábio N. Demarqui
Author-email: fndemarqui@est.ufmg.br
Maintainer: Salvador Netto, Tomás Bernardes
Maintainer-email: salvv.netto@gmail.com
License: MIT
Project-URL: Source Code, https://github.com/salvnetto/pyreglin
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Database
Requires-Python: >3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy==2.1.3
Requires-Dist: pandas==2.2.3
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: maintainer
Dynamic: maintainer-email
Dynamic: platform
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# lotterybr

<!-- badges: start -->


<!-- badges: end -->

The goal of the package is to provide a function to automatically import
data from the lotteries of Caixa Economica Federal into the Python
environment. Data from the lotteries of Caixa Economica Federal includes
information on various games such as Mega-Sena, Lotofacil, Quina, among
others. They are downloaded from the official website of the Federal
Savings Bank at <https://loterias.caixa.gov.br/>.

## Installation

You can install the development version of lotterybr like so:

``` python
pip install lotterybr
```

## Example

Downloading Lotofacil winners data:

``` python

from lotterybr import get_data

lotofacil = get_data(game= "lotofacil", type= "winners")
```
