Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

SmileArgs

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

SmileArgs

It is a modern args catching with python3 and OOP structure and implementation.

  • 1.1.2
  • PyPI
  • Socket score

Maintainers
1

Smile Arguments

Version 1.1.2

  • Improving
  • Clean up

Why SmileArgs

It is a modern args catching with python3 and OOP structure and implementation.

Optional

Some parameters will clarify more, when instance starting

smile = SmileArgs(isAllowedNoValue= False, isDuplicated= False, console= True, debug= False)
  • allowNoValue: bool= False | True
    • No require value on args
    • -c command does not need any assign value (Ex: python test.py -c)
  • duplicated: bool= False | True
    • Allowing a user types many times of any command on args (Ex: python test.py -b -b -b)
    • Will execute 3 times of the command "-b" regarding to the above example
  • console: bool= False | True
    • A method will print error when the system catches and throw a particular error
  • debug bool= False | True
    • This property will track any prompt while working

catchCommand()

  • after executed run() method, it allows us to get catch command list
  • show all cli command that matched to the added command
  • return list

getCommand()

  • show all added commands
  • return list

run()

  • find and match command via cli
  • Ex: python test.py -a=Miss -b=Mom

show()

  • display all added commands
  • if found commands, it will display all cough commands

Example 1

Create a test.py

from SmileArgs import SmileArgs
smile   = SmileArgs(console= True, debug= True)
# add command to list
smile.addCommand('a', 'alphabet', 'show alphabet')
smile.addCommand('b', 'baby', 'miss mom by her baby')
smile.addCommand('m', 'miss', 'miss mom everyday')

# catch cli command
print(f'\nFound commands via cli')
smile.run()

# show
smile.show()

On terminal try with this

$ python3.10 test.py -a -ab -a --miss=mom
test-smileargs

Example 2

create a testclass.py

from SmileArgs import SmileArgs

class TestClass:
  def __init__(self):
    """
    """
    # private
    self.__smile   = SmileArgs()
    self.__load()
  
  def __load(self) -> None:
    """
    """
    self.__smile.addCommand('a', 'alphabet', 'show alphabet')
    self.__smile.addCommand('b', 'barbie', 'Wow, movies')
    self.__smile.addCommand('m', 'miss', 'miss mom everyday')
  
  def checkCLI(self) -> None:
    """
    """
    self.__smile.run()

  def executeCLICommand(self) -> None:
    """
    """
    #
    self.checkCLI()
    # 
    for s in self.__smile.catchCommand():
      print(f'{f.cmdShort or f.cmdLong} \t\t{f.value}')
    

testClass = TestClass()
testClass.executeCLICommand()

cli

$ python3.10 testclass.py -a -ab -a --miss=mom

it will catch '-a' as a short command, and '--miss' as a long command; then use match or if statement to control those states.

It is available on PyPi store via https://pypi.org/project/SmileArgs/
To Support my work, please donate me via Buy me a PizzaBuy me a Coffee

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc