Gabriel Falcão
Gabriel Falcão
This would have saved me the time to open `setup.py` just to look for the exact name of the package. The lowercaseness in my patch is deliberate. Thanks for this...
Hey there, thanks for this cool library :) I'm writing an application that needs to capture params that are paths. Is it possible to do it? Example ```rust router.add( "/delete/:path",...
## Tasks - [ ] investigate the following log msg: ```bash DEBUG httpretty.core error closing file : 'super' object has no attribute 'flush' ```
here goes nothing
Fix typo
Nowadays the ModelSetManager has a list attribute "objects", in which it stores its objects. But to avoid scope issues, que modelset should store the objects within the model.
Deadparrot must be compatible with python's pickle
The programmer must be able to use deadparrot's ForeignKey in SQLAlchemy manager
When handling SQLAlchemy the user should be able to define a specific MetaData for the tables. Something like: from sqlalchemy import MetaData mymeta = MetaData() class Foo(Model): objects = SQLAlchemyManager(metadata=mymeta)
When handling SQLAlchemy the user should be able to define the table name. Something like: ``` class Foo(Model): objects = SQLAlchemyManager(table_name='my_foo_table') ```