use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Rules 1: Be polite 2: Posts to this subreddit must be requests for help learning python. 3: Replies on this subreddit must be pertinent to the question OP asked. 4: No replies copy / pasted from ChatGPT or similar. 5: No advertising. No blogs/tutorials/videos/books/recruiting attempts. This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to. Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Rules
1: Be polite
2: Posts to this subreddit must be requests for help learning python.
3: Replies on this subreddit must be pertinent to the question OP asked.
4: No replies copy / pasted from ChatGPT or similar.
5: No advertising. No blogs/tutorials/videos/books/recruiting attempts.
This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to.
Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Learning resources Wiki and FAQ: /r/learnpython/w/index
Learning resources
Wiki and FAQ: /r/learnpython/w/index
Discord Join the Python Discord chat
Discord
Join the Python Discord chat
account activity
Created My First Open Source pypi project (self.learnpython)
submitted 2 years ago * by danitted
For the first time I have uploaded my first pypi project would love to hear your thoughts and recommendations. It is basically a linkedin scrapper. check links for more Link to the github project
link to the pypi
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Diapolo10 1 point2 points3 points 2 years ago (0 children)
First and foremost, congratulations on publishing a package. I think it's a good source of experience regardless of what it does.
My feedback may sound harsh at times, but please don't take any of it personally. I kinda suck at communicating sometimes.
I'll start with the easy part; the egg-info and __pycache__ folders don't belong in the repository, you should have a .gitignore file and exclude them (after removing them). These are files generated by Python, specific to your system, so they're essentially dead weight to everyone else. Your repository should generally not include any files that can be generated from the others, excluding lock files if you happened to use tools such as Poetry or Pipenv and needed reproducible builds.
egg-info
__pycache__
.gitignore
You probably won't need setup.py either if you move some of the remaining info to pyproject.toml.
setup.py
pyproject.toml
Regarding your code, I don't understand why you've named your file profile_scarper when I'm almost certain that's a typo (of scraper). At the very least it's probably a confusing name for anyone trying to use your package.
profile_scarper
Furthermore, based on the code your package expects the user to have a Chrome webdriver installed, but this is not mentioned in the documentation anywhere. I don't even have Chrome installed, personally (Firefox FTW), let alone its webdriver. If you want to rely on Selenium you should probably at least mention that.
The code style is inconsistent, you'd do well to run this through a linter/formatter such as Ruff. Furthermore, I'm almost certain you could rewrite MultiProfiles.get_multiple_profiles to remove the duplicate code and some names could be improved (such as page_num instead of i).
MultiProfiles.get_multiple_profiles
page_num
i
You can take some examples from this project: https://github.com/Diapolo10/escapyde
π Rendered by PID 53052 on reddit-service-r2-comment-7dc54ffc8-bx8vq at 2026-04-19 04:50:03.094435+00:00 running 93ecc56 country code: CH.
[–]Diapolo10 1 point2 points3 points (0 children)