itty icon indicating copy to clipboard operation
itty copied to clipboard

The itty-bitty Python web framework.

Results 9 itty issues
Sort by recently updated
recently updated
newest added

I was running a script that imported itty and whenever I run it using python3 I get this error: Traceback (most recent call last): File "connect_cisco_bot.py", line 1, in from...

# Issue Type [x] Bug (Typo) # Steps to Replicate 1. Examine itty.py. 2. Search for `registed`. # Expected Behaviour 1. Should read `registered`. Semi-automated issue generated by https://github.com/timgates42/meticulous/blob/master/docs/NOTE.md To...

hello when i do python.exe myapp.py i can only access it locally. How do i access it remotely ? regards

For now, just except and print syntax.

... that is when the HTTP method used in the request is not supported by the framework. Using the example in the README file and curl as the client. Before...

Hi, I wanted to be able to do this: @get('/') @accept('application/json') def index(request): return "here we would return JSON\n" So I did it. Let me know what you think :)...

It accesses `self.request` which does not exist. I propose removal of this method: the iteration would be the responsability of the developer. ``` python @get('/logout') def logout(request): response = Response("...")...

currently the WSGI server iterates on all chars of the output instead of sending the output string all-at-once. ``` diff - return self.output + return [self.output] ``` I noticed this...

decorators were made more performant in 1283cb0, however, the put() function throws an error because the declaration of 'new' local variable was removed. When trying to set new.status on line...