Coder Social home page Coder Social logo

Comments (3)

ixje avatar ixje commented on June 14, 2024 1

I thought it made sense to have these properties on the Module class only. It requires to check is_module first though, but I think it's an acceptable trade-off?

It's all how you envisioned the API. I saw the is_xxx properties while inspecting the result of load() and that triggered me to try and filter based on those properties.

I believe the problem might be with my mental model where I define a module as anything ending in a .py and a package as a folder containing a __init__.py and 0 or more .py modules. Under that mental model I was trying to filter using is_module and is_package/is_subpackage. Now after looking at the Python docs I realise my mental model was wrong as it states

It’s important to keep in mind that all packages are modules, but not all modules are packages. Or put another way, packages are just a special kind of module. Specifically, any module that contains a __path__ attribute is considered a package.

So I believe the correct way would become

import griffe
mamba = griffe.load("neo3")
for member in mamba.members.values():
    if isinstance(member, griffe.Module):
       if member.is_subpackage:
          print(f"package: {member.name}")
       else:
          print(f"module: {member.name}")

and the Alias documentation is all that could perhaps use a little polishing by means of description all properties it has.

Feel free to close the issue if you plan to keep it as is or want to track it in another issue.

from griffe.

pawamoy avatar pawamoy commented on June 14, 2024

Thanks for the report!

The error in the traceback can be avoided with your commented line: if member.is_alias: continue.

However you're right that the module-kind properties are not exposed in the other kinds of objects (attribute, function, class), namely:

  • is_init_module
  • is_package
  • is_subpackage
  • is_namespace_package
  • is_namespace_subpackage

The Alias class does have all these properties, though they do not appear in the API reference, true.

I thought it made sense to have these properties on the Module class only. It requires to check is_module first though, but I think it's an acceptable trade-off?

import griffe
mamba = griffe.load("neo3")
for member in mamba.members.values():
    if member.is_alias:
       continue
    if member.is_module and member.is_subpackage:
        print(f"package: {member.name}")
    elif member.is_module:
        print(f"module: {member.name}")

Well, if all objects have an is_module property, it would make sense to have all the other module-related properties too... I'll expose them in the attribute, function and class methods, and add the missing objects in the API reference πŸ™‚

from griffe.

pawamoy avatar pawamoy commented on June 14, 2024

The mental model to adopt when using Griffe is the one of a user of the Python code. griffe and griffe.dataclasses show no difference in usage from the user point of view: you can import them, or import from them. That's why I went with only a Module class and no Package class.

I think I'll still copy the Module-specific properties to the generic Object class, where they'll always return False. And yeah I'll add everything to the API reference πŸ™‚

from griffe.

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.