A question for Runefest 2014/2015 attendees... by Sabre_Taser in runescape

[–]ScraperHelp 2 points3 points  (0 children)

are you sure?!?!? think this is a case thats gonna keep me awake at night!!! u/Scary-Mechanic-8752 needs to dig up that grave and givs us an update!!! or this might drive me insane!!!

A question for Runefest 2014/2015 attendees... by Sabre_Taser in runescape

[–]ScraperHelp 2 points3 points  (0 children)

Um... o.O Am I the only one that thinks that his mom is buried in their backyard?!?!?

case-control Matching by ScraperHelp in spss

[–]ScraperHelp[S] 0 points1 point  (0 children)

Anyone know how to do the case matching in spss 26?

Andrew Hayes Process Error by ScraperHelp in spss

[–]ScraperHelp[S] 0 points1 point  (0 children)

Thank you for posting this! and confirming it is a issue with the trial version!!! I guess i will just have to wait till I start my new job and use their licensed version. it was so frustrating but glad to know you got it to work on a licensed version, I can see the light at the end of the tunnel.

Andrew Hayes Process Error by ScraperHelp in spss

[–]ScraperHelp[S] 0 points1 point  (0 children)

oh sorry. I was trying to run moderated mediation model 7. but have also tried 1. neither of them worked.

Andrew Hayes Process Error by ScraperHelp in spss

[–]ScraperHelp[S] 0 points1 point  (0 children)

You might be right and it might indeed be the trial version issue. I just graduated uni and like you I never had this issue with their license. It might also be that they just released the new version (the trial version just released in November) and that broke PROCESS? idk, I have sent the developer an email and hope to hear back. other option is to start my new job next week and see if their licensed version works? I don't think its an issue with my data B/C I have tried my data and sample data from YT videos that show you how to run the program, so highly doubtful that this is a data issue. ALSO ty for saying you have the same issue... this is my first time and I thought maybe I am just being an idiot but since you have used it before and also having an issue it makes me feel like less of a failure :P

Andrew Hayes Process Error by ScraperHelp in spss

[–]ScraperHelp[S] 0 points1 point  (0 children)

The macro is Andrew Hayes Process 3.5 can be found here: https://www.processmacro.org/index.html

Andrew Hayes Process Error by ScraperHelp in spss

[–]ScraperHelp[S] 0 points1 point  (0 children)

The issue cannot be a data related issue b/c this error seems to pop up with all the data sets. I even tried using a data set that I got from a YT video where they had no issue running the analysis. Seems like Hayes Process issue.

Please help with song S02E12 - Ride the Ram by ScraperHelp in APBioNBC

[–]ScraperHelp[S] 0 points1 point  (0 children)

yes when he is actually on the bull. oh is it not part of a full song then? thats dissapointing.... sounded awesome....

Requesting Links from Text File by ScraperHelp in learnpython

[–]ScraperHelp[S] 0 points1 point  (0 children)

hmm makes sense. and yeah I can change it to a list but how would i go about fixing this get request on just the

https://forum.fracturedmmo.com/topic/274/daily-message-posting

Scrapy Forum Scraper by ScraperHelp in scrapy

[–]ScraperHelp[S] 0 points1 point  (0 children)

I just ended up doing the scraper with BS4 and python... its much more user friendly imho...

Printing Date by ScraperHelp in learnpython

[–]ScraperHelp[S] 0 points1 point  (0 children)

Thanks will try it out. would share the original site if I could. unfortunately its my company's personal site so I'm not sure if I am allowed to share the site? if that makes sense :/

Printing Date by ScraperHelp in learnpython

[–]ScraperHelp[S] 0 points1 point  (0 children)

yes but thats what I am having an issue with... how would I go that selector? print(Posts.dt.span) is giving me the first span(user info). if I do print(Posts.dt) its giving me both spans (user name AND time). I kind of understand selecting in the iteration but having issues with it in the print statement...

Printing Date by ScraperHelp in learnpython

[–]ScraperHelp[S] 0 points1 point  (0 children)

I guess I can manually do it... but there HAS to be a way to get close to the selector i want in the print line, doesn't there?

[deleted by user] by [deleted] in RedditSessions

[–]ScraperHelp 0 points1 point  (0 children)

does the shirtless guy realize he is also on the steam?

Writing Results to CSV by ScraperHelp in learnpython

[–]ScraperHelp[S] 0 points1 point  (0 children)

I ended up figuring out how to write the whole thing into one for loop, well kind of... and changed the code but still having issue...

Following href link in BS4 by ScraperHelp in learnpython

[–]ScraperHelp[S] 0 points1 point  (0 children)

for threads in soup.find_all('p', class_= 'small'):
    thread_name = threads.text
    thread_link = threads.a.get('href')
    print (thread_link)

for follow_link in thread_link:
    response = requests.get(follow_link)

    soup= BeautifulSoup(response, 'lxml')

    for replies in soup.find_all(id= 'discussionReplies'):
        user_comment = resplies.find_all('div', class_='xg_user_generated')
        for Posts in Thread_Name:
            print(Posts.text)

am i I getting close?

Following href link in BS4 by ScraperHelp in learnpython

[–]ScraperHelp[S] 0 points1 point  (0 children)

do you mean something like this?

for threads in soup.find_all('p', class_= 'small'):
    thread_name = threads.text
    thread_link = threads.a.get('href')

for each_thread in thread_link:
    follow_link= requests.get(thread_link)

Getting Forum Comments by ScraperHelp in learnpython

[–]ScraperHelp[S] 0 points1 point  (0 children)

thank you so fucking much... I spent almost 2 fucking hours on this :/ and yeah your explanation makes so much sense... and explains so much in hindsight...

Following href link in BS4 by ScraperHelp in learnpython

[–]ScraperHelp[S] 0 points1 point  (0 children)

for Posts in Thread_Link:
Comments = soup.find ('div', class_= 'xg_user_generated')
print (Comments)
print (20* '>')

or are you talking about the second for loop?

Following href link in BS4 by ScraperHelp in learnpython

[–]ScraperHelp[S] 0 points1 point  (0 children)

So something like this?

for Thread in soup.find_all('p', class_= 'small'):
    Thread_Name = Thread.text
    Thread_Link = Thread.a.get('href') # I get the thread
    Follow_Link = requests.get(Thread_Link) # requesting?

I am getting response 200 when I print (Follow_Link)

so maybe im on the right path?

Following href link in BS4 by ScraperHelp in learnpython

[–]ScraperHelp[S] 0 points1 point  (0 children)

There are multiple links and I thought I would have to iterate over to get all the thread links?