https://github.com/bear/python-twitter
Raw File
Tip revision: 15d703f3ce8a987399cdbe781dcc47c244605b19 authored by tuftedocelot on 04 July 2018, 22:05:43 UTC
Add support for the Geo API and Place models
Tip revision: 15d703f
test.py
import unittest

if __name__ == '__main__':
    testsuite = unittest.TestLoader().discover('.')
    unittest.TextTestRunner(verbosity=1).run(testsuite)
back to top