Skip to content

codehub-ir/codehub-cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CodeHub-CLI

Simple CodeHub command-line client program uses API services. Start editing the main.py file, then try to make your queries and run them up.

Get a Snippet ⇒ main.py
from components import GetSnippet

snippet = GetSnippet('<SID>')       # GetSnippet Obj
data = snippet.get()                # Data retrievement
print(data)
Push a Snippet ⇒ main.py
from components import GetSnippet, PushSnippet, Language

configs = {
    'title': 'TITLE',
    'script': 'SCRIPT',
    'language': 'go',
}

snippet = PushSnippet(**configs).push()
print(snippet)

Optionals

There are some fields you are able to leave them empty. detail and error fields are the optional parameters you may not want to fill them up, so you use the exact keywords to give other parameters the values you want.

from components import GetSnippet, PushSnippet, Language

configs = {
    'title': 'TITLE',
#   'details': 'DETAILS',  Optional
    'script': 'SCRIPT',
#   'error': 'ERROR',      Optional
    'language': 'go',
}

snippet = PushSnippet(**configs).push()
print(snippet)
Custom Language Model

You can also use Language class to use the default languages of the program. You might use a language which is not listed in the Language class, so write it by yourself. Up to 500 languages are available now.

from components import PushSnippet, Language

lang = Language()
snippet = PushSnippet(..., lang.python) # Or PushSnippet(..., 'python')
snippet.push()

Develop it

Make changes in the main file or carry up the classes in your program. Don't forget the GPL-3.0. Develop it for free :)