Alberto Galera
Alberto Galera
same issue in chromecast tv - 0.13.6 server - 10.8.0 ffmpeg: ``` Input #0, matroska,webm, from 'Episode S01E01 - 2160p.mkv': Metadata: IMDB : tt11280740 creation_time : 2022-04-11T12:55:45.000000Z TMDB : tv/95396...
I have tested and it seems to work correctly, try this @AdamGracery : bottle v0.12.23 python 3.10.4 ```python from bottle import run, get @get('/test/') def test(name): print(name) return name run()...
it's a design decision, and you can use it simply by copying bottle.py to your directory @defnull I think you can respond better to this.
I use bottle for several reasons: 1 - be one of the fastest microframeworks 2 - I don't need to create classes and inherit from the framework to create my...
@oz123 I know, and it is a great pain, for now I am using tornado for websockets and api en bottle. I would like to have a "websocket for humans"...
@PyB1l Exactly, you can make your "framework" on top of the bottle and adapt it to your needs and not have to adapt to a framework designed for general purpose
@oz123 It seems simple to use, I usually use it to send identical information to all customers (broadcast) so it's pretty simple. Thanks!
related to global requests: https://github.com/bottlepy/bottle/issues/896 https://github.com/bottlepy/bottle/issues/906
that would work to have the data in your request, but I think the problem with asynchronous servers would not be solved since the process could change context before you...
If you implement this feature, could you solve this other question? https://github.com/bottlepy/bottle/issues/906