Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Is your feature request related to a problem? Please describe.
I was trying to play with RSS feed for jobs. The feed gives the last 20 items. While going through one of the item inside the list, when I tried running:
It doesn't way a
location
orregion
.It also does not have
categories
or evenpublished
(date).Some other job feeds (WeWorkRemotely, StackOverflow, Remoteok etc) i played with had a field
tags
,location
(StackOverflow did not havelocation
while different sites used different name for it e.g.region
orlocation
) andpublished
.An example of it would be something like this:
Describe the solution you'd like
For location, I think we can probably add this field as
country
,region
andregion
is already available in the model here.For tags, I think we can probably use the field
job_types
is also available inside the model here.For the published date, I think we can subtract
JOB_THRESHOLD_DAYS
the field fromexpires
.(or may be directly add this field to themodel
).While having a brief look, from my limited understanding, I think adding functions for these in feeds.py should do the job.
If the feature seems reasonable, I would look forward to putting together a pull request for this.
If required, it would be great if someone could point to the other portions that I need to tinker with or keep in mind while making the change.
The text was updated successfully, but these errors were encountered: