
Closed
Posted
I have a stream of numerical information being pulled automatically from several news sites, and I need that raw output cleaned, coded, and delivered in a tidy, analysis-ready format. The web-scraping side is already set up; what’s missing is a solid routine that parses each scrape, identifies the key figures buried in the articles, applies consistent codes to them, and drops everything into a structured file (CSV or JSON works for me). You’ll receive: • the current scraping script and a sample of the raw dump • a field dictionary showing how each number should be labeled or categorised I’m expecting your returned script (Python preferred—BeautifulSoup/Scrapy plus pandas is perfect, but use what you like) along with the final processed dataset and a brief read-me so I can rerun or extend the pipeline later. Accuracy of the coding and reproducibility of results will be the benchmarks for sign-off.
Project ID: 40533218
52 proposals
Remote project
Active 3 days ago
Set your budget and timeframe
Get paid for your work
Outline your proposal
It's free to sign up and bid on jobs
52 freelancers are bidding on average $19 USD/hour for this job

As an experienced full-stack developer and data scientist, I have deep expertise that perfectly aligns with your project's needs. My 13+ years with Python-based web automation and data mining make me fluent in technology stacks including BeautifulSoup and Scrapy that you have mentioned. With keen attention to detail and top-notch skills, I can parse, clean, code, and deliver numerical information from your news site in your preferred structured format (CSV or JSON), ready for analysis. Reproducibility and accuracy are my benchmarks too. Rest assured that my final script will be provided alongside the processed dataset and a comprehensive read-me guide; making it easy for you to maintain or expand the pipeline later on. The field dictionary will be strictly followed to label and categorize each number consistently. My extensive proficiency in constructing customized automated solutions is evident in my recent projects like Car Rental Website Development, AI emergency caller using Vapi and Twilio as well as OpenClaw AI bot installation on macOS and Windows OS. Allow me to add your project to this list of finely-executed assignments by offering you the high-quality deliverables you deserve. It will be a privilege to work on this task for you.
$15 USD in 40 days
7.3
7.3

Hi, We’ve developed similar solutions that automatically extract and categorize numerical data from news articles. In one project, we built a web scraper that collected news headlines and descriptions, then used NLP to identify and classify key financial figures like revenue and profit. This resulted in a structured dataset that was later used for training machine learning models. For your project, we can use a combination of web scraping and NLP to extract relevant numbers and categorize them based on your predefined labels. We can also implement a feedback loop to improve accuracy over time. Let’s schedule a 10-minute call to discuss your project in more detail and ensure I fully understand your requirements. I’m ready to start immediately and can deliver a fully functional version within just a few days. Best regards, Adil
$22 USD in 40 days
6.4
6.4

Your scraping pipeline will fail the moment a news site changes its HTML structure or introduces paywalls. Without error handling and schema validation, you'll get silent data corruption that ruins your entire analysis downstream. Before I architect the parser, two questions: What's your tolerance for missing data? If a scrape returns 80% of expected fields, do you want the row flagged or dropped entirely? Are these numerical figures always in consistent formats (e.g., "$1.2M" vs "1200000" vs "1.2 million"), or do I need to build normalization logic for currency, percentages, and unit conversions? Here's the technical approach: - PYTHON + BEAUTIFULSOUP: Build a fault-tolerant parser with try-except blocks around each extraction point so one malformed article doesn't crash the entire batch. - REGEX + PANDAS: Extract numerical patterns using compiled regex for speed, then normalize units (K/M/B suffixes, currency symbols, percentages) into standardized float values before coding. - SCHEMA VALIDATION: Implement pydantic models or JSON schema checks to catch field mismatches immediately rather than discovering corrupt data weeks later during analysis. - LOGGING + MONITORING: Add structured logging that tracks extraction success rates per source so you know which news sites are degrading over time. - IDEMPOTENCY: Design the pipeline so rerunning the same raw dump produces identical output, critical for reproducibility when you're debugging edge cases. I've built 8 production data pipelines that process 500K+ records daily without manual intervention. The difference between a script that works once and a system that runs reliably is error handling at every extraction point. Let's discuss your field dictionary and edge cases before I write code that assumes clean inputs.
$18 USD in 30 days
7.1
7.1

