├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .idea ├── GetOldTweets3-master.iml ├── encodings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── .travis.yml ├── GetOldTweets3 ├── __init__.py ├── manager │ ├── TweetCriteria.py │ ├── TweetManager.py │ └── __init__.py └── models │ ├── Tweet.py │ └── __init__.py ├── LICENSE ├── README.md ├── bin └── GetOldTweets3 ├── requirements.txt ├── setup.py └── tests └── test_main.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solin1998/SearchTT/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solin1998/SearchTT/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/GetOldTweets3-master.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solin1998/SearchTT/HEAD/.idea/GetOldTweets3-master.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solin1998/SearchTT/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solin1998/SearchTT/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solin1998/SearchTT/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solin1998/SearchTT/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solin1998/SearchTT/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solin1998/SearchTT/HEAD/.travis.yml -------------------------------------------------------------------------------- /GetOldTweets3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solin1998/SearchTT/HEAD/GetOldTweets3/__init__.py -------------------------------------------------------------------------------- /GetOldTweets3/manager/TweetCriteria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solin1998/SearchTT/HEAD/GetOldTweets3/manager/TweetCriteria.py -------------------------------------------------------------------------------- /GetOldTweets3/manager/TweetManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solin1998/SearchTT/HEAD/GetOldTweets3/manager/TweetManager.py -------------------------------------------------------------------------------- /GetOldTweets3/manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solin1998/SearchTT/HEAD/GetOldTweets3/manager/__init__.py -------------------------------------------------------------------------------- /GetOldTweets3/models/Tweet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solin1998/SearchTT/HEAD/GetOldTweets3/models/Tweet.py -------------------------------------------------------------------------------- /GetOldTweets3/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solin1998/SearchTT/HEAD/GetOldTweets3/models/__init__.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solin1998/SearchTT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solin1998/SearchTT/HEAD/README.md -------------------------------------------------------------------------------- /bin/GetOldTweets3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solin1998/SearchTT/HEAD/bin/GetOldTweets3 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | lxml>=3.5.0 2 | pyquery>=1.2.10 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solin1998/SearchTT/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solin1998/SearchTT/HEAD/tests/test_main.py --------------------------------------------------------------------------------