aafd Posted February 3, 2017 at 08:03 PM Report Share #602320 Posted February 3, 2017 at 08:03 PM (edited) preciso de fazer um trabalho que é um programa que abre uma página de internet e introduz dados na qualidade de utilizador e submete esses dados poderá ser feito com qualquer linguagem à nossa escolha poderiam-me dizer como é que eu faço algo deste tipo e qual a linguagem que o permite fazer? não encontro um exemplo básico do que preciso na internet podem ajudar? Edited February 3, 2017 at 08:04 PM by aafd Link to comment Share on other sites More sharing options...
M6 Posted February 3, 2017 at 08:22 PM Report Share #602321 Posted February 3, 2017 at 08:22 PM Podes fazer isso com várias linguagens, mas aconselho Python com o Mechanize. Podes ver mais informação aqui: http://www.pythonforbeginners.com/cheatsheet/python-mechanize-cheat-sheet 10 REM Generation 48K! 20 INPUT "URL:", A$ 30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50 40 PRINT "404 Not Found" 50 PRINT "./M6 @ Portugal a Programar." Link to comment Share on other sites More sharing options...
aafd Posted February 3, 2017 at 08:27 PM Author Report Share #602322 Posted February 3, 2017 at 08:27 PM 4 minutos atrás, M6 disse: Podes fazer isso com várias linguagens, mas aconselho Python com o Mechanize. Podes ver mais informação aqui: http://www.pythonforbeginners.com/cheatsheet/python-mechanize-cheat-sheet mas dará para fazer mesmo com a página online ou a página html terá de estar no disco? Agora, aafd disse: mas dará para fazer mesmo com a página online? ou a página html terá de estar no disco? Link to comment Share on other sites More sharing options...
M6 Posted February 3, 2017 at 08:29 PM Report Share #602324 Posted February 3, 2017 at 08:29 PM Isso funciona com qualquer site que devolva HTML e que esteja online. O mechanize é muito usado para fazer webscrapping e automação. 10 REM Generation 48K! 20 INPUT "URL:", A$ 30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50 40 PRINT "404 Not Found" 50 PRINT "./M6 @ Portugal a Programar." Link to comment Share on other sites More sharing options...
aafd Posted February 4, 2017 at 12:56 AM Author Report Share #602328 Posted February 4, 2017 at 12:56 AM 4 horas atrás, M6 disse: Isso funciona com qualquer site que devolva HTML e que esteja online. O mechanize é muito usado para fazer webscrapping e automação. ok, obrigado vou tentar Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now