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

How To Read Parameters From Get Request In Cherrypy?

How to read parameters from GET request in CherryPy ? I generate request from JQuery like $.get( … Read more How To Read Parameters From Get Request In Cherrypy?

How To Logout From A Simple Web Appl. In Cherrypy, Python

I am not familiar with CherryPy and Python, but I need to write a very simple web application that … Read more How To Logout From A Simple Web Appl. In Cherrypy, Python

Integrating Css And Cherrypy: How To Fix The 404 "/" Not Found Error?

I've been working on testing Twitter Bootstrap with CherryPy 3.2.2, and have reviewed several o… Read more Integrating Css And Cherrypy: How To Fix The 404 "/" Not Found Error?

Peewee Says "cannot Commit - No Transaction Is Active"

My CherryPy app does some cleaning every hour with the following code: def every_hour(): two_ho… Read more Peewee Says "cannot Commit - No Transaction Is Active"

Socket Error: Address Already In Use

I have a CherryPy script that I frequently run to start a server. Today I was having to start and … Read more Socket Error: Address Already In Use

Disable Weak Ciphers With Cherrypy (python 2)

I'm using Cherrypy 3.8.0 with Python 2 to use SSL/TLS using pyOpenSSL. I want to disable SSL3 t… Read more Disable Weak Ciphers With Cherrypy (python 2)

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?

Writing A Cherrypy Decorator For Authorization

I have a cherrypy application and on some of the views I want to start only allowing certain users … Read more Writing A Cherrypy Decorator For Authorization