-
Created get jira issue attachment
i need to get all attachments from a jira issue. done this so far from jira import JIRA issues = jira.search_issues(search_query, start, size) for issue in issues: con_tot += 1 … -
Began Watching get jira issue attachment
i need to get all attachments from a jira issue. done this so far from jira import JIRA issues = jira.search_issues(search_query, start, size) for issue in issues: con_tot += 1 … -
Created Call function with a click of a button flask
Im very new to flask and im trying to convert a python tkinter gui app to web. As you can understand i have all the functions made so it would … -
Began Watching Call function with a click of a button flask
Im very new to flask and im trying to convert a python tkinter gui app to web. As you can understand i have all the functions made so it would … -
Replied To a Post in Youtube playlist player
got it y_url = item.watchv_url now i get AttributeError: 'YtdlStream' object has no attribute 'y_url' in line 80 `player = vlc.MediaPlayer(best.y_url.strip()) ` -
Replied To a Post in Youtube playlist player
i add them to a list but the list add them like this: [Pafy object: w0N4twV28Mw [Ini Kamoze - Here Comes The Hotstepper (HQ)..]] how do i just get the … -
Gave Reputation to Schol-R-LEA in Youtube playlist player
According to [this post](https://github.com/mps-youtube/pafy/issues/222), the solution is to operate on `playlist` directly rather than extracting the `"items"` sub-dictionary. -
Replied To a Post in Youtube playlist player
it apears in line items = playlist["items"]# getting playlist items -
Replied To a Post in Youtube playlist player
fix the quota with youtube api key, now i get `TypeError: '<' not supported between instances of 'str' and 'int'` in line items = playlist["items"]# getting playlist items -
Edited Youtube playlist player
Hi, im trying to set a radio and youtube playlist player my code works with radio and single youtube link but with playlist it says that the link is unrecognized, … -
Created Youtube playlist player
Hi, im trying to set a radio and youtube playlist player my code works with radio and single youtube link but with playlist it says that the link is unrecognized, … -
Began Watching Youtube playlist player
Hi, im trying to set a radio and youtube playlist player my code works with radio and single youtube link but with playlist it says that the link is unrecognized, … -
Replied To a Post in move browserframe to labelframe
Now its pointing right and opening with the specified dimensions, but it still not opening in the correct place although self is pointing to the correct frame import ctypes import … -
Replied To a Post in move browserframe to labelframe
i think the issue is here rect = [0, 0, self.winfo_width(), self.winfo_height()] it prints 140339762794416 [0, 0, 1, 1] i think its because the browser windows is not set properly, … -
Gave Reputation to rproffitt in move browserframe to labelframe
Again, line 42 calls out that this is where the resize occurs yet I can't find the code for MAC? Why? -
Gave Reputation to rproffitt in move browserframe to labelframe
I do not have an Apple to test on but line 42 and forward I don't see code for MAC. Why? -
Created move browserframe to labelframe
Hi, i have this script but cant seem to open the browserframe in the correct place  import ctypes import platform from cefpython3 import cefpython as cef from tkinter import … -
Began Watching move browserframe to labelframe
Hi, i have this script but cant seem to open the browserframe in the correct place  import ctypes import platform from cefpython3 import cefpython as cef from tkinter import … -
Replied To a Post in Anyone know why this is not adding borders to my sheet
i stated the tag openpyxl, and the example is a full example to add borders to cell. i havent explain much because the tag and code can only be one … -
Replied To a Post in Setting background color of cell always show black
iv got it with xlsx['Sheet']['A1'].fill = PatternFill(start_color='FF001F', end_color='FF001F',fill_type = 'solid') -
Created Setting background color of cell always show black
i have this line to set the background color of a cell but instead of the color i specified it set the cell to black. Tried with diferent colors to … -
Began Watching Setting background color of cell always show black
i have this line to set the background color of a cell but instead of the color i specified it set the cell to black. Tried with diferent colors to … -
Created Anyone know why this is not adding borders to my sheet
Anyone know why this is not adding borders to my sheet? thick = Side(border_style="thick", color='FF0707') ws['F1'].border = Border(top=thick, left=thick, right=thick, bottom=thick) for row in ws['A1:D10']: for cell in row: cell.border … -
Began Watching Anyone know why this is not adding borders to my sheet
Anyone know why this is not adding borders to my sheet? thick = Side(border_style="thick", color='FF0707') ws['F1'].border = Border(top=thick, left=thick, right=thick, bottom=thick) for row in ws['A1:D10']: for cell in row: cell.border … -
Replied To a Post in lambda dont pass the correct value
cant edit :(. this is the correct example from tkinter import ttk, Tk root = Tk() global gen_reprow,x gen_reprow=8 x=0 mainframe = ttk.Frame(root) mainframe.grid(column=0, row=0) def printd(gena): print(gena) def ger_but(vv): … -
Edited lambda dont pass the correct value
Hi have this loop but insted of send the correct value in the button it always send the original value this creates the buttons named from 0 to 9, but … -
Created lambda dont pass the correct value
Hi have this loop but insted of send the correct value in the button it always send the original value this creates the buttons named from 0 to 9, but … -
Began Watching lambda dont pass the correct value
Hi have this loop but insted of send the correct value in the button it always send the original value this creates the buttons named from 0 to 9, but … -
Replied To a Post in web browser inside frame with buttons to go to diferente pages
made some changes its still confusing :s you need to manually resize the window for the browser to show.... dont ask me why :( # Example of embedding CEF Python … -
Replied To a Post in web browser inside frame with buttons to go to diferente pages
this is complicated :s do you think i can clean this code? i think there many features that are not even implemented yet :s # Example of embedding CEF Python … -
Replied To a Post in web browser inside frame with buttons to go to diferente pages
this is what i need, maybe its easier like this  this seems to work https://github.com/cztomczak/cefpython/blob/master/examples/tkinter_.py or https://pythonprogramming.altervista.org/python-goes-to-the-web-cefpython-and-tkinter/ but i get this error on booth raise Exception("Python version not supported: … -
Gave Reputation to Schol-R-LEA in web browser inside frame with buttons to go to diferente pages
I did notice that editing the URL only set it to "about:blank", but that doesn't seem to be what you actually were referring to. -
Gave Reputation to Schol-R-LEA in web browser inside frame with buttons to go to diferente pages
I did notice that editing the URL only set it to "about:blank", but that doesn't seem to be what you actually were referring to. -
Gave Reputation to Schol-R-LEA in web browser inside frame with buttons to go to diferente pages
I did notice that editing the URL only set it to "about:blank", but that doesn't seem to be what you actually were referring to. -
Replied To a Post in web browser inside frame with buttons to go to diferente pages
hi, sorry to bother you, been trying the past weeks, is there a way this can be done? im starting to think that it cant be done :( can you … -
Gave Reputation to Schol-R-LEA in populate tables from txt with specific time frame
Try this instead: # force all issues other than "Operations" to "Other" if tipo != "Operations": tipo = "Other" -
Replied To a Post in populate tables from txt with specific time frame
no one is ever happy at first :( now i need to add more projects but in the charts i will only use two, "operations" and all the others inside … -
Gave Reputation to Schol-R-LEA in web browser inside frame with buttons to go to diferente pages
Sorry for the delay in getting back to you, I'll see what I can find out. -
Replied To a Post in web browser inside frame with buttons to go to diferente pages
hi, it doesnt need to be qt, i just cant find a way to do this with tkinter. the thing is when ever i click a button the browser frame … -
Marked Solved Status for .py page just for variables
Im new to python , trying to update my self from the time of ASP Classic. In that time i use to have a page for vars that i included … -
Revoked Solved Status for .py page just for variables
Im new to python , trying to update my self from the time of ASP Classic. In that time i use to have a page for vars that i included … -
Marked Solved Status for .py page just for variables
Im new to python , trying to update my self from the time of ASP Classic. In that time i use to have a page for vars that i included … -
Created web browser inside frame with buttons to go to diferente pages
Got this to open a browser inside a specific frame, and i need it to be changeable, any ideas? been readin pyqt5 but cant seem to manage this import sys … -
Began Watching web browser inside frame with buttons to go to diferente pages
Got this to open a browser inside a specific frame, and i need it to be changeable, any ideas? been readin pyqt5 but cant seem to manage this import sys … -
Replied To a Post in populate tables from txt with specific time frame
that only give the total, printed labels and it return all 3, but when applying to chart it only displays the first(Total) added this for i in range(len(issue_details)): bars = … -
Gave Reputation to Schol-R-LEA in populate tables from txt with specific time frame
I'm not sure what you mean by the subtitle, but I am assuming you mean the label for an axis as a whole. For the X axis (horizontal), that would … -
Replied To a Post in populate tables from txt with specific time frame
Wow thats is great, thank you so much. had to make some changes but its working great. Just two things, how can i had the subtitle to the first chart? … -
Replied To a Post in populate tables from txt with specific time frame
although that didnt work either the thing is that its not needed since what i need is current month, last month, total since the begining of the year and monthly … -
Replied To a Post in populate tables from txt with specific time frame
strange, same error File "/Users/ricardosimoes/PycharmProjects/OCPP/week_report.py", line 117, in get_chart data[week_number_of_month(issue_date) - 1] += 1 IndexError: list index out of range -
Replied To a Post in populate tables from txt with specific time frame
it reply this :s /usr/local/bin/python3.9 /Users/ricardosimoes/PycharmProjects/OCPP/week_report.py 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 …
The End.