guruappa / MarketDataApp

MIT License
1 stars 0 forks source link

Separate the public & private scope from the existing "no scope" mechanism #5

Closed guruappa closed 1 year ago

guruappa commented 1 year ago

Separate functions scope into public and private scope: public functions are the ones the users will call, vs private functions are for internal use.

_single_leading_underscore: weak “internal use” indicator.

E.g. from M import * does not import objects whose names start with an underscore.

guruappa commented 1 year ago

This is done, by changing the codebase from function base to OOP paradigm