Skip to content Skip to sidebar Skip to footer
Showing posts with the label Cherrypy

Cherrypy: What Is The Difference Between `error_page.default` Vs. `error_page.404` Config Settings?

Let's say I want to display my own 404 & 500 pages, I've found 2 possibilities so far: … Read more Cherrypy: What Is The Difference Between `error_page.default` Vs. `error_page.404` Config Settings?

Unittesting Cherrypy Webapp

I recently had to rewrite our rest api, and made the switch from Flask to Cherrypy (mostly due to P… Read more Unittesting Cherrypy Webapp

How To Specify The Listening Server Instances Using Cherrypy Tree.mount?

Let us create an application server and an admin server. Assume that fusionListener and adminListen… Read more How To Specify The Listening Server Instances Using Cherrypy Tree.mount?

How To Post Json Data With Python Requests?

I need to POST a JSON from a client to a server. I'm using Python 2.7.1 and simplejson. The cli… Read more How To Post Json Data With Python Requests?