blscrapeR icon indicating copy to clipboard operation
blscrapeR copied to clipboard

Is this package going to be updated for the newest version of R?

Open Emman-Lopez-Oso opened this issue 2 years ago • 1 comments

I'd love to be able to keep using it!

Emman-Lopez-Oso avatar Jun 19 '22 19:06 Emman-Lopez-Oso

Seconding this comment. ...And thanks for all you've created here so far!

JohnsonBrent avatar Aug 29 '22 22:08 JohnsonBrent

Same. Thanks to the contributors! It’s a great library and I would love to keep using it. Thanks again

TradingPlacesResearch avatar Sep 13 '22 14:09 TradingPlacesResearch

Sam here! I love this package, but I can't use it now...

bpffjl avatar Sep 13 '22 15:09 bpffjl

Seeing the chatter on this reminds me... I don't have time this second to update someone else's package to the latest version of R. But in case it helps, here's a gist to download all the blscrapeR functions into a temp directory and load them into memory. After running this script, one ought to be able to reference the functions as if one loaded the original blscrapeR package itself. All credit to keberwein for this package and functions!

JohnsonBrent avatar Sep 13 '22 18:09 JohnsonBrent

Can someone leave the exact error output that's being discussed here. I just installed the package via devtools on a fresh install of R and I can't reproduce the issue.

keberwein avatar Sep 13 '22 19:09 keberwein

Can someone leave the exact error output that's being discussed here. I just installed the package via devtools on a fresh install of R and I can't reproduce the issue.

When I run a script:

> library(blscrapeR)
Error in library(blscrapeR) : there is no package called ‘blscrapeR’

Then

> install.packages("blscrapeR")
Warning in install.packages :
  package ‘blscrapeR’ is not available for this version of R

TradingPlacesResearch avatar Sep 13 '22 19:09 TradingPlacesResearch

@TradingPlacesResearch Try installing directly from GitHub. I think that should work. The package isn't on CRAN ATM.

Let me know if the following works.

# Update dependencies
install.packages("rlang")
install.packages("devtools")

devtools::install_github("keberwein/blscrapeR")

keberwein avatar Sep 13 '22 19:09 keberwein

BOOM! Thanks! This was a fresh R install on an M1 Mac, so I’m betting that’s where the problem cropped up. Thanks again!

TradingPlacesResearch avatar Sep 13 '22 19:09 TradingPlacesResearch

Glad I could help! Been meaning to get this project back on CRAN, just been super-slammed in other areas of life lately!

keberwein avatar Sep 13 '22 19:09 keberwein

Good news gang, this package is now back on CRAN. I'm closing this issue. I'm hoping to have a couple of minor releases in the coming year.

If this, or any other package ever disappears from CRAN, remember you can still use the devtools package to install directly from Github.

devtools::install_github("keberwein/blscrapeR")

Thanks for your support!

keberwein avatar Sep 17 '22 18:09 keberwein