forked from kirang89/pycrumbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
params.json
1 lines (1 loc) · 22.3 KB
/
params.json
1
{"name":"Pycrumbs","tagline":"Bits and bytes of Python from the Internet","body":"#Contents\r\n* [Beginner's Delight](#beginners-delight)\r\n* [Style Guide and Idioms](#style-guide-and-idioms)\r\n* [Dictionary](#dictionary)\r\n* [Decorators](#decorators)\r\n* [Generators](#generators)\r\n* [Iterators](#iterators)\r\n* [Yield](#yield)\r\n* [Context Managers](#context-managers)\r\n* [Unicode](#unicode)\r\n* [Networking](#networking)\r\n* [Metaclasses](#metaclasses)\r\n* [Documentation](#documentation)\r\n * [Sphinx](#sphinx)\r\n* [Debugging](#debugging)\r\n * [Logging](#logging)\r\n* [Testing](#testing)\r\n* [Environment and Environment Management](#environment-and-environment-management)\r\n* [Profiling](#profiling)\r\n* [Packaging](#packaging)\r\n* [Deployment](#deployment)\r\n * [Fabric](#fabric)\r\n* [Warts and Gotchas](#warts-and-gotchas)\r\n* [Web](#web)\r\n * [Frameworks](#frameworks)\r\n * [Flask](#flask)\r\n * [Web2Py](#web2py)\r\n * [Django](#django)\r\n * [Bottle](#bottle)\r\n * [API and Web Services](#api-and-web-services)\r\n * [Scraping](#scraping)\r\n* [Mobile Development](#mobile-development)\r\n * [Kivy](#kivy)\r\n* [Google Glass](#google-glass)\r\n * [Resources](#resources)\r\n * [Libraries](#libraries)\r\n* [GUI Programming](#gui-programming)\r\n* [WSGI](#wsgi)\r\n* [Databases](#databases)\r\n * [SQLAlchemy](#sqlalchemy)\r\n* [Data Mining](#data-mining)\r\n* [Data Analysis](#data-analysis)\r\n * [Pandas](#pandas)\r\n* [Design Patterns](#design-patterns)\r\n * [Concurrency Patterns](#concurrency-patterns)\r\n* [Distributed Systems](#distributed-systems)\r\n* [Python 2 vs Python 3](#python-2-vs-3)\r\n * [Porting to Python 3](#porting-to-python-3)\r\n* [Books](#books)\r\n * [Free](#free)\r\n * [Paid](#paid)\r\n* [Discussions](#discussions)\r\n* [Conferences and Events](#conferences-and-events)\r\n* [Videos](#videos)\r\n* [Editors and IDE's for Python programming](#editors-and-ides-for-python-programming)\r\n* [Big Data](#bigdata)\r\n* [Curated Python resources from other websites](#curated-python-resources-from-other-websites)\r\n* [Newsletters](#newsletters)\r\n* [Miscellaneous](#miscellaneous)\r\n\r\n\r\n##Beginner's Delight\r\n* [Beginner's guide to Python](http://wiki.python.org/moin/BeginnersGuide)\r\n* [The Hitchhiker's guide to Python](http://docs.python-guide.org/en/latest/)\r\n* [Learn Python the hard way](http://learnpythonthehardway.org/book/)\r\n* [Google's Python class](https://developers.google.com/edu/python/)\r\n* [Python tracks at Codecademy](http://www.codecademy.com/tracks/python)\r\n* [Python Monk](http://pythonmonk.com/)\r\n* [Python for Beginners](http://www.pythonforbeginners.com/)\r\n* [Best way to learn python](http://net.tutsplus.com/tutorials/the-best-way-to-learn-python/)\r\n* [Python Tips, tools and resources](http://lurnq.com/lesson/Getting-started-with-Python-Tips-Tools-and-Resources)\r\n* [Python Koans: Learn Python through TDD](https://github.com/gregmalcolm/python_koans)\r\n* [LearnStreet Python course](http://www.learnstreet.com/lessons/study/python)\r\n* [Beginner projects for a python newbie](http://newcoder.io/)\r\n* [Learn X in Y minutes - Python](http://learnxinyminutes.com/docs/python/)\r\n* [Python Practice book](http://anandology.com/python-practice-book/)\r\n* [Facts and myths about Python names and values](http://nedbatchelder.com/text/names.html)\r\n* [*args and **kwargs in python explained](http://freepythontips.wordpress.com/2013/08/04/args-and-kwargs-in-python-explained/)\r\n* [Common newbie mistakes in Python- Part 1](http://blog.amir.rachum.com/post/54770419679/python-common-newbie-mistakes-part-1)\r\n* [Common newbie mistakes in Python- Part 2](http://blog.amir.rachum.com/post/55024295793/python-common-newbie-mistakes-part-2)\r\n* [PySchools](http://www.pyschools.com/)\r\n* [Some cool Python Tricks](http://www.quora.com/Python-programming-language-1/What-are-some-cool-Python-tricks)\r\n* http://blog.amir.rachum.com/post/30176371115/you-cant-handle-the-truth\r\n* [Better Python APIs](http://ozkatz.github.io/better-python-apis.html)\r\n* [Declaring dependencies in Python](http://blog.ziade.org/2013/04/13/declaring-dependencies-in-python/)\r\n* [Storing and Loading Data with JSON - Serialization/deserialization](http://freepythontips.wordpress.com/2013/08/08/storing-and-loading-data-with-json/)\r\n* [A Guide to Python's Magic Methods](http://www.rafekettler.com/magicmethods.html)\r\n* [Efficient String Concatenation in Python](http://www.skymind.com/~ocrow/python_string/)\r\n* [Be Pythonic: __init__.py](http://mikegrouchy.com/blog/2012/05/be-pythonic-__init__py.html)\r\n* [Building an open-source Python application the right way](http://kirang.in/2013/09/09/building-an-open-source-python-application-the-right-way/)\r\n* [Python progression path - From apprentice to guru](http://stackoverflow.com/questions/2573135/python-progression-path-from-apprentice-to-guru)\r\n* [Learn python through Test Driven Development](https://github.com/gregmalcolm/python_koans)\r\n\r\n##Style Guide and Idioms\r\n* [PEP 8 - Style Guide for Python Code](http://www.python.org/dev/peps/pep-0008/)\r\n* [Code Like a Pythonista: Idiomatic Python](http://python.net/~goodger/projects/pycon/2007/idiomatic/handout.html)\r\n\r\n##Dictionary\r\n* [Python hash, id and dictionary order](http://blog.amir.rachum.com/post/54458435089/python-hash-id-and-dictionary-order)\r\n* [Notes on dictionary implementation](http://bugs.python.org/file6941/dictnotes.txt)\r\n* [Python: The Dictionary Playbook](http://blog.amir.rachum.com/post/39501813266/python-the-dictionary-playbook)\r\n\r\n##Decorators\r\n* [Understanding Python Decorators in 12 easy steps](http://simeonfranklin.com/blog/2012/jul/1/python-decorators-in-12-steps/)\r\n* [Common uses of Python decorators - Quora](http://www.quora.com/Python-programming-language-1/What-are-common-uses-of-Python-decorators)\r\n* [Common uses of Python decorators - Stack Overflow](http://stackoverflow.com/questions/489720/what-are-some-common-uses-for-python-decorators)\r\n* [Python Decorators](http://pythonconquerstheuniverse.wordpress.com/2012/04/29/python-decorators/)\r\n* [Decorators I: Introduction to Python Decorators](http://www.artima.com/weblogs/viewpost.jsp?thread=240808)\r\n* [Decorators and annotations](http://blog.mattalcock.com/2013/1/5/decorates-and-annotations/)\r\n* [The dark side of decorators](http://apiguy.github.io/blog/2013/06/03/the-dark-side-of-decorators/)\r\n* [Thinking out aloud: Python decorators](http://curiosityhealsthecat.blogspot.in/2013/06/thinking-out-aloud-python-decorators_8528.html)\r\n* [Using Python decorators for registering callbacks](http://curiosityhealsthecat.blogspot.in/2013/07/using-python-decorators-for-registering_8614.html)\r\n* [Meta-matters: Using decorators for better Python programming](http://pydanny-event-notes.readthedocs.org/en/latest/PyconAU2011/decorators.html)\r\n* [How can I make a chain of function decorators in Python?](http://stackoverflow.com/questions/739654/how-can-i-make-a-chain-of-function-decorators-in-python/1594484#1594484)\r\n* [The Python Decorator Library](https://wiki.python.org/moin/PythonDecoratorLibrary)\r\n\r\n##Generators\r\n* [Generator Tricks for Systems Programmers](http://www.dabeaz.com/generators-uk/)\r\n* [Delegating to a Subgenerator in Python 3](http://docs.python.org/3/whatsnew/3.3.html#pep-380-syntax-for-delegating-to-a-subgenerator)\r\n\r\n##Iterators\r\n* [Understanding Iterators and Iterables](http://www.shutupandship.com/2012/01/understanding-python-iterables-and.html)\r\n\r\n##Yield\r\n* [Python yield keyword explained](http://stackoverflow.com/questions/231767/the-python-yield-keyword-explained)\r\n\r\n##Context Managers\r\n* [Understanding Python's with statement](http://effbot.org/zone/python-with-statement.htm)\r\n* [The Python \"with\" Statement by Example](http://preshing.com/20110920/the-python-with-statement-by-example/)\r\n\r\n##Unicode\r\n* [Explain Unicode like I'm five years old](http://www.reddit.com/r/Python/comments/1g62eh/explain_it_like_im_five_python_and_unicode/)\r\n* [Unicode Pain](http://nedbatchelder.com/text/unipain.html)\r\n* [Python encodings and Unicode](http://eric.themoritzfamily.com/python-encodings-and-unicode.html)\r\n* [The Updated Guide to Unicode on Python](http://lucumr.pocoo.org/2013/7/2/the-updated-guide-to-unicode/)\r\n\r\n##Networking\r\n* [An intro to Python socket network programming](http://freepythontips.wordpress.com/2013/08/06/python-socket-network-programming/)\r\n\r\n##Metaclasses\r\n* [A primer on python metaclasses](http://jakevdp.github.io/blog/2012/12/01/a-primer-on-python-metaclasses/)\r\n* [What is a metaclass in Python ?](http://stackoverflow.com/questions/100003/what-is-a-metaclass-in-python)\r\n* [Yet Another Python Metaclass tutorial](http://blog.fruiapps.com/2013/03/Yet-another-Python-MetaClass-Tutorial)\r\n\r\n##Documentation\r\n* [Documentation is King](http://kennethreitz.org/documentation-is-king/)\r\n* [Make your open source project documentation suck less](http://kirang89.webfactional.com/2013/05/07/make-your-open-source-project-documentation-suck-less/)\r\n\r\n###Sphinx\r\n* [Quick Sphinx documentation for Python](http://scriptsonscripts.blogspot.in/2012/09/quick-sphinx-documentation-for-python.html)\r\n\r\n## Environments and Environment Management\r\n* [Virtual Environments — The Hitchhiker's Guide to Python](http://docs.python-guide.org/en/latest/dev/virtualenvs/)\r\n* [Virtualenv Tutorial](http://simononsoftware.com/virtualenv-tutorial/)\r\n* [A Primer on virtualenv](http://iamzed.com/2009/05/07/a-primer-on-virtualenv/)\r\n* [How to use Python virtualenv](http://www.pythonforbeginners.com/basics/how-to-use-python-virtualenv)\r\n* [Comprehensive beginner's virtualenv tutorial? - stackoverflow](http://stackoverflow.com/questions/5844869/comprehensive-beginners-virtualenv-tutorial)\r\n* [Virtualenv - The official documentation](http://www.virtualenv.org/en/latest/)\r\n* [Getting started with virtual env](http://iamzed.com/2009/05/07/a-primer-on-virtualenv/)\r\n* [Extension to Virtualenv](https://bitbucket.org/dhellmann/virtualenvwrapper)\r\n* [VirtualEnv Burrito = virtualenv + virtualenvwrapper](https://github.com/brainsik/virtualenv-burrito)\r\n\r\n##Debugging\r\n* [Debugging Tools in Python](http://blog.ionelmc.ro/2013/06/05/python-debugging-tools/)\r\n\r\n###Logging\r\n* [Sentry - realtime event logging and aggregation platform](https://sentry.readthedocs.org/en/latest/index.html)\r\n\r\n##Testing\r\n* [Nose Introduction](http://pythontesting.net/framework/nose/nose-introduction/)\r\n* [Unittest Introduction](http://pythontesting.net/framework/unittest/unittest-introduction/)\r\n* [How To Use Coverage.py With Unittest](https://github.com/audreyr/how-to/blob/master/python/use_coverage_with_unittest.rst)\r\n* [An Extended Introduction to the nose Unit Testing Framework](http://ivory.idyll.org/articles/nose-intro.html)\r\n* [Test strategies for your Python projects](http://blog.flaper87.com/post/522b9e560f06d32542ede77f/)\r\n\r\n##Profiling\r\n* [A guide to analyzing Python performance](http://www.huyng.com/posts/python-performance-analysis/)\r\n\r\n##Packaging\r\n* [The Hitchhiker’s Guide to Packaging](http://guide.python-distribute.org/)\r\n* [Sharing Your Labor of Love: PyPI Quick And Dirty](http://hynek.me/articles/sharing-your-labor-of-love-pypi-quick-and-dirty/)\r\n* [Open Sourcing a Python Project the Right Way](http://www.jeffknupp.com/blog/2013/08/16/open-sourcing-a-python-project-the-right-way/)\r\n* [5 tips for packaging your Python projects](http://ziade.org/2011/08/19/5-tips-for-packaging-your-python-projects/)\r\n* [AOSA: Python Packaging](http://www.aosabook.org/en/packaging.html)\r\n* [The Package Dependency Blues](http://blog.miguelgrinberg.com/post/the-package-dependency-blues)\r\n* [5 Simple Rules For Building Great Python Packages](http://axialcorps.com/2013/08/29/5-simple-rules-for-building-great-python-packages)\r\n* [Unofficial Windows Binaries for Python Extension Packages](http://www.lfd.uci.edu/~gohlke/pythonlibs/)\r\n* [Py2app: Standalone Mac OS X applications](http://pythonhosted.org/py2app/)\r\n* [PyInstaller: Stand-alone executables, under Windows, Linux, Mac OS X, Solaris and AIX](http://www.pyinstaller.org/)\r\n\r\n##Deployment\r\n* [Solid Python Deployments for Everybody](http://hynek.me/talks/python-deployments)\r\n\r\n###Fabric\r\n* [Using Fabric in a development environment](http://www.pythonforbeginners.com/systems-programming/how-to-use-fabric-in-a-development-environment/)\r\n\r\n##Warts and Gotchas\r\n* [Python 2.x gotcha's and landmines](http://stackoverflow.com/questions/530530/python-2-x-gotchas-and-landmines)\r\n* [Python Warts](https://wiki.python.org/moin/PythonWarts)\r\n* [Python Gotchas](http://blog.artlogic.com/2013/04/12/python-gotchas/)\r\n* [Common Pitfalls in Python](http://stackoverflow.com/questions/1011431/common-pitfalls-in-python/1321075#1321075)\r\n\r\n##Web\r\n* [Python and Realtime Web](http://mrjoes.github.io/2013/06/21/python-realtime.html)\r\n* [List of Python API’s](http://www.pythonapi.com/)\r\n\r\n###Frameworks\r\n####Flask\r\n* [Flask Mega Tutorial Series](http://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-world)\r\n* [Designing a RESTful API with Python and Flask](http://blog.miguelgrinberg.com/post/designing-a-restful-api-with-python-and-flask)\r\n* [Building websites in Python with Flask](http://maximebf.com/blog/2012/10/building-websites-in-python-with-flask)\r\n* [How I structure my Flask apps](http://mattupstate.com/python/2013/06/26/how-i-structure-my-flask-applications.html)\r\n* [Designing a RESTful API using Flask-RESTful](http://blog.miguelgrinberg.com/post/designing-a-restful-api-using-flask-restful)\r\n* [Rapid Web Prototyping with Lightweight Tools](http://www.pixelmonkey.org/2013/03/13/rapid-web-prototyping-with-lightweight-tools)\r\n* [Build a Simple, Static, Markdown-Powered Blog with Flask](http://www.jamesharding.ca/posts/simple-static-markdown-blog-in-flask/)\r\n\r\n####Web2Py\r\n* [Building a Twitter clone in Web2Py](http://fragile.org.uk/2013/06/twitter-clone-tutorial-in-web2py-part-1-getting-started/)\r\n\r\n####Django\r\n* [The official Django documentation](https://docs.djangoproject.com/en/1.5/)\r\n* [Getting started with Django](http://gettingstartedwithdjango.com/)\r\n* [Building a hacker news clone in Django](http://arunrocks.com/building-a-hacker-news-clone-in-django-part-1/)\r\n* [Djen of Django](http://agiliq.com/books/djenofdjango/)\r\n* [Deploying Django](http://www.rdegges.com/deploying-django/)\r\n* http://www.lightbird.net/dbe/\r\n* http://showmedo.com/videotutorials/series?name=PPN7NA155\r\n\r\n####Bottle\r\n* [Developing with Bottle- Part 1](http://www.realpython.com/blog/python/developing-with-bottle-part-1/)\r\n\r\n###API and Web Services\r\n* [How to access various web services in python](http://www.pythonforbeginners.com/python-on-the-web/how-to-access-various-web-services-in-python/)\r\n\r\n###Scraping\r\n* [Web Scraping with BeautifulSoup](http://www.pythonforbeginners.com/python-on-the-web/web-scraping-with-beautifulsoup/)\r\n* [Web Scraping 101 with Python](http://www.gregreda.com/2013/03/03/web-scraping-101-with-python/)\r\n* [Web Scraping with Scrapy Framework](http://doc.scrapy.org/en/latest/intro/tutorial.html)\r\n* [How to automatically search and download torrents with Python and Scrapy](http://fuzz-box.blogspot.in/2013/03/how-to-automatically-search-download-torrent-python-scrapy.html)\r\n\r\n##Mobile Development\r\n###Kivy\r\n* [Creating an app in Kivy](http://archlinux.me/dusty/2013/06/13/creating-an-application-in-kivy-part-1/)\r\n\r\n##Google Glass\r\n###Resources\r\n* [The official Python Quick Start for Google Glass](https://developers.google.com/glass/quickstart/python)\r\n\r\n###Libraries\r\n####glass.py\r\n* [Create python web applications for Google Glass](https://github.com/SamyPesse/glass.py)\r\n\r\n##Image Processing\r\n* http://www.riisen.dk/dop/pil.html\r\n\r\n##GUI Programming\r\n* [PyQt Tutorial](http://zetcode.com/tutorials/pyqt4/)\r\n* [Standalone executable for PyQt4 on Windows](http://www.py2exe.org/index.cgi/Py2exeAndPyQt)\r\n\r\n\r\n##WSGI\r\n* [Getting started with WSGI](http://lucumr.pocoo.org/2007/5/21/getting-started-with-wsgi/)\r\n* [WSGI Basics](http://agiliq.com/blog/2013/07/basics-wsgi/)\r\n\r\n##Databases\r\n\r\n###SQLAlchemy\r\n* http://www.aosabook.org/en/sqlalchemy.html\r\n* http://lucumr.pocoo.org/2011/7/19/sqlachemy-and-you/\r\n\r\n##Data Mining\r\n* [Linux system mining using Python](http://architects.dzone.com/articles/linux-system-mining-python)\r\n\r\n##Data Analysis\r\n###Pandas\r\n* [A 10 min intro to Pandas](http://pandas.pydata.org/pandas-docs/stable/10min.html)\r\n* http://manishamde.github.io/blog/2013/03/07/pandas-and-python-top-10/\r\n* [Learn Pandas](https://bitbucket.org/hrojas/learn-pandas)\r\n\r\n##Design Patterns\r\n* [Python Best Practice Patterns by Vladimir Keleshev](http://www.youtube.com/watch?v=GZNUfkVIHAY)\r\n\r\n###Concurrency Patterns\r\n* [Wasps Nest Pattern](http://python.dzone.com/articles/wasps-nest-lock-free)\r\n* [Wasp's Nest: The Read-Copy-Update Pattern In Python](http://emptysqua.re/blog/wasps-nest-read-copy-update-python/)\r\n\r\n##Distributed Systems\r\n* [Gevent and ZeroMQ](http://architects.dzone.com/articles/gevent-zeromq)\r\n* [Celery: Distributed Task Queue](https://celery.readthedocs.org/en/latest/getting-started/index.html)\r\n\r\n##Python 2 vs 3\r\n* [Python 2 or 3 ?](http://wiki.python.org/moin/Python2orPython3)\r\n\r\n### Porting to Python 3\r\n* [How to support both Python 2 and 3](http://ondrejcertik.blogspot.com/2013/08/how-to-support-both-python-2-and-3.html)\r\n* [How CherryPy supports Python 2 and 3](http://pyvideo.org/video/689/how-cherrypy-supports-python-2-and-3)\r\n* [($) Porting to Python 3 - The Book Site](http://python3porting.com/)\r\n\r\n##Books\r\n###Free\r\n* [Some free books on Python](http://pythonbooks.revolunet.com/)\r\n* [Invent with Python](http://inventwithpython.com/chapters/)\r\n* [Think Python](http://www.greenteapress.com/thinkpython/thinkpython.pdf)\r\n* [Byte of Python](http://files.swaroopch.com/python/byte_of_python.pdf)\r\n* [Snake Wrangling for Kids](http://www.briggs.net.nz/snake-wrangling-for-kids.html)\r\n* [Data Structures and Algorithms with Object-Oriented Design Patterns in Python](http://www.brpreiss.com/books/opus7/html/book.html)\r\n* [Python programming on wikibooks](http://en.wikibooks.org/wiki/Python_Programming)\r\n* [Dive Into Python 3](http://getpython3.com/diveintopython3/)\r\n* [Programming Computer Vision with Python](http://programmingcomputervision.com/)\r\n\r\n###Paid\r\n* [Some list of paid books on python](http://wiki.python.org/moin/PythonBooks)\r\n* [Porting to Python 3 - The Book Site](http://python3porting.com/)\r\n\r\n##Discussions\r\n* https://news.ycombinator.com/item?id=3746692\r\n* https://news.ycombinator.com/item?id=5944863\r\n* [StackOverflow - Python beyond the basics](http://stackoverflow.com/questions/92230/python-beyond-the-basics)\r\n* [StackOverflow - Python progression path from apprentice to guru](http://stackoverflow.com/questions/2573135/python-progression-path-from-apprentice-to-guru)\r\n* [StackOverflow - Zen of Python](http://stackoverflow.com/questions/228181/zen-of-python)\r\n* [StackOverflow - Hidden Features of Python](http://stackoverflow.com/questions/101268/hidden-features-of-python)\r\n\r\n##Conferences and events\r\n* [Official PyCon website](http://www.pycon.org/)\r\n* [Lanyrd - Python Conference and Events](http://lanyrd.com/topics/python/)\r\n* [Meetup.com - Python Meetup Groups](http://python.meetup.com/)\r\n\r\n##Videos\r\n* [Guido Van Rossum on the history of Python](http://www.youtube.com/watch?v=ugqu10JV7dk)\r\n* [PyVideo](http://pyvideo.org/)\r\n* [Khan Academy - Introduction to programming and computer science using Python](https://www.khanacademy.org/science/computer-science)\r\n* [Lanyrd - Python Videos](http://lanyrd.com/topics/python/video/)\r\n* [Python Videos, Tutorials and Screencasts at ShowMeDo](http://showmedo.com/videotutorials/python)\r\n* [Talks by Brandon Rhodes](http://rhodesmill.org/brandon/talks/)\r\n\r\n##Editors and IDE's for Python programming\r\n* [Setting up Sublime Text for Python Development](http://dbader.org/blog/setting-up-sublime-text-for-python-development)\r\n* [Sublime Text 2 Love by Kenneth Reitz](http://kennethreitz.org/sublime-text-2-love/)\r\n* [Sublime Text 2 tips for Python and web developers](http://opensourcehacker.com/2012/05/11/sublime-text-2-tips-for-python-and-web-developers/)\r\n* [PyCharm](http://www.jetbrains.com/pycharm/)\r\n* [Geany](http://geany.org/)\r\n* [Geany with pylint](http://michaeljaylissner.com/blog/using-pylint-in-geany)\r\n* [PyDev](http://pydev.org)\r\n\r\n##BigData\r\n* [Mind map of Python for Big Data](http://www.xmind.net/m/WvfC/?goback=%2Emid_I2756675707*43_*1#%21)\r\n\r\n##Curated Python resources from other websites\r\n* [Python Resources (All) - Codesters.org](http://codesters.org/resource/topic/python/all/)\r\n\r\n##Newsletters\r\n* [Pycoder's](http://pycoders.com/)\r\n* [Python Weekly](http://www.pythonweekly.com/)\r\n\r\n##Miscellaneous\r\n* [Good to great Python reads](http://jessenoller.com/good-to-great-python-reads/)\r\n* [How to Create Barcodes in Your PDFs with Python](http://java.dzone.com/articles/how-create-barcodes-your-pdfs)\r\n* [What are some good Python interview questions ?](http://www.quora.com/What-are-good-Python-interview-questions)\r\n* [Python innards introduction](http://tech.blog.aknin.name/2010/04/02/pythons-innards-introduction/)\r\n* [Projects - A list of practical projects](https://github.com/thekarangoel/Projects)\r\n* [More Python Tutorials](http://awaretek.com/tutorials.html)\r\n* [Simple Sudoku solver in python](http://freepythontips.wordpress.com/2013/09/01/sudoku-solver-in-python/)\r\n* [Looking Inside Dropbox – Security whitepaper](http://freepythontips.wordpress.com/2013/08/30/looking-inside-dropbox-whitepaper/)\r\n* [Why sorting an array makes a Python loop faster](http://rickystewart.wordpress.com/2013/09/03/why-sorting-an-array-makes-a-python-loop-faster/)\r\n* [Python Integer object implementation](http://www.laurentluce.com/posts/python-integer-objects-implementation/)\r\n* [The history of Python - Blog](http://python-history.blogspot.in/)\r\n* [The ever useful and neat subprocess module](http://sharats.me/the-ever-useful-and-neat-subprocess-module.html)\r\n* [Hidden Features in Python](http://stackoverflow.com/questions/101268/hidden-features-of-python/111176)\r\n","google":"","note":"Don't delete this file! It's used internally to help with page regeneration."}