Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7733385
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T06:58:29+00:00 2026-06-01T06:58:29+00:00

I would like to validate IP addresses from a list that may contain incorrectly

  • 0

I would like to validate IP addresses from a list that may contain incorrectly formated addresses or other garbage. If the field does not contain a properly formated field, simply continue ignoring that field.

Per How to validate IP address in Python? it seems that there are two methods two accomplish this, REGEX or socket.inet_aton().

Below is an attempt to use socket.inet_aton() to parse a CSV and check the field if it is an IPv4 address. Currently it prints the garbage or not properly formatted IP addresses. Any tips on printing the inverse, or IP that are proper IP addresses?

Update

Numeric fields are not printing in discrete octet notation, i.e. 12345 prints. How could non-octet notation be filtered out?

for data in import_text('data.csv', ','):
    try:
        socket.inet_aton(data)
    except socket.error:
        continue
    print (data)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T06:58:31+00:00Added an answer on June 1, 2026 at 6:58 am

    The else clause of a try/except block is executed if no exception occurred.

    try:
        socket.inet_aton(data)
    except socket.error:
        pass
    else:
        print(data)
    

    But since you require it expressed as a discrete octet, your best approach is not regex, not socket.inet_aton, but a simple validation function:

    def valid_ip(addr):
        try:
            addr = addr.strip().split(".")
        except AttributeError:
            return False
        try:
            return len(addr) == 4 and all(octet.isdigit() and int(octet) < 256
                                          for octet in addr)
        except ValueError:
            return False
    

    Then it’s just:

    if valid_ip(data):
        print data
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to validate a form so that it checks if the user
I have a regex that I am using to validate email addresses. I like
I'd like to know a regex that would validate: an email address to this
I would like to validate an email using the RegexValidator, e.g. [RegexValidator(@^[a-zA-Z][\w\.-]*[a-zA-Z0-9]@[a-zA-Z0-9][\w\.-]*[a-zA-Z0-9]\.[a-zA-Z][a-zA-Z\.]*[a-zA-Z]$)] Which works
I would like to validate the DNF (Disjunctive normal form) which looks like this
I would like to validate and restrict newline/linefeed character. Valid XML: <root> <node>data data</node>
I am receiving this XML file which I would like to validate. Ideally I
I'm using jQuery Validate and would like to re-validate a group of fields whenever
I would like to know how can we validate the Credit Card. We have
I have some MET data I want to validate which would look something like

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.