Skip to main content
Tweeted twitter.com/StackCodeReview/status/1237845900107468800
Update list formatting per markdown standards
Source Link

I have a Class that 1) goes to a url 2) grabs a link from that page, and a date (filing_date) 3) navigates to the link, and 4) writes the table from that page to a dataframe.:

  1. goes to a url
  2. grabs a link from that page, and a date (filing_date)
  3. navigates to the link, and
  4. writes the table from that page to a dataframe.

I have a Class that 1) goes to a url 2) grabs a link from that page, and a date (filing_date) 3) navigates to the link, and 4) writes the table from that page to a dataframe.

I have a Class that:

  1. goes to a url
  2. grabs a link from that page, and a date (filing_date)
  3. navigates to the link, and
  4. writes the table from that page to a dataframe.
grammar and clarity
Source Link

I have a Class which:that 1) goes to a url 2) scrapesgrabs a link andfrom that page, and a date (filing_date) off that page 3) navigates to the link, and 4) scrapeswrites the table onfrom that page to a dataframe.

I also wantam trying to add the respective filing_date from step #2 added2 to the dataframe from step 4, but it's not being written to the dataframe properly, likely due to the way I'm passing the data between functions within the class. So rather than pass the respective filing_dates for each rowmultiple filing_dates, like so:

I have a Class which: 1) goes to a url 2) scrapes a link and date (filing_date) off that page 3) navigates to the link, and 4) scrapes the table on that page to a dataframe.

I also want the filing_date from step #2 added to the dataframe, but it's not being written to the dataframe properly, likely due to the way I'm passing the data between functions within the class. So rather than pass the respective filing_dates for each row, like so:

I have a Class that 1) goes to a url 2) grabs a link from that page, and a date (filing_date) 3) navigates to the link, and 4) writes the table from that page to a dataframe.

I am trying to add the respective filing_date from step 2 to the dataframe from step 4, but rather than pass the multiple filing_dates, like so:

edited tags
Link
Ben A
  • 10.8k
  • 5
  • 40
  • 103
Source Link
Loading