├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # twitter-text-python 2 | 3 | 4 | Please note that this project is now maintained and developed by [Edmond Burnett](https://github.com/edburnett). 5 | 6 | Please file any issues and pull requests at his [fork](https://github.com/edburnett/twitter-text-python) instead of here. 7 | 8 | There is also a actively maintained PyPi release of the library: http://pypi.python.org/pypi/twitter-text-python/ 9 | --------------------------------------------------------------------------------