pysympla

Scraper para acessar informações dos seus eventos no Sympla.


Keywords
sympla, scraper, requests, events, python, python-library, python3
License
MIT
Install
pip install pysympla==0.0.1

Documentation

pysympla

https://travis-ci.org/Lrcezimbra/pysympla.svg?branch=master https://coveralls.io/repos/github/Lrcezimbra/pysympla/badge.svg?branch=master Code Health Updates

Instalação

pip install pysympla

Como Usar

from pysympla import Sympla

# Autenticação
sympla = Sympla('username', 'password')

# Retorna evento especifíco
event = sympla.get_event('ID')
print(event.title, event.confirmed_participants, event.pending_participants)

# Retorna generator de eventos
events = sympla.get_events()
for event in events:
    print(event.title, event.confirmed_participants, event.pending_participants)

Contribuindo

Contribuições são bem-vindas, sinta-se a vontade para abrir uma Issue ou Pull Request