-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Wikipedia Scraping #1990
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wikipedia Scraping #1990
Conversation
BeautifulSoup and Flask Framework
Legal document reader using neuralDb
@@ -0,0 +1,34 @@ | |||
from thirdai import licensing, neural_db as ndb |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use docstring and comments, to make the program easily understandable to others as well as you.
|
||
clear = Button(root, text="Clear", font=15, fg='black', bg="grey", width=10, command=clear_all) | ||
clear.place(x=245, y=405) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make it OOP based and KISS based.
if __name__ == "__main__":
main()
for option in soup.find_all('option'): | ||
language = option.text | ||
symbol = option['lang'] | ||
language_symbols[language] = symbol |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, provide a proper README.md file, for other people, general people to understand what is this project is all about.
and cover basic aspects like:
- How to install
- How to uninstall
- How to use
etc...,
What are the key features, what are bugs, what to improve, what can be further refactored, etc..., just explaining your project in full length.
</div> | ||
|
||
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Documentation and OOP based and KISS approach is missing everywhere.
MOST IMPORTANT:
README.md
and
Documentation is missing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good and promising.
BeautifulSoup and Flask Framework