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

  • Home
  • SEARCH
  • 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 442345
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T21:03:46+00:00 2026-05-12T21:03:46+00:00

Is there a more succinct/correct/pythonic way to do the following: url = http://0.0.0.0:3000/authenticate/login re_token

  • 0

Is there a more succinct/correct/pythonic way to do the following:

url = "http://0.0.0.0:3000/authenticate/login"
re_token = re.compile("<[^>]*authenticity_token[^>]*value=\"([^\"]*)")
for line in urllib2.urlopen(url):
    if re_token.match(line):
        token = re_token.findall(line)[0]
        break

I want to get the value of the input tag named “authenticity_token” from an HTML page:

<input name="authenticity_token" type="hidden" value="WTumSWohmrxcoiDtgpPRcxUMh/D9m7O7T6HOhWH+Yw4=" />
  • 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-05-12T21:03:46+00:00Added an answer on May 12, 2026 at 9:03 pm

    Could you use Beautiful Soup for this? The code would essentially look something like so:

    from BeautifulSoup import BeautifulSoup
    url = "hhttp://0.0.0.0:3000/authenticate/login"
    page = urlli2b.urlopen(page)
    soup = BeautifulSoup(page)
    token = soup.find("input", { 'name': 'authenticity_token'})
    

    Something like that should work. I didn’t test this but you can read the documentation to get it exact.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there more elegant way of doing lazy evaluation than the following: pattern='$x and
Is there a more succinct way to write the below code? $myQuery = SELECT
Is there are more succinct or Rubyesque way of writing this: if ( variable
I was wondering if there is a cleaner (more succinct) way to do what
Is there a more succinct way to define a class in a namespace than
I'm trying to create a more succinct way to make hundreds of db calls.
Is there more elegant way of escaping array elements: mysql_query(SELECT * from mytable WHERE
Is there a good, succinct/built-in way to see if all the values in an
I did some HTTP monitoring with WireShark. Are there more tools like this that
Note: This is a railsier (and more succinct) version of this question , which

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.