Hello, I am an experienced python developer. If you can share sample raw data & fields dictionary rules, I can evaluate it & see if I can offer a free output to you which you can check & confirm before awarding me the project. However, as I will spend time building the script which gives the free output for you to check, I would prefer a fixed price offer from you to get the actual script hooked into your existing pipeline. I can share my expected fixed price after seeing sample data & rules to apply. Thank you.
$25 USD in 40 days
6.2
6.2

Hello, I'm an experienced Python developer looking for long-term collaborations. I deliver clean architecture, scalable solutions, and fast communication throughout the project lifecycle. Let's discuss your requirements. Regards
$15 USD in 40 days
6.1
6.1

Nice to meet you , It is a pleasure to communicate with you. My name is Anthony Muñoz, I am the lead engineer for DSPro IT agency and I would like to offer you my professional services. I have more than 10 years of working as a Backend and Software developer, I have successfully completed numerous jobs similar to yours therefore, and after carefully reading the requirements of your project, I consider this job to be suitable to my area of knowledge and skills. I would love to work together to make this project a reality. I greatly appreciate the time provided and I remain pending for any questions or comments. Feel free to contact me. Greetings
$36 USD in 40 days
5.8
5.8

Hi! My name is Marjan and I'm here to offer you my services as a skilled applicant with over a decade of experience working on Freelancer.com. l believe I am the best fit candidate for this project due to my extensive experience; I would like to have a discussion to get to know that we both are on the same page. Once the scope will be locked, I will start working on it right away.
$20 USD in 40 days
5.6
5.6

I can build a reliable Python data-processing pipeline that parses your scraped news data, accurately extracts and categorizes numerical values, and exports clean, analysis-ready CSV/JSON outputs with fully documented, reproducible code using Pandas and BeautifulSoup/Scrapy.
$15 USD in 40 days
5.5
5.5

★•══•★ Hi client ★•══•★ I have experience building Python data-processing pipelines, web-scrape parsers, numerical data extraction routines, pandas workflows, CSV/JSON exports, and reproducible analysis-ready datasets. My approach will be: ✔️ First, I will review your existing scraping script, raw article dumps, and field dictionary to understand how each numerical value should be identified, labeled, and categorized. ✔️ Then, I will build a clean Python parsing and coding routine using pandas, regex, BeautifulSoup/Scrapy outputs, and validation checks to extract key figures accurately and apply consistent codes. ✔️ Finally, I will generate the final structured CSV/JSON dataset, test reproducibility on sample inputs, and provide a concise README so you can rerun or extend the pipeline later. One question: Could you please share the raw dump sample, current scraping script, and field dictionary so I can review the parsing rules before getting started? Best regards. Rico
$15 USD in 40 days
5.0
5.0

What usually breaks these jobs is not the scraping but the messy semantics: the same numeral can mean attendance, revenue, percent, or a date depending on context, and inconsistent formatting (commas, parentheses, ranges, currencies) defeats naive parsing. I’ll build a small, configurable pipeline that (a) normalizes raw text snippets, (b) applies rule-based + lightweight NLP context checks to tag each figure to your field dictionary, and (c) writes a tidy CSV/JSON plus provenance columns (source, article id, sentence, confidence). I’ll include unit tests on the sample dump so accuracy is measurable. Recommended stack: Python 3.10+, pandas for framing, regex + dateutil + babel/locale for parsing, spaCy or rule-based heuristics for context disambiguation; optional tiny YAML mapping for your field dictionary. Scraping stays as-is — I’ll accept its output and focus on robust parsing. I’ll deliver the script, processed dataset, and a short README explaining rerun steps and extension points; pipeline will be modular so adding new codes or languages is trivial. Relevant work: on CrowdAxis I built cron-driven ETL that normalized 10 sources into a unified schema and exposed clean data for scoring — similar parsing/validation challenges. Do your scrapes include multiple currencies or languages, and are there specific numeric types (ranges, percentages, footnotes) you want treated first? If that’s good, I can start with the sample right away. My bid: $20.
$20 USD in 7 days
4.8
4.8

