Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
35 views

I am using the "Laravel Twill" as a Backend, And we are struggling to rename the provided name. As example once the user is submitted form it goes to the backend.Then from the CMS Side I ...
nimmi deshapriya's user avatar
0 votes
1 answer
422 views

Does anyone know the awnser to this problem. Im working with the twill cms and when i press login i'm faced with this error message : Error retrieving credentials from the instance profile metadata ...
Developermees's user avatar
0 votes
1 answer
1k views

I've created a block for my "main content" and this block uses a repeater field to add multiple buttons. It is rendering corrrectly on my frontend but the buttons aren't included in the ...
Nico Shultz's user avatar
  • 1,892
1 vote
0 answers
61 views

I'm trying to automate a process for my classmates, with a python script that downloads from my university servers the marks that we get through the download of a PDF. Unfortunately, it turns out that ...
Roux's user avatar
  • 69
0 votes
0 answers
73 views

I'm trying to write a little web scraping script, and I'm trying to use twill3, but it keeps giving me the error File "mypath\twill3\other_packages\subprocess.py", line 392 False = 0 SyntaxError: ...
ProgrammingMan's user avatar
2 votes
1 answer
2k views

I wanted to use the repeater blocks of twill for my new project, set it up like in the documentation but it displays outside the section area just right beneath it in the body. Can´t edit it in the ...
Mitchelito's user avatar
4 votes
1 answer
2k views

I'm using Twill to retrieve pages that contain wanted .txt data on them so I can store them as an Excel file. The data is password protected so I'm logging in from the /user/login page. My code runs ...
HelloToEarth's user avatar
  • 2,127
3 votes
1 answer
688 views

I have been failing to go to a URL usign twill and I couldn't find a way to debug the issue further. I have enabled debug levels in twill for "http","equiv-refresh" and "commands", still twill is not ...
takobaba's user avatar
  • 314
0 votes
1 answer
222 views

I am writing a script for my employer to get certain data from their own site. For a long list of reasons, I need to get the data off the site as it is shown. I have discovered, some of that data ...
Alex Nich's user avatar
1 vote
0 answers
120 views

I've been using Twill under Python for a long time now, and somehow, I never managed to run into this before. If you point Twill at a page using a Self-Signed certificate, it errors out, like this: ...
Jesse Dyer's user avatar
3 votes
2 answers
1k views

I use twill to navigate on a website protected by a login form. from twill.commands import * go('http://www.example.com/login/index.php') fv("login_form", "identifiant", "login") fv("login_form", "...
Antoine Gautier's user avatar
0 votes
1 answer
2k views

I am trying to write a crawler with twill for a page, and it requires me to login. I can fill in the form. But the submit() function of twill does not seem to "click" the button. Form name=...
Albert's user avatar
  • 23
0 votes
0 answers
442 views

So I making a Tumblr bot in python with twill (yea I know I could use API, but i want to use multiple accounts (50+) and I don't want to create an API for every account)) And how can I make the ...
Attila Kis's user avatar
1 vote
2 answers
4k views

I'm filling a form on a web page using python's request module. I'm submitting the form as a POST request, which works fine. I get the expected response from the POST. However, it's a multistep form; ...
sanjeev mk's user avatar
  • 4,366
1 vote
0 answers
316 views

I am trying to access a website using twill: https://cuentas.itesm.mx/IDMProv/portal/cn/GuestContainerPage/ITESMPageForgotPassword On the website code there is this field that I need to fill personID,...
Perimetro20's user avatar
0 votes
1 answer
903 views

My python code to submit a value to Google: from twill.commands import * go('www.google.com') showforms() formclear('1') fv("1", "q", "python") showforms() submit('btnG') When it is run it shows the ...
kingsanraj T's user avatar
1 vote
1 answer
2k views

I'm trying to login in https://accounts.coursera.org/ using twill for python I tried this sheet of code import twill b = get_browser() b.go("https://accounts.coursera.org/") b.showforms() ...
aopki's user avatar
  • 310
1 vote
1 answer
2k views

I need to log into a website to access its html on a login-protected page for a project I'm doing. I'm using this person's answer with the values I need: from twill.commands import * go('https://...
doxyl's user avatar
  • 49
0 votes
1 answer
86 views

I have some codes n openshfift which is working with twill module of python program, so i installed twill but i can,t run a simple twill comand via ssh mode the code is : import twill, os #os.environ[...
soheil's user avatar
  • 91
3 votes
0 answers
2k views

I am currently trying to record video from a Foscam 8910W IP Camera using Python. I started by consulting with threads like these: How to parse mjpeg http stream from ip camera? and I got through ...
user2708060's user avatar
1 vote
0 answers
2k views

I've been having a lot of trouble getting what should be a fairly simple login script to work on a particular website. My code does work on another website (Reddit), but it doesn't work on: https://...
phototronic's user avatar
10 votes
4 answers
5k views

I've been trying to learn Twill Scripting on Python and I am using Python 3.4 and Twill 1.8.0. Been reading some posts here and I found it interesting to study. But, I do have a problem installing ...
GM-Xile GM-Xile's user avatar
1 vote
1 answer
762 views

When running nosetests, using Flask-test I keep getting this error: File "/app/env/local/lib/python2.7/site-packages/twill/browser.py", line 33, in __init__ cpl.HTTPConnectionPool.old_http = cpl....
user3590935's user avatar
7 votes
2 answers
18k views

I am trying to send a POST using mechanize however my code won't work sometimes(and I know why). I have used mechanize, twill and requests. With mechanize and twills it is working and with requests ...
avi's user avatar
  • 9,666
4 votes
1 answer
2k views

I want to go to a site and click on a button or link for logging in. But login does not use form. I think login procedure use javascript. Input for username: <input tabindex="1" class="...
Mohammad Bagher's user avatar