Metadata-Version: 2.1
Name: Python-CartolaFC
Version: 1.4.21
Summary: Uma interface em Python para a API Rest do Cartola FC
Home-page: https://github.com/vicenteneto/python-cartolafc
Author: Vicente Neto
Author-email: sneto.vicente@gmail.com
License: MIT
Description: # Python Cartola FC API
        
        [![PyPi Version](https://img.shields.io/pypi/v/python-cartolafc.svg)](https://pypi.org/project/python-cartolafc/)
        [![Build Status](https://travis-ci.org/vicenteneto/python-cartolafc.svg?branch=master)](https://travis-ci.org/vicenteneto/python-cartolafc)
        [![Coverage Status](https://coveralls.io/repos/github/vicenteneto/python-cartolafc/badge.svg?branch=master)](https://coveralls.io/github/vicenteneto/python-cartolafc?branch=master)
        [![Requirements Status](https://requires.io/github/vicenteneto/python-cartolafc/requirements.svg?branch=master)](https://requires.io/github/vicenteneto/python-cartolafc/requirements/?branch=master)
        [![Development Status](http://img.shields.io/:status-production/stable-brightgreen.svg)](https://github.com/vicenteneto/python-cartolafc)
        [![License](http://img.shields.io/:license-mit-blue.svg)](https://github.com/vicenteneto/python-cartolafc/blob/master/LICENSE)
        
        Uma interface em Python para a API Rest do Cartola FC.
        
        
        # Índice
        
        - [Sobre este projeto](#sobre-este-projeto)
        - [Versões](#versoes)
        - [Instalação](#instalacao)
        - [Exemplo](#exemplo)
        - [Contribuintes](#contribuintes)
        - [Direitos autorais e licença](#direitos-autorais-e-licenca)
        
        
        ## Sobre este projeto
        
        Este projeto é uma interface em Python para a API REST do Cartola FC. [Cartola FC](https://cartolafc.globo.com/) é um 
        esporte fantasy sobre futebol, ou seja, é um jogo fictício no qual as pessoas montam seus times com jogadores de futebol 
        da vida real. Foi lançado no ano de 2005.
        
        Criado e mantido por [Globo.com](http://www.globo.com/) e promovido pelo canal de TV por assinatura 
        [Sportv](http://sportv.globo.com/), este jogo de futebol virtual conta com mais de 3 milhões de usuários registrados. 
        Logo na abertura da temporada 2016, o jogo registrou a sua melhor marca entre times escalados em uma única rodada em 12 
        anos de história do fantasy, incríveis 2.723.915 de usuários montaram as suas equipes para a primeira rodada do 
        Campeonato Brasileiro de 2016.
        
        Felizmente, os designers forneceram uma excelente e completa interface REST. Essa biblioteca inclui essa interface como 
        objetos de python mais convencionais.
        
        
        ## Versões
        
        Este projeto foi testado e funciona em Python 2.7, 3.4, 3.5 e 3.6.
        
        
        ## Instalação
        
        PyPI:
        
        ```bash
            $ pip install Python-CartolaFC
        ```
        
        Ou baixando o código fonte e executando:
        
        ```bash
            $ python setup.py install
        ```
        
        Versão em desenvolvimento:
        
        ```bash
            $ pip install git+https://github.com/vicenteneto/python-cartolafc.git#egg=Python-CartolaFC
        ```
        
        
        ## Exemplo
        
        A API Python-CartolaFC destina-se a mapear os objetos no CartolaFC (por exemplo, Atleta, Clube, Liga, Equipe) em objetos 
        Python facilmente gerenciados:
        
        ```python
        >>> import cartolafc
        >>> api = cartolafc.Api()
        >>> time = api.time(nome='Falydos FC')
        >>> time.ultima_pontuacao
        48.889892578125
        >>> time.info.nome
        u'Falydos FC'
        ```
        
        Mais exemplos disponíveis no Github:
        [https://github.com/vicenteneto/python-cartolafc/tree/master/examples](https://github.com/vicenteneto/python-cartolafc/tree/master/examples)
        
        
        ## Contribuintes
        
        Identificou algum bug ou tem alguma requisição de funcionalidade nova?
        [Por favor, abra uma nova issue](https://github.com/vicenteneto/python-cartolafc/issues/new>).
        
        **Vicente Neto (criador)** - <https://github.com/vicenteneto><br/>
        
        
        ## Direitos autorais e licença
        
        Copyright 2017-, Vicente Neto. Este projeto é licenciado sob a 
        [Licença MIT](https://github.com/vicenteneto/python-cartolafc/blob/master/LICENSE).
        
Keywords: python,cartolafc,api
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
