Skip to content

Commit

Permalink
Final Update
Browse files Browse the repository at this point in the history
  • Loading branch information
arizsiddiqui committed Jan 13, 2021
1 parent c5f90de commit 142de76
Show file tree
Hide file tree
Showing 12 changed files with 143 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ You can use the CLIK to also add, remove or modify keys, as and when required.
## Installation
You can either clone this repository or install it via pip
```python
pip install clik
pip install python-clik
```

## Usage
Expand Down
Binary file removed dist/clik-1.0-py3-none-any.whl
Binary file not shown.
Binary file removed dist/clik-1.0.tar.gz
Binary file not shown.
Binary file added dist/python-clik-1.0.tar.gz
Binary file not shown.
Binary file added dist/python_clik-1.0-py3-none-any.whl
Binary file not shown.
118 changes: 118 additions & 0 deletions python_clik.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
Metadata-Version: 2.1
Name: python-clik
Version: 1.0
Summary: A CLI tool to keep your Secret/OAuth Keys Safe
Home-page: https://github.com/MLSA-SRM/Project-CLIK
Author: MLSA SRM
Author-email: contact@msclubsrm.in
License: UNKNOWN
Description: # CLIK
![](https://img.shields.io/github/forks/MLSA-SRM/Project-CLIK?style=for-the-badge)
![](https://img.shields.io/github/stars/MLSA-SRM/Project-CLIK?color=purple&style=for-the-badge)
![](https://img.shields.io/badge/contributors-4-orange.svg?style=for-the-badge)

CLIK is a command line interface tool to hide and manage your API keys and Secret/Auth tokens.
This is for project managers for easy management of project-related keys and their distribution.
<br><br>
## How CLIK Works
CLIK provides you with a command line interface that allows you to store your API Keys and Secret/Auth tokens in an encrypted JSON file.
You are provided with an option to either store this key locally in a file, or making a note of it to store it anyway you like.
The encrypted JSON file can safely be uploaded to VCS repositories, meaning access will only be granted to those who have been given the JSON decryption key by you.
You can use the CLIK to also add, remove or modify keys, as and when required.
## Built With
| Software | Version |
|----------|---------|
| Python 3 | 3.7.1 |
| Visual Studio Code| 1.50.1|

## Tested With
| Operating System | Version(s) |
|----------|-------------|
| Microsoft Windows | Windows 10 |
| Apple macOS | 10.15(Catalina), Beta 11.0(Big Sur) |

## Installation
You can either clone this repository or install it via pip
```python
pip install python-clik
```

## Usage
Once you install CLIK, a short and concise documentation can be found br running the following command on your console:
```python
clik
```
## Initialising the JSON File
To create a new file to store keys type the following command in your console:
```python
clik init
```
Now, you can specify all the keys you want to add in a step by step fashion.
CLIK will automatically encrypt the file for you and generate your encryption key.
Now you can either store the key locally or write it down for safekeeping.
So now, your JSON file containing all your keys is ready for upload on your repository.
## Adding/Subtracting Keys
To add new keys to an existing JSON file, type the following command in your console:
<br>
### For Adding Keys
```python
clik FILENAME add
```

### For Subtracting Keys
```python
clik FILENAME subtract
```
## For Modifying Keys
To modify any key in an existing JSON file, type the following command in your console:
```python
clik FILENAME modify
```
## For Encrypting the Keys File
To encrypt the JSON file, type the following command in your console:
```python
clik FILENAME enc
```
This will ask for any existing Keys to encrypt the JSON file with. If you have an existing Key,
continue. Else, you can specify/create a new key for this new encryption.

## For Decrypting the Keys File
To decrypt the JSON file, type the following command in your console:
```python
clik FILENAME dec
```
This will ask for any existing Keys to decrypt the JSON file with. If you have an existing Key,
continue normally. Else, provide a path for the Key to be used for decryption.

> Note: For any kind of operation on an encrypted JSON file, you need to decrypt it first.

## Help
To check the syntax for any of the commands or their function, type the following command in your console:
```python
clik --help
```

## Version
To check the version of CLIK you're running, type the following command in your console:
```python
clik --version
```
> Note: Before uploading the JSON file containing your Keys to any VCS, it is recommended to store your .key file containing your Key to decrypt this encrypted JSON file in .gitignore of any other directory of your computer.

## Dependancies
* [printy](https://github.com/edraobdu/printy)
* [Python 3](https://python.org/)
* [cryptography](https://github.com/pyca/cryptography)

## Contributors
* [Mihir Singh](https://github.com/mihirs16)
* [Anushka Agarwal](https://github.com/anushka17agarwal)
* [Kushagra Gupta](https://github.com/KG-1510)
* [Ariz Siddiqui](https://github.com/arizsiddiqui)

Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
16 changes: 16 additions & 0 deletions python_clik.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
README.md
setup.py
clikpython/__init__.py
clikpython/clik.py
clikpython/encrypt.py
clikpython/helpVersion.py
clikpython/json_convert.py
clikpython/keys_init.py
clikpython/menu_functions.py
clikpython/utils.py
python_clik.egg-info/PKG-INFO
python_clik.egg-info/SOURCES.txt
python_clik.egg-info/dependency_links.txt
python_clik.egg-info/entry_points.txt
python_clik.egg-info/requires.txt
python_clik.egg-info/top_level.txt
1 change: 1 addition & 0 deletions python_clik.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

3 changes: 3 additions & 0 deletions python_clik.egg-info/entry_points.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[console_scripts]
clik = clikpython.clik:main_menu

2 changes: 2 additions & 0 deletions python_clik.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
printy
cryptography
1 change: 1 addition & 0 deletions python_clik.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
clikpython
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
long_description = fh.read()

setuptools.setup(
name="clik",
name="python-clik",
version="1.0",
entry_points={
'console_scripts':[
Expand Down

0 comments on commit 142de76

Please sign in to comment.