adds minimal cli for qr code and pushing
- cli generated using typer package, which is added to the setup.py - if optional argument to bump is not passed, the current secret is visualized - if there is an argument, it is pushed as a message to the current sender - adds setup.py command line script which adds a call to the bump.cli:main function passing the cli parameters along - updates package version to 0.1.3 - Squashed commits: - commite120815378
- commit3a47ee56bf
- commitaeca052cbc
- commit2294650daa
This commit is contained in:
parent
570a64f450
commit
750f79f03a
@ -1,2 +1,3 @@
|
|||||||
from bump.bump import Bump
|
from bump.bump import Bump
|
||||||
|
import bump.cli as cli
|
||||||
|
|
||||||
|
@ -6,6 +6,7 @@ import requests
|
|||||||
import base64
|
import base64
|
||||||
import re
|
import re
|
||||||
import os
|
import os
|
||||||
|
import typer
|
||||||
from random_word import RandomWords
|
from random_word import RandomWords
|
||||||
|
|
||||||
SENDER_LENGTH = 4
|
SENDER_LENGTH = 4
|
||||||
@ -58,7 +59,6 @@ class Bump:
|
|||||||
if self.secrets == []:
|
if self.secrets == []:
|
||||||
print("you seem to not have a secret in your secrets file! Creating one now...")
|
print("you seem to not have a secret in your secrets file! Creating one now...")
|
||||||
self.generate_secret(secrets_file)
|
self.generate_secret(secrets_file)
|
||||||
self.show_secret()
|
|
||||||
|
|
||||||
self.URL = "https://bump.maenle.net/api/"
|
self.URL = "https://bump.maenle.net/api/"
|
||||||
|
|
||||||
@ -215,7 +215,3 @@ class Bump:
|
|||||||
self._save_log(message)
|
self._save_log(message)
|
||||||
log = self.load_log()
|
log = self.load_log()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
b = Bump()
|
|
||||||
|
23
bump/cli.py
Normal file
23
bump/cli.py
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
import bump
|
||||||
|
import typer
|
||||||
|
|
||||||
|
cli = typer.Typer()
|
||||||
|
|
||||||
|
@cli.command()
|
||||||
|
def default(message = typer.Argument(None, help="The message to be bumped")):
|
||||||
|
bp = bump.Bump()
|
||||||
|
if message is None:
|
||||||
|
bp.show_secret()
|
||||||
|
else:
|
||||||
|
bp.push(message)
|
||||||
|
|
||||||
|
@cli.command()
|
||||||
|
def push():
|
||||||
|
bp = bump.Bump()
|
||||||
|
bp.version()
|
||||||
|
|
||||||
|
def main():
|
||||||
|
typer.run(default)
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
10
setup.py
10
setup.py
@ -1,10 +1,15 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
entry_points={
|
||||||
|
'console_scripts': [
|
||||||
|
'bump = bump.cli:main',
|
||||||
|
],
|
||||||
|
},
|
||||||
name='bump_python',
|
name='bump_python',
|
||||||
packages=['bump'],
|
packages=['bump'],
|
||||||
description='Notify your Phone from Python',
|
description='Notify your Phone from Python',
|
||||||
version='0.1.1',
|
version='0.1.3',
|
||||||
url='https://git.maenle.tech/raphael/bump_python',
|
url='https://git.maenle.tech/raphael/bump_python',
|
||||||
author='Raphael Maenle',
|
author='Raphael Maenle',
|
||||||
author_email='raphael@maenle.net',
|
author_email='raphael@maenle.net',
|
||||||
@ -18,6 +23,7 @@ setup(
|
|||||||
'qrcode',
|
'qrcode',
|
||||||
'pyyaml',
|
'pyyaml',
|
||||||
'random-word',
|
'random-word',
|
||||||
'cryptography'
|
'cryptography',
|
||||||
|
'typer'
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user