codehub-ir / codehub-cli

Codehub CLI tool written in Python (Paste within your python projects with no pain)

Home Page:http://codehub.pythonanywhere.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 :)

About

Codehub CLI tool written in Python (Paste within your python projects with no pain)

http://codehub.pythonanywhere.com

License:GNU General Public License v3.0


Languages

Language:Python 100.0%