Skip to content

Instantly share code, notes, and snippets.

@stephengruppetta
Created May 7, 2023 09:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stephengruppetta/41c1db29caff38a6eed4c869c068905d to your computer and use it in GitHub Desktop.
Save stephengruppetta/41c1db29caff38a6eed4c869c068905d to your computer and use it in GitHub Desktop.
import functools
class Article:
def set_platform(self, platform):
self.platform = platform
# Using partialmethod...
set_substack = functools.partialmethod(
set_platform,
'substack',
)
article = Article()
article.set_substack()
print(article.set_substack.func)
# <bound method Article.set_platform of <__main__.Article
# object at 0x100844e90>>
print(article.set_substack.args)
# ('substack',)
print(article.set_substack.keywords)
# {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment