Posts by Marcelo Rocha • 33 points
7 posts
-
0
votes0
answers59
viewsQ: python requests post application
I am sending data via post to a web application made in Aravel with the CSRF active. This is the form: Note: I edited the _token. !DOCTYPE html> <html lang="en"> <head> <meta…
-
0
votes1
answer126
viewsQ: kivy recycleview with line with multiple items
How to make a recycleview with multiple items in a row? The examples I studied using Recyclegridlayout the columns become independent and so does not look good. An example of how I wanted to do:…
-
0
votes0
answers20
viewsQ: doubt in kivy archive K
I’m having a doubt on a tag in Kv file that I can’t understand its function <TableData>: rgrid: rgrid bar_width: 25 scroll_type: ['bars'] bar_color: [0.2, 0.7, 0.9, 1] bar_inactive_color:…
-
3
votes1
answer403
viewsQ: ftplib and pyftpdlib communication
I have a server (Fedora 29) at home running (as root) an ftp done in python with the ports 5000-5003 and 40000-50000 open, the machine is in DMZ import logging import sys from pyftpdlib.handlers…
-
-4
votes1
answer199
viewsQ: Productivity report via git
How do I take a productivity report from each user in git( can be a program). For example: inserted or changed lines of code.
gitasked Marcelo Rocha 33 -
0
votes1
answer332
viewsQ: Positioning of kivy widget
I’m getting it from the layout managers but I’m slowly advancing. I have this study code: <Tela@RelativeLayout>: canvas.before: Color: rgb: 0,1,.05 Rectangle: pos: [0.2*coord for coord in…
python-kivyasked Marcelo Rocha 33 -
0
votes1
answer39
viewsQ: Addition to an autocomplete
I have an autocomplete with the code below. <p:outputLabel styleClass="rotulos" value="Fornecedor:" /> <p:autoComplete id="inputfornecedor" update="msgcontapagar"…