Git Product home page Git Product logo

Comments (7)

krapes avatar krapes commented on August 27, 2024 1

Hey @nikolaknez

the "&location=" string is actually added in the start_apply function.

def start_apply(self, positions, locations):
		start = time.time()
		self.fill_data()

		combos = []
		while len(combos) < len(positions) * len(locations):
			position = positions[random.randint(0, len(positions) - 1)]
			location = locations[random.randint(0, len(locations) - 1)]
			combo = (position, location)
			if combo not in combos:
				combos.append(combo)
				print(f"Applying to {position}: {location}")
				location = "&location=" + location
				self.applications_loop(position, location)
			if len(combos) > 20:
				break
		self.finish_apply()

I'm not sure why it was originally written that why, the answer might need a little more detective work.

from linkedin-easy-apply-bot.

krapes avatar krapes commented on August 27, 2024

Ya, what happen is I didn't use the GUI but instead was passing a list of positions/locations in a python script.

I've created a new pull request contain a config.yaml file that should fix this issue.

or you can download it from my fork

from linkedin-easy-apply-bot.

nikolaknez avatar nikolaknez commented on August 27, 2024

from linkedin-easy-apply-bot.

nikolaknez avatar nikolaknez commented on August 27, 2024

Thanks. Excellent.

from linkedin-easy-apply-bot.

nikolaknez avatar nikolaknez commented on August 27, 2024

@krapes Do you know what is an operator name to exclude company? I know the include operator is f_C=. If I want to exclude there is an operator in sales version. Normal <> will not work with f_C. I guess there is another "f_???" for excluding.

from linkedin-easy-apply-bot.

krapes avatar krapes commented on August 27, 2024

I don't know, I just use a blacklist.

I added the blacklist option to the config.yaml file in this pull request if you want to use it to filter companies.

from linkedin-easy-apply-bot.

github-actions avatar github-actions commented on August 27, 2024

Stale issue message

from linkedin-easy-apply-bot.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.