Hi there, I appreciate the chance to work on your project! It looks like you need help cleaning and coding numerical data pulled from various news sites. My approach would involve using Python, specifically BeautifulSoup or Scrapy, alongside pandas to parse the raw data, extract the key figures, and apply the necessary codes according to your field dictionary. With 4+ years of experience in data processing and web scraping, I’m confident I can deliver a clean, structured dataset in CSV or JSON format that meets your needs. I’ll also ensure that I provide a brief read-me file to help you rerun or extend the process in the future. To better understand your requirements, could you clarify if there are any specific numerical patterns or edge cases I should be particularly aware of while coding the data? Best regards, Arslan Shahid
$15 USD in 3 days
4.9
4.9

Hi, I’m Krishna from Delhi. Thank you for the opportunity to submit our proposal for your project. We have carefully reviewed the project details, and based on our experience, my team and I are confident in our ability to deliver a successful solution. We are a team of 20+ AI engineers and have successfully completed 300+ projects across various domains. I would appreciate the opportunity to schedule a brief discussion to better understand your requirements and expectations. This would also allow us to share our approach and demonstrate how our expertise can add value to your project. Additionally, we have recently worked on similar projects and would be happy to share relevant insights and learnings that may be beneficial for your initiative. Looking forward to connecting with you. Thanks & Regards, Krishna Kant KrisuTechkul
$20 USD in 40 days
5.2
5.2

Hey, I'm really pumped about this opportunity! I recently led a project with similar challenges and nailed it. Drawing from my experience in JavaScript, Python, Data Processing, Web Scraping, Data Mining, Scrapy, BeautifulSoup, Data Analysis, I’m ready to dive into your project. Lets connect in chat so that we discuss further. Best, Vishal Maharaj
$25 USD in 40 days
5.3
5.3

Hi, this is Kris from McKinney, Texas, I've reviewed your data-cleaning project and understand that the scraping pipeline already exists, but the raw article output needs to be parsed, coded, and transformed into an analysis-ready dataset. The key requirements are accurate number extraction, consistent labeling based on your field dictionary, reproducible processing, and clean CSV or JSON output. My approach would be to review the current scraping script, raw dump samples, and field dictionary, then build a Python processing routine using tools like BeautifulSoup, regex, pandas, and validation rules. I would structure the script to extract key figures, assign the correct codes/categories, flag uncertain matches for review, export the cleaned dataset, and include a concise README so you can rerun or extend the workflow later. A few additional questions; Q1: Are the raw dumps stored as HTML, plain text, JSON, or another format? Q2: Should the script extract only explicitly stated numbers, or also normalize derived values such as percentages, currency, dates, and ranges? Q3: Do you need confidence flags or a review file for ambiguous numerical matches? Regards, Kris
$20 USD in 40 days
4.7
4.7

Hi, Aashiq (Ash) here from Cape Town, South Africa. This project instantly caught my eye, so I had to reach out. I see you looking for cleaning and coding numerical data from news sites. I have a proven track record of helping businesses optimize data processes for better insights. I can increase your efficiency by transforming raw data into a structured, analysis-ready format. Feel free to request samples of similar successful projects I've completed. Based on what you mentioned, here is how we would approach the project: - Create a robust data cleaning and coding script using Python (BeautifulSoup/Scrapy, pandas) - Implement consistent coding based on the provided field dictionary - Deliver a structured dataset in CSV or JSON format with a detailed read-me for easy replication Rest assured, I prioritize clear communication and delivering a seamless, user-focused solution optimized for performance. Best Regards, Aashiq
$15 USD in 7 days
4.2
4.2

Regarding your project, I have a quick question: Are the key figures typically found in consistent formats like tables, or are they embedded within unstructured paragraphs? This will help in designing a robust parsing strategy. I plan to approach this by using Python, as you prefer. I'll leverage the pandas library for structuring the final output and use tailored regular expressions to accurately identify and extract the specified numerical data from your raw text dumps. I previously tackled a similar content processing challenge on this project: https://learners-app.com. There, I engineered a custom engine that parsed complex educational materials and transformed them into structured data, which required a similar text-to-data pipeline. Let's connect to discuss the architecture. Regards, Philip O.
$15 USD in 7 days
3.8
3.8

⚠️ If you're not happy, you don’t pay. ⚠️ Hi there, Thank you for sharing the project details. I can clean, code, and deliver your numerical information stream in an analysis-ready format using Python (BeautifulSoup/Scrapy + pandas) for efficient processing. I will deliver: • Clean and structured dataset from the raw dump • Python script for parsing and coding the key figures • Detailed readme for easy pipeline extension • Quality assurance for accurate results and reproducibility You will also receive: • Support for any questions or clarifications. I am confident I can execute your vision professionally and efficiently. Looking forward to discussing timeline and next steps. Best regards, Chirag.
$15 USD in 30 days
3.8
3.8

Hi, I’m Armin Nikdel. I can build this as a Python parsing and coding routine for USD 25, with delivery around 10 days. I’ll start from your current scraper output and field dictionary, normalize the raw article text, extract numeric figures with unit/context handling, then apply consistent codes in a pandas workflow that writes clean CSV or JSON. I’ll include checks for missing or ambiguous matches, reproducible reruns, and a short read-me. For sign-off, I’ll compare the processed dataset against your sample dump and include an exceptions report so uncertain figures are visible instead of silently miscoded. Should ambiguous numbers be dropped, kept with a review flag, or mapped to a default code?
$25 USD in 10 days
3.8
3.8

Leveraging on my 14+ years of experience as a Full-Stack Developer and proficiency in Python (including BeautifulSoup/Scrapy and pandas), I am confident that I can automate the cleaning, coding, and delivery of the numerical data from the news sites for your project. Over the years, I have successfully handled over 416 projects similar to yours, leaving behind a trail of satisfied clients. You can expect nothing less than a solid routine that will parse each scrape accurately, identify the key figures according to your field dictionary, and put it all together in a structured file. In addition to these technical skills, I'm also adept at handling diverse tools like Git and BitBucket for version control, TortoiseSVN for management, and LAMP for hosting—this enhances seamless coordination with clients! My goal is not just to meet but exceed your expectations by providing professional and tailored solutions that fulfill your unique needs. To kickstart this project together, let's connect soon!
$15 USD in 40 days
3.2
3.2

Hello, I can help you turn the raw scraped news output into a clean, coded, analysis-ready dataset with a reproducible Python pipeline. The key part of this project is not just extracting numbers, but correctly identifying which figures matter, applying your field dictionary consistently, and keeping an audit trail for anything ambiguous. I would structure the solution so it can process your current raw dumps and also be extended later as sources or coding rules change. Expected deliverables: * Python processing script * Final cleaned CSV/JSON dataset * Error/unmatched records file * README with setup and rerun instructions * Clear comments in code for future changes To ensure accuracy, I would like to review a few manually coded examples or expected output rows, if available. That will help align the parser with your exact interpretation of each number and category. I can start by reviewing the sample dump and field dictionary, then confirm the cleanest implementation plan before building the full pipeline. Best regards, Mayuri
$20 USD in 40 days
2.8
2.8

san roque, Philippines
Member since Jun 23, 2026
$10-30 USD
$10-30 USD
$250-750 USD
₹750-1250 INR / hour
₹12500-37500 INR
$30-250 USD
$10-30 USD
$15-25 USD / hour
₹1500-12500 INR
₹10000-20000 INR
₹600-1500 INR
$250-750 CAD
₹600-1500 INR
₹37500-75000 INR
₹100-400 INR / hour
₹37500-75000 INR
$50-80 AUD
₹1500-12500 INR
₹600-1500 INR
£1500-3000 GBP