Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update python plugin docs - fix grammatical errors #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions doc/en/plugin/python_plugin.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
Wox supports plugin development using Python. Wox comes with a Python environment and its standard library, so user didn't need to install python environment anymore.
Wox build-in the requests and beautifulsoup4 library, so plugin makers can use them to access web contents.
Wox supports plugin development using Python. Wox comes with a Python environment and its standard library, so the user doesn't need to install a dedicated python environment anymore.

You can refer this project when you making python plugins:[Wox.Plugin.HackerNews](https://github.com/qianlifeng/Wox.Plugin.HackerNews)
Wox has the `requests` and `beautifulsoup4` library built-in, so plugin makers can use them to access web contents.

Steps to making a python plugin:
You can refer to this project when making a python plugins:[Wox.Plugin.HackerNews](https://github.com/qianlifeng/Wox.Plugin.HackerNews)

Steps to make a python plugin:

* [Create `plugin.json` file](plugin_json.html)

Expand Down Expand Up @@ -66,5 +67,4 @@ class Main(Wox):
Main()
```

* After you create a plugin, you can copy the plugin to `<WoxDirectory>\Plugins\<YourPluginDirectory>` and restart the Wox. You can so upload the plugin to [Wox Plugin](http://www.wox.one/plugin),
So other users can use your plugins.
* After you create a plugin, you can copy the plugin to `<WoxDirectory>\Plugins\<YourPluginDirectory>` and restart Wox. You can also upload the plugin to [Wox Plugin](http://www.wox.one/plugin), so other users can find and install your plugin.