You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After doing pip install ggsipu-result
tried to run the following code: from ggsipu_result import iter_pages, has_page_results, iter_results FILE="2015_032_B.TECH(CSE)_DECLARE_RESULT_DEC2019.pdf" results = [] for page in iter_pages(FILE): if has_page_results(page): results = results + [r for r in iter_results(page) if r.batch == 2018] results.sort(key=lambda x: x.cgpa, reverse=True) for i, result in enumerate(results[:-1]): print("{i}. {r}".format(i=i+1, r= result))
the following error came:
Traceback (most recent call last):
File "abc.py", line 1, in
from ggsipu_result import iter_pages, has_page_results, iter_results
File "C:\Users\JAIN\AppData\Local\Programs\Python\Python37\lib\site-packages\ggsipu_result_init_.py", line 1, in
from pyxpdf import xpdf
File "C:\Users\JAIN\AppData\Local\Programs\Python\Python37\lib\site-packages\pyxpdf_init_.py", line 3, in
from pyxpdf.xpdf import (
ImportError: DLL load failed: The specified module could not be found.
The text was updated successfully, but these errors were encountered:
After doing pip install ggsipu-result
tried to run the following code:
from ggsipu_result import iter_pages, has_page_results, iter_results FILE="2015_032_B.TECH(CSE)_DECLARE_RESULT_DEC2019.pdf" results = [] for page in iter_pages(FILE): if has_page_results(page): results = results + [r for r in iter_results(page) if r.batch == 2018] results.sort(key=lambda x: x.cgpa, reverse=True) for i, result in enumerate(results[:-1]): print("{i}. {r}".format(i=i+1, r= result))
the following error came:
The text was updated successfully, but these errors were encountered: