You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+26-18Lines changed: 26 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,7 @@ so you need Python.
43
43
-[Admin Panels](#admin-panels)
44
44
-[DevOps Tools](#devops-tools)
45
45
-[GUI](#gui)
46
+
-[Game Development](#game-development)
46
47
-[Logging](#logging)
47
48
-[Testing](#testing)
48
49
-[Code Analysis and Linter](#code-analysis-and-linter)
@@ -52,7 +53,6 @@ so you need Python.
52
53
-[MapReduce](#mapreduce)
53
54
-[Third-party APIs](#third-party-apis)
54
55
-[Algorithms and Design Patterns](#algorithms-and-design-patterns)
55
-
-[Games](#games)
56
56
-[Miscellaneous](#miscellaneous)
57
57
-[Resources](#resources)
58
58
- [Editor Plugins](#editor-plugins)
@@ -128,7 +128,8 @@ so you need Python.
128
128
*Libraries for working with human languages.*
129
129
130
130
*[NLTK](http://www.nltk.org/) - A leading platform for building Python programs to work with human language data.
131
-
*[TextBlob](http://textblob.readthedocs.org/) - Providing a consistent API for diving into common natural language processing (NLP) tasks.
131
+
*[Pattern](http://www.clips.ua.ac.be/pattern) - A web mining module for the Python programming language. It has tools for natural language processing, machine learning, among others.
132
+
*[TextBlob](http://textblob.readthedocs.org/) - Providing a consistent API for diving into common natural language processing (NLP) tasks. Stands on the giant shoulders of NLTK and Pattern, and plays nicely with both.
132
133
*[jieba](https://github.com/fxsjy/jieba#jieba-1) - Chinese Words Segementation Utilities.
133
134
*[snownlp](https://github.com/isnowfy/snownlp) - A library for processing Chinese text.
134
135
*[loso](https://github.com/victorlin/loso) - Another Chinese segmentation library.
*[RoboBrowser](https://github.com/jmcarp/robobrowser) - A simple, Pythonic library for browsing the web without a standalone web browser.
344
+
*[RoboBrowser](https://github.com/jmcarp/robobrowser) - A simple, Pythonic library for browsing the web without a standalone web browser.
343
345
344
346
## Web Content Extracting
345
347
@@ -410,6 +412,22 @@ so you need Python.
410
412
*[kivy](http://kivy.org/) - A library for creating NUI applications, running on Windows, Linux, Mac OS X, Android and iOS.
411
413
*[curses](https://docs.python.org/2/library/curses.html#module-curses) - Built-in wrapper for [ncurses](http://www.gnu.org/software/ncurses/) used to create terminal GUI applications.
412
414
*[urwid](http://urwid.org/) - A library for creating terminal GUI applications with strong support for widgets, events, rich colors, etc.
415
+
*[pyglet](http://www.pyglet.org/) - A cross-platform windowing and multimedia library for Python.
416
+
417
+
## Game Development
418
+
419
+
*Awesome game development libraries.*
420
+
421
+
*[Pygame](http://www.pygame.org/news.html) - Pygame is a set of Python modules
422
+
designed for writing games.
423
+
*[Cocos2d](http://cocos2d.org/) - cocos2d is a framework for building 2D
424
+
games, demos, and other graphical/interactive applications. It is based on
425
+
pyglet.
426
+
*[PySDL2](http://pysdl2.readthedocs.org/en/latest/) - A ctypes based wrapper for the SDL2 library.
427
+
*[Panda3D](https://www.panda3d.org/) - 3D game engine developed by Disney and maintained by Carnegie Mellon's Entertainment Technology Center. Written in C++, completely wrapped in Python.
428
+
*[PyOgre](http://www.ogre3d.org/tikiwiki/PyOgre) - Python bindings for the Ogre 3D render engine, can be used for games, simulations, anything 3D.
429
+
*[PyOpenGL](http://pyopengl.sourceforge.net/) - Python ctypes bindings for OpenGL and it's related APIs.
430
+
413
431
414
432
## Logging
415
433
@@ -448,6 +466,7 @@ so you need Python.
448
466
*Libraries for dubugging and developing*
449
467
450
468
*[pdb](https://docs.python.org/2/library/pdb.html) - (Python standard library) The Python Debugger.
*[pyringe](https://github.com/google/pyringe) - Debugger capable of attaching to and injecting code into Python processes.
452
471
*[django-debug-toolbar](https://github.com/django-debug-toolbar/django-debug-toolbar) - Display various debug information about the current request/response.
453
472
*[django-devserver](https://github.com/dcramer/django-devserver) - A drop-in replacement for Django's runserver.
@@ -499,9 +518,9 @@ so you need Python.
499
518
*[boto](https://github.com/boto/boto) - Python interface to Amazon Web Services.
500
519
*[s3cmd](https://github.com/s3tools/s3cmd) - A command line tool for managing Amazon S3 and CloudFront.
501
520
*[twython](https://github.com/ryanmcgrath/twython) - A Python wrapper for the Twitter API.
502
-
*[soundcloud-python](https://github.com/soundcloud/soundcloud-python) - A Python wrapper around the Soundcloud API
503
-
*[google-api-python-client](https://github.com/google/google-api-python-client) - Google APIs Client Library for Python
*[python-patterns](https://github.com/faif/python-patterns) - A collection of design patterns in Python.
511
530
*[algorithms](https://github.com/nryoung/algorithms) - module of algorithms for Python.
512
531
513
-
## Games
514
-
515
-
*Libraries for developing games.*
516
-
517
-
*[Pygame](http://www.pygame.org/news.html) - Popular 2D game engine based on SDL with additional tools for handling sprites, collisions, etc.
518
-
*[PySDL2](http://pysdl2.readthedocs.org/en/latest/) - A ctypes based wrapper for the SDL2 library.
519
-
*[Panda3D](https://www.panda3d.org/) - 3D game engine developed by Disney and maintained by Carnegie Mellon's Entertainment Technology Center. Written in C++, completely wrapped in Python.
520
-
*[PyOgre](http://www.ogre3d.org/tikiwiki/PyOgre) - Python bindings for the Ogre 3D render engine, can be used for games, simulations, anything 3D.
521
-
*[pyglet](http://www.pyglet.org/) - Cross platform windowing and multimedia library for Python.
522
-
*[PyOpenGL](http://pyopengl.sourceforge.net/) - Python ctypes bindings for OpenGL and it's related APIs.
523
-
524
532
## Miscellaneous
525
533
526
534
*Useful libraries or tools that don't fit in the categories above.*
0 commit comments