wakatime plugin for python CLI REPL
Freed-Wu opened this issue · 24 comments
I try to realize a wakatime
plugin for python CLI REPL. Can
it be added to https://wakatime.com/terminal?
And I let the plugin run
"wakatime-cli",
"--write",
"--plugin=python-wakatime",
"--entity-type=app",
"--entity=python",
"--alternate-language=python",
However, I don't see python
in the editors
, only found pycharm
which I never use. What happened?
The PyCharm editor sends it's plugin name as just python
, so we fix it on the backend.
How about naming yours pyrepl-wakatime
?
However, I have created python-wakatime
in PYPI. Rename the project to pyrepl-wakatime
seems to be not convenient and confusing. And I am not sure if I should give different plugin name for different REPL: python-wakatime
, ipython-wakatime
, ptpython-wakatime
, ... If change to pyrepl-wakatime
, it will not be different for different REPLs.
And why pycharm
send python-wakatim
not pycharm-wakatime
? It sounds weird.
And why
pycharm
sendpython-wakatim
notpycharm-wakatime
? It sounds weird.
When the plugin asks the IDE what it's name is, it says python
. We could release a new version of the jetbrains plugin to rename it client-side but some people would still use an old version of the plugin for a long time so it's not practical.
we fix it on the backend.
If pycharm must be named to python-wakatime, I would rather python-repl-wakatime
not pyrepl-wakatime
. But I am not sure is it too long? (Perhaps python-cpython-wakatime
? Oh It looks more weird. Or just py-wakatime
?)
Are there any other plugin use wrong name? They should be listed in the
document to let the others avoid use same name. And is there any restrict or requirement of
plugin name? Or any XXX-wakatime
is legal? Can I have different plugin names
for python/ipython/ptpython and so on? If one plugin send pycharm-wakatime
, will it be recognized same as python-wakatime
, or A new plugin?
And there are many languages has a REPL. Such as
reply is a REPL of perl. If one create a wakatime plugin, this
plugin should be called perl-wakatime
or reply-wakatime
best? I hope it
exists a standard to direct the name of plugin.
Let's use repl-cpython-wakatime
, repl-perl-reply-wakatime
, repl-ipython-wakatime
, repl-ptpython-wakatime
, etc.
Are there any other plugin use wrong name? They should be listed in the
document to let the others avoid use same name.
Here's the full list of editors we rename based on XXX-wakatime
the XXX
part:
RENAME_EDITORS = {
"0xdbe": "DataGrip",
"androidstudio": "Android Studio",
"adobe-xd": "Adobe XD",
"adobexd": "Adobe XD",
"azdata": "Azure Data Studio",
"clion": "CLion",
"codeblocks": "Code::Blocks",
"codetasty": "CodeTasty",
"dbeaver": "DBeaver",
r"eric\d+": "Eric",
"ida_pro": "IDA Pro",
"idea": "IntelliJ",
"iterm2": "iTerm2",
"netbeans": "NetBeans",
"notepadpp": "Notepad++",
"onivim": "Onivim",
"onivim2": "Onivim",
"python": "PyCharm",
"reclass": "ReClassEx",
"ruby": "RubyMine",
"sqlops": "Azure Data Studio",
"sublime": "Sublime Text",
"texstudio": "TeXstudio",
"visualstudio": "Visual Studio",
"vscode": "VS Code",
"wakatime-mode": "Emacs",
"wakatime-zsh-plugin": "Zsh",
r"wakatime\.fish": "fish",
}
Can I have different plugin names
for python/ipython/ptpython and so on?
Yes, but ofc only use a different plugin name if your plugin is running in a different repl. If it's running in ipython, use repl-ipython-wakatime
and we'll parse that as IPython
in the dashboard.
Let's use
I have changed to repl-python-wakatime
, repl-ipython-wakatime
, repl-ptpython-wakatime
. And if other REPL such as bpython can be supported, I'll use the similar name. Take the fact that they are all python REPLs into consideration, I think they can use the same color.
The project name is also python-wakatime
, because changing it is too troublesome.
And this plugin is not only support cpython
, also support pypy
(I have tested). So I use repl-python
not repl-cpython
.
Now, can this plugin be added to https://wakatime.com/terminal? TIA!
Now, can this plugin be added to https://wakatime.com/terminal?
Yes! We have a new policy that any plugin added to the website must be under the @wakatime GitHub org, because we've had plugins in the past become abandoned by the original authors causing a bad user-experience when things are broken.
Could you transfer ownership of the repo to @wakatime? Then you will get admin access to the repo, so you can still manage it fully.
Oh, you could transfer it to @alanhamlett then I can transfer it to @wakatime.
I've transferred the repo to https://github.com/wakatime/repl-python-wakatime.
You should have an invite to maintain the repo in your email.
It's also now listed at https://wakatime.com/terminal.
How can I enable pre-commit.ci and codecov? And I don't have the permission of webhook, so I cannot import this repo to readthedocs. Can you provide this permission or import it and add me as a collaborator?
And I don't have the permission of webhook
How about now?
pre-commit.ci and codecov work, but readthedocs.io warns
We have a new policy that any plugin added to the website must be under the @wakatime GitHub org
I notice some of them like
zsh-wakatime or
bash-wakatime are not very
active (new commits or response to issues).
Will those plugins not under @wakatime be transferred to @wakatime?
I try to add wakatime support for perl's REPL, can I use the name of repl-reply-wakatime
?
And I want to add wakatime support for a translate software, can I use the name of translate-shell-wakatime
and let its category is translating not coding or browsing?
Can we have a new category translating
for translate software?
Can we have a new category
translating
for translate software?
Added translating
https://wakatime.com/colors/categories
❯ wakatime-cli --help
Command line interface used by all WakaTime text editor plugins.
Usage:
wakatime-cli [flags]
Flags:
--category string Category of this heartbeat activity. Can be "coding", "building", "indexing", "debugging", "running tests", "writing tests", "manual testing", "code reviewing", "browsing", or "designing". Defaults to "coding".
The usage should be updated, too. 😄
❯ wakatime-cli --help Command line interface used by all WakaTime text editor plugins. Usage: wakatime-cli [flags] Flags: --category string Category of this heartbeat activity. Can be "coding", "building", "indexing", "debugging", "running tests", "writing tests", "manual testing", "code reviewing", "browsing", or "designing". Defaults to "coding".
The usage should be updated, too. smile