Scraper para acessar informações dos seus eventos no Sympla.
Project description
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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.
See tutorial on generating distribution archives.