Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python open aspx file

#pip install requests
#pip install lxml
#pip install bs4
import requests
from bs4 import BeautifulSoup

r_obj = requests.Session()
url = "aspx_website_url_here" # i.e. http://bisegrw.edu.pk/
r_soup = r_obj.get(url)
soup = BeautifulSoup(r_soup.content , "lxml")

hidden_inputs = soup.find_all("input",type="hidden")

data = {
hidden_inputs[0]['name']:hidden_inputs[0]['value'],
hidden_inputs[1]['name']:hidden_inputs[1]['value'],
hidden_inputs[2]['name']:hidden_inputs[2]['value'],
'other_input':'value',  # i.e. 'rno':'487431',
'submitButton':'submit'}

url_needed = "aspx_endpoint" # i.e. http://bisegrw.edu.pk/result-card-matric.html
final = r_obj.post(url_needed,verify=False,data=data)
soup1 = BeautifulSoup(final.content,"lxml")
detail_tab = soup1.find_all("table")
Comment

PREVIOUS NEXT
Code Example
Python :: How To Let Your Main Window Appear after succesful login in Tkinter 
Python :: add prefix to names in directory python 
Python :: from string to flaot python numpy 
Python :: for loop to select rows in pandas 
Python :: developpement limité sinus python 
Python :: ValueError: Please provide a TPU Name to connect to. site:stackoverflow.com 
Python :: pd dataframe 
Python :: time python 
Python :: dataframe to csv 
Python :: mnist 
Python :: pairwise combinations groupby 
Python :: request login python 
Python :: pandas group by decending 
Python :: how to get a list of files in a folder in python with pathlib 
Python :: python unicode function 
Python :: scipy.arange is deprecated and will be removed 
Python :: CMake Error at pybind11/tools/FindPythonLibsNew.cmake:131 (message): Python config failure: 
Python :: python array linspace 
Python :: python find index 
Python :: munshi premchand 
Python :: inicio programacao python 
Python :: iterative binary search 
Python :: WSGIPassAuthorization on 
Python :: how to pick the latest data entered django 
Python :: run python script task scheduler 
Python :: Fibonacci series up to n python 
Python :: unity python 
Python :: Print characters from a string that are present at an even index number 
Python :: tensorflow conv2d 
Python :: numpy random entries not repeat 
ADD CONTENT
Topic
Content
Source link
Name
5+4 =