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.
from components import GetSnippet
snippet = GetSnippet('<SID>') # GetSnippet Obj
data = snippet.get() # Data retrievement
print(data)
from components import GetSnippet, PushSnippet, Language
configs = {
'title': 'TITLE',
'script': 'SCRIPT',
'language': 'go',
}
snippet = PushSnippet(**configs).push()
print(snippet)
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)
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()
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 :)