Coder Social home page Coder Social logo

Comments (2)

dantownsend avatar dantownsend commented on September 23, 2024

@dbanty Yeah, this is something I want to get sorted.

I want Piccolo to work really well with MyPy, and this is the main pain point at the moment.

I'll try using typing.cast in Table.__init__ to see if that helps.

from piccolo.

dbanty avatar dbanty commented on September 23, 2024

I assume it'll be difficult because you'll either lose type annotations with the query syntax (I assume that Column == value in a .where returns something that the .where expects and not a bunch of bools) or end up with Unions at run time. This is a larger issue in general with ORMs I think since the Table definition is the same class as the Result but the types of the attributes are, by definition, different.

I'm pretty sure that the way sqlalchemy-stubs deals with this is with their mypy plugin so you might end up having to go down this route as well.

You could maybe make each Column type subclass their runtime counterpart? A bit hacky since it won't necessarily be true.

Another possible option would be to design database schemas more like how Pydantic defines theirs? Where the type annotation is used for each field and you can set it to a Field which I believe just returns Any so mypy ignores it? That might take some rework though in the API and therefore potentially breaking changes.

Lots to think about. I'm always happy to discuss and bounce ideas around, especially if it helps lead to a better ORM for the Python ecosystem 😁

from piccolo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.