├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── setup.cfg ├── setup.py └── urbandictionary.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocong/urbandictionary-py/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocong/urbandictionary-py/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocong/urbandictionary-py/HEAD/README.md -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocong/urbandictionary-py/HEAD/setup.py -------------------------------------------------------------------------------- /urbandictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocong/urbandictionary-py/HEAD/urbandictionary.py --------------------------------------------------------------------------------