Python Forum
Copy data from Excel and paste into Discord (Midjourney)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Copy data from Excel and paste into Discord (Midjourney)
#2
Dos it work outside of the loop also with one vaule?
Eg add print(cell_value) on line 18.

Test like this.
import subprocess

cell_vaule =  "A dog in space"
command = ['C:\\Users\\irave\\AppData\\Local\\Discord\\app-1.0.9013\\Discord.exe', '/imagine', ' ' + str(cell_value)]
process = subprocess.Popen(command, stdin=subprocess.PIPE)
process.communicate()
Or with run()
import subprocess
 
cell_vaule =  "A dog in space"
command = ['C:\\Users\\irave\\AppData\\Local\\Discord\\app-1.0.9013\\Discord.exe', '/imagine', ' ' + str(cell_value)]
out = subprocess.run(command , capture_output=True)
print(out.stdout.decode())
I use Midjourney and it return a Image format .png,do you have command from command line that work and give you raw .png format back?
Reply


Messages In This Thread
RE: Copy data from Excel and paste into Discord (Midjourney) - by snippsat - Jun-01-2023, 11:42 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Why is the copy method name in python list copy and not `__copy__`? YouHoGeon 2 372 Apr-04-2024, 01:18 AM
Last Post: YouHoGeon
  Copy Paste excel files based on the first letters of the file name Viento 2 553 Feb-07-2024, 12:24 PM
Last Post: Viento
  What script to paste folders thenewcoder 1 737 Nov-29-2023, 09:40 AM
Last Post: Pedroski55
  How to copy work sheet data one workbook to other? sayyedkamran 2 780 Nov-03-2023, 09:10 AM
Last Post: Larz60+
  Reading data from excel file –> process it >>then write to another excel output file Jennifer_Jone 0 1,203 Mar-14-2023, 07:59 PM
Last Post: Jennifer_Jone
  How to properly format rows and columns in excel data from parsed .txt blocks jh67 7 2,059 Dec-12-2022, 08:22 PM
Last Post: jh67
  Trying to Get Arduino sensor data over to excel using Python. eh5713 1 1,836 Dec-01-2022, 01:52 PM
Last Post: deanhystad
  is it possible to copy image from email and place into excel file? cubangt 3 1,348 Nov-30-2022, 05:11 PM
Last Post: snippsat
  Please help me [copy and paste file from src to dst] midomarc 2 1,084 Nov-24-2022, 10:13 PM
Last Post: midomarc
  Appending a row of data in an MS Excel file azizrasul 3 1,280 Nov-06-2022, 05:17 PM
Last Post: azizrasul

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020