Welcome to the Power Users community on Codidact!
Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.
Post History
While I was writing the answer, I realized that actually Selenium can be used to do this without any need for Dokuwiki plugins that support your specific use case. Selenium is an automated Chrome, ...
Answer
#3: Post edited
- While I was writing the answer, I realized that actually [Selenium](https://www.selenium.dev/) can be used to do this without any need for Dokuwiki plugins that support your specific use case. Selenium is an automated Chrome, where you can have a Python script open Chrome, go to a URL, find a link, click it, fill out some forms, click a button, etc.
- You would write a Python script like:
- ```python
- beers = load_spreadsheet_into_list_of_dicts()
- start_up_selenium()
- for b in beers:
- page_text = generate_dokuwiki_text(b)
- submit_with_selenium(page_text)
- ```
- `start_up_selenium` is some boilerplate for initializing Selenium and Chrome. If you don't enable headless mode you'll even see it open a Chrome window when you run the script.
- `generate_dokuwiki_text` will be a simple function that takes a dictionary, and fills in some Dokuwiki-syntaxed text template with the information from the dictionary (the column values of that beer).
- `submit_with_selenium` would have the actual selenium code that goes to the URL for DW's "Create Page" page, pastes the text into the text box, and clicks the "save page" button.
- I'm purposely leaving the details vague so they can be posts on software.codidact.com (unless [Selenium docs](https://www.selenium.dev/documentation/webdriver/getting_started/first_script/)/Google aren't enough).
- This is a little bit easier if you're self-hosting, or know the admin of the DW. Sometimes admins get mad when you run bots to create pages :)
Selenium is a weird way to accomplish this, but on the other hand, once you do learn how to do this kind of thing with Selenium, there's a lot of other cool things you can apply your knowledge to. So at least it's a more useful thing to learn than a specialized import plugin of one specific wiki engine.
- While I was writing the answer, I realized that actually [Selenium](https://www.selenium.dev/) can be used to do this without any need for Dokuwiki plugins that support your specific use case. Selenium is an automated Chrome, where you can have a Python script open Chrome, go to a URL, find a link, click it, fill out some forms, click a button, etc.
- You would write a Python script like:
- ```python
- beers = load_spreadsheet_into_list_of_dicts()
- start_up_selenium()
- for b in beers:
- page_text = generate_dokuwiki_text(b)
- submit_with_selenium(page_text)
- ```
- `start_up_selenium` is some boilerplate for initializing Selenium and Chrome. If you don't enable headless mode you'll even see it open a Chrome window when you run the script.
- `generate_dokuwiki_text` will be a simple function that takes a dictionary, and fills in some Dokuwiki-syntaxed text template with the information from the dictionary (the column values of that beer).
- `submit_with_selenium` would have the actual selenium code that goes to the URL for DW's "Create Page" page, pastes the text into the text box, and clicks the "save page" button.
- I'm purposely leaving the details vague so they can be posts on software.codidact.com (unless [Selenium docs](https://www.selenium.dev/documentation/webdriver/getting_started/first_script/)/Google aren't enough).
- This is a little bit easier if you're self-hosting, or know the admin of the DW. Sometimes admins get mad when you run bots to create pages :)
- Selenium is a weird way to accomplish this, but on the other hand, once you do learn how to do this kind of thing with Selenium, there's a lot of other cool things you can apply your knowledge to. So arguably it's a more useful thing to learn than a specialized import plugin of one specific wiki engine.
#2: Post edited
- While I was writing the answer, I realized that actually [Selenium](https://www.selenium.dev/) can be used to do this without any need for Dokuwiki plugins that support your specific use case. Selenium is an automated Chrome, where you can have a Python script open Chrome, go to a URL, find a link, click it, fill out some forms, click a button, etc.
- You would write a Python script like:
- ```python
- beers = load_spreadsheet_into_list_of_dicts()
- start_up_selenium()
- for b in beers:
- page_text = generate_dokuwiki_text(b)
- submit_with_selenium(page_text)
- ```
- `start_up_selenium` is some boilerplate for initializing Selenium and Chrome. If you don't enable headless mode you'll even see it open a Chrome window when you run the script.
- `generate_dokuwiki_text` will be a simple function that takes a dictionary, and fills in some Dokuwiki-syntaxed text template with the information from the dictionary (the column values of that beer).
- `submit_with_selenium` would have the actual selenium code that goes to the URL for DW's "Create Page" page, pastes the text into the text box, and clicks the "save page" button.
- I'm purposely leaving the details vague so they can be posts on software.codidact.com (unless [Selenium docs](https://www.selenium.dev/documentation/webdriver/getting_started/first_script/)/Google aren't enough).
This is a little bit easier if you're self-hosting, or know the admin of the DW. Sometimes admins get mad when you run bots to create pages :)
- While I was writing the answer, I realized that actually [Selenium](https://www.selenium.dev/) can be used to do this without any need for Dokuwiki plugins that support your specific use case. Selenium is an automated Chrome, where you can have a Python script open Chrome, go to a URL, find a link, click it, fill out some forms, click a button, etc.
- You would write a Python script like:
- ```python
- beers = load_spreadsheet_into_list_of_dicts()
- start_up_selenium()
- for b in beers:
- page_text = generate_dokuwiki_text(b)
- submit_with_selenium(page_text)
- ```
- `start_up_selenium` is some boilerplate for initializing Selenium and Chrome. If you don't enable headless mode you'll even see it open a Chrome window when you run the script.
- `generate_dokuwiki_text` will be a simple function that takes a dictionary, and fills in some Dokuwiki-syntaxed text template with the information from the dictionary (the column values of that beer).
- `submit_with_selenium` would have the actual selenium code that goes to the URL for DW's "Create Page" page, pastes the text into the text box, and clicks the "save page" button.
- I'm purposely leaving the details vague so they can be posts on software.codidact.com (unless [Selenium docs](https://www.selenium.dev/documentation/webdriver/getting_started/first_script/)/Google aren't enough).
- This is a little bit easier if you're self-hosting, or know the admin of the DW. Sometimes admins get mad when you run bots to create pages :)
- Selenium is a weird way to accomplish this, but on the other hand, once you do learn how to do this kind of thing with Selenium, there's a lot of other cool things you can apply your knowledge to. So at least it's a more useful thing to learn than a specialized import plugin of one specific wiki engine.
#1: Initial revision
While I was writing the answer, I realized that actually [Selenium](https://www.selenium.dev/) can be used to do this without any need for Dokuwiki plugins that support your specific use case. Selenium is an automated Chrome, where you can have a Python script open Chrome, go to a URL, find a link, click it, fill out some forms, click a button, etc. You would write a Python script like: ```python beers = load_spreadsheet_into_list_of_dicts() start_up_selenium() for b in beers: page_text = generate_dokuwiki_text(b) submit_with_selenium(page_text) ``` `start_up_selenium` is some boilerplate for initializing Selenium and Chrome. If you don't enable headless mode you'll even see it open a Chrome window when you run the script. `generate_dokuwiki_text` will be a simple function that takes a dictionary, and fills in some Dokuwiki-syntaxed text template with the information from the dictionary (the column values of that beer). `submit_with_selenium` would have the actual selenium code that goes to the URL for DW's "Create Page" page, pastes the text into the text box, and clicks the "save page" button. I'm purposely leaving the details vague so they can be posts on software.codidact.com (unless [Selenium docs](https://www.selenium.dev/documentation/webdriver/getting_started/first_script/)/Google aren't enough). This is a little bit easier if you're self-hosting, or know the admin of the DW. Sometimes admins get mad when you run bots to create pages :)