Python Forum
Python program to write into websites for you - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html)
+--- Thread: Python program to write into websites for you (/thread-27401.html)



Python program to write into websites for you - pythonDEV333 - Jun-05-2020

Hello, I'm a computer science student and I was applying to some universities, but it takes so much time and sometimes I feel too lazy to go and fill all this information online, so I thought what if I code a python program that will do all this work for me its a good idea but the problem I dunno where to start so here I'm if anyone can give me some information I will be so happy.thank you so much. Blush Blush


this image explains what i want to do:

[Image: 85m6TWk]


RE: Python program to write into websites for you - DeaD_EyE - Jun-05-2020

You can use https://selenium-python.readthedocs.io/
Just read the documentation, find the right fields, put the data into the fields and send the form.
You've to create for each site own code. Not all sites for registration do have the same field names or number of fields.


RE: Python program to write into websites for you - buran - Jun-05-2020

I would suggest to start with our tutorial section https://python-forum.io/Forum-Web-Scraping
There is little we can tell without knowing the website(s).


RE: Python program to write into websites for you - pythonDEV333 - Jun-08-2020

(Jun-05-2020, 12:10 PM)DeaD_EyE Wrote: You can use https://selenium-python.readthedocs.io/
Just read the documentation, find the right fields, put the data into the fields and send the form.
You've to create for each site own code. Not all sites for registration do have the same field names or number of fields.
(Jun-05-2020, 12:10 PM)DeaD_EyE Wrote: You can use https://selenium-python.readthedocs.io/
Just read the documentation, find the right fields, put the data into the fields and send the form.
You've to create for each site own code. Not all sites for registration do have the same field names or number of fields.
thanks dor your help sir