https://github.com/bear/python-twitter
Raw File
Tip revision: 02049603275c57bd32066dc9508ad333bc27fab2 authored by hepeng on 12 July 2017, 12:04:54 UTC
Fix spell error and update the docstring of api.ReplyTo
Tip revision: 0204960
test.py
import unittest

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