Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python and strategy pattern
#6
If you come from the Java world, don't think ABCMeta plays a similar role in Python as interfaces do in Java. I would have written these classes with a base class, but without using the abc module. You're adding an unnecessary complexity in the code. I think python's abc is only useful for extremely general functionalities, such as in collections.abc, otherwise it will come in your way rather than help you. Without ABCMeta, you can simply raise NotImplementedError in the base class' method. Last but not least, use python 3!
Reply


Messages In This Thread
Python and strategy pattern - by tanc - Nov-30-2018, 06:00 AM
RE: Python and strategy pattern - by Gribouillis - Nov-30-2018, 07:03 AM
RE: Python and strategy pattern - by tanc - Nov-30-2018, 07:47 AM
RE: Python and strategy pattern - by Gribouillis - Nov-30-2018, 08:07 AM
RE: Python and strategy pattern - by tanc - Nov-30-2018, 08:23 AM
RE: Python and strategy pattern - by Gribouillis - Nov-30-2018, 08:55 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Help with Python Script to generate SVG Dot Matrix Pattern for LED Light Guide iamrickm 2 862 Aug-25-2023, 06:07 PM
Last Post: iamrickm
  Moving average strategy irina_shubina 2 1,878 Jul-31-2022, 05:11 PM
Last Post: paulyan
  strategy to troubleshoot what pyinstaller misses hammer 0 1,002 May-23-2022, 01:05 AM
Last Post: hammer
  Best strategy for creating .exe for windows hammer 4 1,574 Apr-05-2022, 12:47 AM
Last Post: hammer
  Strategy on updating edits back to data table and object variables hammer 0 1,239 Dec-11-2021, 02:58 PM
Last Post: hammer
  calculate daily return in percent in forex as to some strategy? alen 1 2,273 Mar-12-2021, 10:03 AM
Last Post: buran
  Python learning strategy IluvPython 6 3,347 Nov-04-2019, 07:41 PM
Last Post: buran
  What is the strategy for working with class variables? AlekseyPython 3 3,093 Feb-24-2019, 05:34 AM
Last Post: AlekseyPython
  create list from repeated pattern in python Code4fun 2 3,508 Sep-25-2018, 07:09 PM
Last Post: woooee
  best parallelisation strategy on python simona 1 2,287 Apr-19-2018, 01:51 AM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020