├── .gitignore ├── LICENSE ├── README.md ├── bluebird ├── __init__.py ├── http_helper.py └── scraper.py ├── examples ├── followers.py ├── followings.py ├── list.py └── search.py ├── misc └── bluebird.svg ├── requirements.txt ├── setup.py └── upload.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/bluebird/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/bluebird/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/bluebird/HEAD/README.md -------------------------------------------------------------------------------- /bluebird/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/bluebird/HEAD/bluebird/__init__.py -------------------------------------------------------------------------------- /bluebird/http_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/bluebird/HEAD/bluebird/http_helper.py -------------------------------------------------------------------------------- /bluebird/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/bluebird/HEAD/bluebird/scraper.py -------------------------------------------------------------------------------- /examples/followers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/bluebird/HEAD/examples/followers.py -------------------------------------------------------------------------------- /examples/followings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/bluebird/HEAD/examples/followings.py -------------------------------------------------------------------------------- /examples/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/bluebird/HEAD/examples/list.py -------------------------------------------------------------------------------- /examples/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/bluebird/HEAD/examples/search.py -------------------------------------------------------------------------------- /misc/bluebird.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/bluebird/HEAD/misc/bluebird.svg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | orderedset 3 | lxml 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/bluebird/HEAD/setup.py -------------------------------------------------------------------------------- /upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/bluebird/HEAD/upload.sh --------------------------------------------------------------------------------