mirror of
https://github.com/balkian/bitter.git
synced 2025-07-10 23:42:21 +00:00
* Ability to include "optional" fields from tweets (e.g., retweeted_status). * Optional caching (for very large datasets)
19 lines
380 B
Python
19 lines
380 B
Python
"""
|
|
Bitter module. A library and cli for Twitter using python-twitter.
|
|
http://github.com/balkian/bitter
|
|
"""
|
|
|
|
import os
|
|
|
|
from .version import __version__
|
|
from . import config as bconf
|
|
|
|
def easy(conffile=bconf.CONFIG_FILE):
|
|
from .crawlers import TwitterQueue
|
|
|
|
return TwitterQueue.from_config(conffile=conffile)
|
|
|
|
__all__ = ['cli', 'config', 'crawlers', 'models', 'utils' ]
|
|
|
|
|