Luis Fernando Villanueva Pérez

Results 17 comments of Luis Fernando Villanueva Pérez

I'm using: ``` pylint==1.8.2 pylint-quotes==0.1.9 ``` Let me try to put a simple example together.

won't work on this today. will save it for the weekend.

I'd like to give this a try. will create a pull request. @lucsorel: any ideas you already have about this?

Some basic goal would be to cover this point in the plantuml docs https://plantuml.com/class-diagram#090967fbee930909

how should it look? ```plantuml @startuml class Example { some_attr : int some_method(some_param: int = 1) -> date } @enduml ```

Singature could be done as the first example here https://docs.python.org/3/library/inspect.html#introspecting-callables-with-the-signature-object ``` >>> from inspect import signature >>> def foo(a, *, b:int, **kwargs): ... pass >>> sig = signature(foo) >>> str(sig)...

will wait for feedback to proceed. ✌️ ![py2puml parsing](https://user-images.githubusercontent.com/157692/163632635-6ad6d6cc-784f-4887-b49d-fb9b529bcea9.png)

> hi @jonykalavera Thank you for proposing your help, which I appreciate a lot. I was on holidays but I am back. However, I am not available a lot these...

I am interested in getting this done too. maybe we need to align these ideas with https://github.com/lucsorel/py2puml/issues/11 too?

maybe it could do something like ```python class payload(BaseModel): from_: int = Field(alias="from") import_: int = Field(alias="import") ```