#meupdate
Explore tagged Tumblr posts
bloodoverelysium · 1 year ago
Text
Alright today is July 4th so I'm permitting myself one (1) patriotic post
2K notes · View notes
codehunter · 2 years ago
Text
werkzeug.routing.BuildError: Could not build url for endpoint
I have created a web API to render a webpage with navigation. Below is my code
from flask import Flask, render_template, requestapp = Flask(__name__)@app.route('/testsite/')def home(): return render_template('home.html')if __name__ == '__main__': app.run(debug=True)@app.route('/about/')def about(): return render_template('about.html')if __name__ == '__main__': app.run(debug=True)
Below is the HTML code for both html templates
home.html
<!DOCTYPE html><html><body>{% extends "layout.html" %}{% block content %}<div class="home"><h1>My Personal Website</h1><p>Hi, this is my personal website.</p></div>{% endblock %}</body></html>
about.html
<!DOCTYPE html><html><body>{% extends "layout.html" %}{% block content %}<div class="about"><h1>About me</h1><img src="{{ user_image }}" alt="User Image"><p>Update about yourself here</p></div>{% endblock %}
Now this example works perfectly fine. But when I try to use this to add code to make API for a machine learning mode.
Below is the code the for the same.
from flask import Flask, abort, request,render_template, json, render_template_stringfrom DataPreparationv4 import Data_Preprocessimport numpy as npimport pandas as pdimport picklefrom flask_jsonpify import jsonpifypd.options.mode.chained_assignment = Nonefilename = 'CTA_Classification.pkl'loaded_model = pickle.load(open(filename, 'rb'))app = Flask(__name__)@app.route("/", methods=['GET'])def Predictions(): Base_Data = pd.read_csv('Test.csv') DataSet1 = Data_Preprocess(Base_Data) [...] df_list = Predictions.values.tolist() return render_template('homev2.html', my_list=df_list)if __name__ == '__main__': app.run(debug = True)@app.route('/about/')def about(): return render_template('about.html')if __name__ == '__main__': app.run(debug = True)
Now, when I run this, I get the below error. I have even tried to change the return code to return render_template('homev2.html') but with same error.
werkzeug.routing.BuildError: Could not build url for endpoint 'home'. Did you mean 'about' instead?
Below is the code revised code for home.html named as homev2.html:
<!DOCTYPE html><html><body>{% extends "layout.html" %}{% block content %}<div class="home"><h1>Predictions Page</h1><p><h4>Predictions</h4></p><table> <tbody> {# here we iterate over every item in our list#} {% for item in my_list %} <tr><td>{{ item }}</td></tr> {% endfor %} </tbody> </table></div>{% endblock %}</body></html>
layout.html
<!DOCTYPE html><html> <head> <title>Flask app</title> <link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}"> </head> <body> <header> <div class="container"> <h1 class="logo">The web app</h1> <strong><nav> <ul class="menu"> <li><a href="{{ url_for('home') }}">Home</a></li> <li><a href="{{ url_for('about') }}">About</a></li> </ul> </nav></strong> </div> </header> <div class="container"> {% block content %} {% endblock %} </div> </body></html>
Below is the full traceback
[2018-07-08 23:05:35,225] ERROR in app: Exception on / [GET]Traceback (most recent call last): File "C:\Users\sudhir_kb\Continuum\anaconda3\lib\site-packages\flask\app.py", line 2292, in wsgi_app response = self.full_dispatch_request() File "C:\Users\sudhir_kb\Continuum\anaconda3\lib\site-packages\flask\app.py", line 1815, in full_dispatch_request rv = self.handle_user_exception(e) File "C:\Users\sudhir_kb\Continuum\anaconda3\lib\site-packages\flask\app.py", line 1718, in handle_user_exception reraise(exc_type, exc_value, tb) File "C:\Users\sudhir_kb\Continuum\anaconda3\lib\site-packages\flask\_compat.py", line 35, in reraise raise value File "C:\Users\sudhir_kb\Continuum\anaconda3\lib\site-packages\flask\app.py", line 1813, in full_dispatch_request rv = self.dispatch_request() File "C:\Users\sudhir_kb\Continuum\anaconda3\lib\site-packages\flask\app.py", line 1799, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "D:\Deploy\Predictions.py", line 51, in Predictions return render_template('homev2.html', my_list=df_list) File "C:\Users\sudhir_kb\Continuum\anaconda3\lib\site-packages\flask\templating.py", line 135, in render_template context, ctx.app) File "C:\Users\sudhir_kb\Continuum\anaconda3\lib\site-packages\flask\templating.py", line 117, in _render rv = template.render(context) File "C:\Users\sudhir_kb\Continuum\anaconda3\lib\site-packages\jinja2\asyncsupport.py", line 76, in render return original_render(self, *args, **kwargs) File "C:\Users\sudhir_kb\Continuum\anaconda3\lib\site-packages\jinja2\environment.py", line 1008, in render return self.environment.handle_exception(exc_info, True) File "C:\Users\sudhir_kb\Continuum\anaconda3\lib\site-packages\jinja2\environment.py", line 780, in handle_exception reraise(exc_type, exc_value, tb) File "C:\Users\sudhir_kb\Continuum\anaconda3\lib\site-packages\jinja2\_compat.py", line 37, in reraise raise value.with_traceback(tb) File "D:\Deploy\templates\homev2.html", line 4, in top-level template code {% extends "layout.html" %} File "D:\Deploy\templates\layout.html", line 13, in top-level template code <li><a href="{{ url_for('home') }}">Home</a></li> File "C:\Users\sudhir_kb\Continuum\anaconda3\lib\site-packages\flask\helpers.py", line 356, in url_for return appctx.app.handle_url_build_error(error, endpoint, values) File "C:\Users\sudhir_kb\Continuum\anaconda3\lib\site-packages\flask\app.py", line 2061, in handle_url_build_error reraise(exc_type, exc_value, tb) File "C:\Users\sudhir_kb\Continuum\anaconda3\lib\site-packages\flask\_compat.py", line 35, in reraise raise value File "C:\Users\sudhir_kb\Continuum\anaconda3\lib\site-packages\flask\helpers.py", line 345, in url_for force_external=external) File "C:\Users\sudhir_kb\Continuum\anaconda3\lib\site-packages\werkzeug\routing.py", line 1776, in build raise BuildError(endpoint, values, method, self)werkzeug.routing.BuildError: Could not build url for endpoint 'home'. Did you mean 'about' instead?127.0.0.1 - - [08/Jul/2018 23:05:35] "[1m[35mGET / HTTP/1.1[0m" 500 -
I don't understand why I am getting an error when I add the code to display the predictions as that's is only change. Where am I going wrong.
I am still a newbie and learning these concepts by researching in internet.
I have searched and did not find a similar issue even though the error is same in many posts hence created this. If this is a duplicate, please guide me to the original post.
Please help me in fixing this issue.
https://codehunter.cc/a/flask/werkzeug-routing-builderror-could-not-build-url-for-endpoint
0 notes
worstandbest37 · 3 years ago
Text
1/29/22
I have been so engulfed in "having" my feelings and sorting them out this last month that I started lagging on certain things I should do. Like my tumblr blog. :-//
Worst: Me.
0 notes
thepebbleashore · 2 years ago
Text
Came back from reading and
I WILL WRITE A SHUMIKA DECADENCE X MAFIA FIC AND NO ONE WILL STOP ME
updates will be posted on another tumblr blog when my exams is over
1 note · View note
rangellife · 3 years ago
Text
Just Another Love Story: a cautionary tale
Don’t fall When I fall I fall hard Girls never fall in love   I was walking down this road All eroded and cracked Dirty and whack Looking at this or that He or she Wondering what they had to do with me Not too far ahead was a kindly stranger with his hand held out He was neither begging or offering anything It was just a friendly gesture So genuine and all for free   His eyes sang out ‘i have a story to tell’ His lips open halfway And only half the time to speak And when he spoke it was always truths whether big or little Often hidden in riddles I was intrigued immediately   All the other strangers were so candidly shallow Hearts all hollow to be filled with whatever crossed their path Sex, drugs, gems, rims were ‘love’ I couldn’t have that I wanted more   This man was different, offering no jewels Just stories and a firm hand to hold me His touch so accidentally sensual His smile so honest, disarming, and pleasureful Full of pleasure   My eyes were filled with wonder And his eyes were filled with answers I looked deep into those wonderful eyes … So deep   So deep I lost my balance and stumbled, tripped Without warning Without my handrail of fear and insecurities. . My dreams of independence and I .. We fell. Down we went on the way giving up all questions, all reason Hitting the ground hard   Now I lie here on this hard, cold asphalt waiting Waiting… I knew better really I did..   See I didn’t expect to be caught. I just hoped he would fall with meUpdated Oct 26, 2020, 12:28 PMSep 20, 2011, 8:30 PM
0 notes
pluspotential · 3 years ago
Text
Produsen Defin Hidrolik Cucian Mobil Nusantara Wilayah Wates
Tumblr media
Mengenal Hidrolik Cucian Mobil Defin Hidrolik Nusantara
Sebagai wujud dukungan kami kepada pebisnis Cuci mobil agar meningkatkan kualitas didalam menggerakkan bisnisnya, perusahan Defin Nusantara Hidrolik sudah sediakan Car Wash Hidraulics sebagai alat pendukung di dalam mengembangkan kualitas dalam layanan cucian mobil dan atau motor. Defin Nusantara merupakan manufacture hidrolik dengan kualitas terjamin, dengan memanfaatkan bahan-bahan pilihan berasal dari vendor yang terpercaya. Selain memiliki kwalitas prodak kami menawarkan jaminan hingga dua tahun lamanya.
Sebagai pebisnis harusnya detail di dalam melakukan pilihan alat pendukung seperti Hidrolik Cucian Mobil supaya kedepanya tidak terdapat masalah-masalah di dalam berbisnis. Defin Nusantara Hidrolik merupakan pilihan yang tepat dalam melakukan pilihan Hidrolik Cuci Mobil sebagai alat pendukung bisnis Cuci mobil anda.
Hidrolik Defin Nusantara termasuk memberikan paket lengkap Hidrolik Cuci Motor Hingga Hidrolik Cucian Mobil. Kapasitas untuk Car Wash Hidraulics sendiri daya angkat mulai dari 4 ton sampai 6 ton. Untuk Hidrolik yang memiliki kekuatan angkat 4 ton biasanya digunakan sebagai Cuci mobil niaga atau mobil mini bus kecil pada umumnya. Sedangkan untuk 6 ton untuk mengangkat mobil mini bus engkel atau truk dan sejenisnya. Sehingga para pengusaha hendaknya paham keperluan yang dibutuhkan di di dalam usaha Cucian mobil mereka.
Jenis Hidrolik Cuci Mobil Defin Nusantara Lift Motor
Hidrolik yang berfungsi untuk mengangkat kendaraan bermotor roda 2 dengan kapasitas daya angkat 150kg ketingian 1 meter. Alat ini akan membantu anda dalam pekerjaan mencuci kendaraan bermotor roda dua terutama anggota bawah kendaraan yang kesusahan dijangkau sehingga dapat mempermudah di dalam kegiatan mencuci kendaraan bermotor roda dua anda. Dengan memanfaatkan alat ini dipastikan pekerjaan Cuci motor bakal lebih optimal dan leluasa.
Bagi pebisnis maka sangatlah diperlukan lift motor ini agar menopang usaha mereka dalam usaha Cucian motor, sehingga pelanggan lebih senang dari hasil pengerjaan melakukan pencucian kendaraan roda dua. Karena bersama dengan alat ini bagian-bagian yang takterjangkau bisa lebih mudah dibersihkan secara optimal. Defin Nusantara Hidrolik adalah pilihan terbaik yang pas untuk menunjang bisnis Cuci motor anda.
Defin Nusantara Hidrolik Type X
Hidrolik ini merupakan jenis hidrolik yang mula-mula berkembang didalam Hidrolik Cuci Mobil. Waktu baru keluar hidrolik ini sangat trend di dunia bisnis steam mobil, hidrolik ini mampu mengangkat beban mobil mncapai 4 ton. Nama Hidrolik type X dikarenakan desainya yang simple menyerupai hufuf X untuk mengangkat mobil sehingga bisa menopang anggota sasis kendaraan.
Meskipun begitu nampak model baru, namun desain hidrolik ini masih sering kami lihat di beberapa usaha Cucianan mobil. Hidrolik Defin Nusantara Type X juga merupakan model hidrolik yang tergolong terjangkau dari segi harganya, sehingga sesuai bagi pengusaha yang mempunyai modal minim. Akan tetapi, Defin Nusantara Hidrolik type X ini membutuhkan kecermatan saat pengoprasianya sebab, jikalau ada sedikit kesalahan prosedur, maka dapat membuat mobil dapat terjatuh dari landasan meja hidrolik serta akan berakibat fatal.
Akan tetapi gak harus khawatir kami Defin Nusantara Hidrolik bakal beri tambahan free uji coba serta arahan terhadap tim operator tempat bisnis anda. Agar tidak akan terjadi kejadian yang tidak kami inginkan. Dimana dapat menghemat budget pengembagan hidrolik type X.
Hidrolik Cuci Mobil Type H-Track
Type H-Track Defin Nusantara Hidrolik merupakan pembaruan berasal dari hidrolik jenis X dimana dirasa oleh beberapa pembeli lebih simple dalam penggunaan. Car Wash Hydraulic type H-Track ini sekarang yang udah merajai dan acap kali kami jumpai di semua pelosok negeri dalam usaha cucian mobil. Karena sistem yang sangat simple apalagi operator yang tetap dibilang amatir pun dapat terlalu praktis untuk mengoperasikan alat ini, agar para pebisnis lebih mengemari mode hidrolik H-Track ini.
Hidrolik H-Track ini terhitung sering disebut dengan H kupu-kupu karena lihat dari tampilanya yang punya 4 sayap. H-Track ini mirip halnya bersama dengan Car Wash Hydraulic jenis X bersama kekuatan angkat 4 ton tinggi maksimal 150 cm pada dasarnya sama bersama dengan type X yang membedakan semata-mata mejanya saja gara-gara disini lain bersama dengan halnya meja X yang membantu anggota sasisnya namun H-Track yang mendukung ke empat rodanya. Melihat perihal tersebut maka hidrolik H-Track ini dibilang paling safe untuk bisnis stim Cuci mobil dan kami terlalu menganjurkan kepada pengusaha untuk mengunakan hidrolik tipe H-Track ini.
H-track yang telah di produksi oleh perusahaan kita bakal membatu anda dalam usaha cucian mobil dikarenakan Defin Nusantara Car Wash Hidraulics mengfungsikan Hidrolik memiliki kwalitas tinggi dengan harapan mampu menolong seluruh entrepreneur Cucianan mobil didalam mengembangkan usahanya.
Melihat dari faktor peningkatan kendaraan yang makin lama tahun jadi naik maka usaha Cuci mobil sangatlah diperlukan dikalangan kota maupen pelosok nusantara dan dibutuhkan layanan yang maksimal bagi customer supaya bersama dengan Car Wash Hydraulic H-Track ini bakal menunjang peningkatan mutu dalam pekerjaan mencuci kendaraan umum ataupun privat dikarenakan jangkauanya yang sangat luas bahkan dengan alat ini operator mampu menjangkau kolong mobil yang amat sulit. kesimpulanya bahwa dengan alat ini kastemer menjadi suka bersama pelayanan yang anda memberikan supaya tidak cuman mengembangkan kualitas didalam bisnis akan bertambah pula costumer yang dapat singgah ke daerah usaha Cucian anda.
Hidrolik H-Track Long Full
Mungkin asing bagi anda mendengar Hidrolik Cuci Mobil type ini, Car Wash Hydraulic H-Track Long Full adalah hidrolik yang mengadopsi berasal dari hidrolik H-Track. Keistimewaan dari H-Track Long Full adalah untuk meupdate Cucianan yang belum mengunakan alat hidrolik sehingga tidak mengunakan terlau banyak biaya untuk merenovasi lantai kerja. memadai dengan mengali kurang lebih 1x1 m dan dalam 220 m serta saluran pipa anda telah sanggup mengunakan hidrolik ini. beda halnya bersama hidrolik H-Track hidrolik H-Track Long Full ini berada di atas lantai kerja sedangkan H-Track ditanam sejajar dengan lantai kerja.
Hidrolik Cuci Mobil H-Track Long Full ini terhitung dapat meupdate hidrolik Type X dengan mengganti mejanya saja. Dengan munculya hidrolik Type H-Track Long Full ini meningkatkan fariasi di dalam alat dan fungsi hidrolik yang telah kita produksi.
Kami meminta bersama dengan terdapatnya hidrolik H-Track Long Full ini memudahkan para pelaku bisnis untuk mengembangkan usahanya di bidang Cuci mobil bersama ongkos yang tidak sangat besar. Sehingga mampu berkompetisi secara mutu di dalam berbisnis untuk selalu mempertahankan seluruh pelanganya sebagai bentuk pelayanan.
Ada yang lebih sepesial berasal dari Hidrolik Cucian Mobil H-track Long Full ini tak hanya mengunakan hidrolik yang berkapasitas 4 ton Hidrolik H-Track Long Full ini ada termasuk yang mrnggunakan hidrolik yang berkapasitas 6 ton yang berfungsi untuk mengangkat mobil-mobil yang lebih berat seperti truk engkel atau minibus engkel atau sejenisnya. Karena di daerah-daerah spesifik sangatlah diperlukan hidrolik jenis ini karena beban yang sanggup di angkat cukuplah besar.
Semua alat alat kami terutama Car Wash Hydraulic yang kita kenalkan gunakan sestem fenometik angin. Jadi kerja dari hidrolik kami adalah tekanan dari oli yang didorong oleh angin lewat selang kompresor agar hidrolik dapat terangkat bersama dengan sempurna.
Kepada anda seluruh calon konsumen kami agar bijak untuk bisa pilih hidrolik yang cocok dengan kebutuhan agar kedepanya bisnis anda tidak megalai kendala. Salam berhasil dari Defin Nusantara Hidrolik Cuci Mobil.
0 notes
lmaoshitspam · 6 years ago
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
A little meupdate for myself: you feel okay but you have no emotions in your body so you might not be okay. You seem happy again and you went and did a date without crying about how much you missed ‘her’ before during or after(well done) but now it feels weird because that was the first time she hasn’t been here(physically or mentally) for 2 years now. You don’t cry as much but honestly I don’t think you can cry you haven’t had a breakdown since that one to jake weeks back and this is new is it because you’re happy again or because you not happy at all
0 notes
loviely · 8 years ago
Note
HELP. IM ABOUT TO TELL THE GIRL I LOVE THAT IM STILL IN LOVE WITH HER. HELP ME NOT BE NERVOUS.
JUST GO FOR IT THE WORSE THING THAT COULD HAPPEN ISNT EVEN THAT BAD IT’LL BE OK NO MATTER WHTA HAPPENS I LOVE U SM KEEP MEUPDATED !!!!!!!!!!!!!!!!
14 notes · View notes
Quote
Please let me see what you think you should get back within​your family a happy is this update you ask me yes it done always lovjeupdate and everything else now love you forever lashon all you gonna take my brother surecome and your mom is going on with you gonna do no deal already talk u see me in your office and everything is ok with me yes layiuu you gonna look into your account to try it out you come home working wwûû6y6yyyy6y6yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy6yyy66yhhith your new page you want you tonight and everything right look into this truck out here today look p
Where are you gonna do something with your new job in u at i went to evry trick you gonna looking​you get your account to try now love meupdate you gonna take care of you please feel free baby gonna do something with me yes yi you into your account and then you get back together whenever you're ready where is the acc located around you want you to helpe. You are going out for me yes layiuu and everything is going get your mind you want you tonight and everything else on bathroom floor and everything else was pretty good you get your mind working with you bi no u keep doing that why I'm babysitting no up alone you get kids and grandkids look into your account and everything is ok with youhttps://myaccount.google.com/ https://myaccount.google.com/ View and Download Call History - Digital Phone Support - ATT.com https://www.att.com/esupport/article.html#!/u-verse-voice/KM1001418 · Go to Phone Features. · Select the Call History tab. · Do one of the following: Select a heading such as Name or Number to sort by caller. Use the Up or Down arrow to display your results in ascending or descending order. Download Call Logs in XLS, CSV or PDF file formats. View and Download Call History - Digital Phone Support - ATT.com https://www.att.com/esupport/article.html#!/u-verse-voice/KM1001418 · Go to Phone Features. · Select the Call History tab. · Do one of the following: Select a heading such as Name or Number to sort by caller. Use the Up or Down arrow to display your results in ascending or descending order. Download Call Logs in XLS, CSV or PDF file formats.
Tumblr media
0 notes
acraftynerd · 8 years ago
Text
Update Sunday (15/01/17)
An update on my week - bookish and otherwise. #bookblogger #bookblogging #meupdate
Another Sunday, another update  – this is a thing I do where I let you in on what I’ve been obsessing over this past week. Trust me, there’s stuff here. Let’s get it going: Reading: The Wheel Mages – Aimee Davis. I got this book from the author herself, and I’m so much in love with it right now! It’s the perfect mix of all my favourite high fantasy elements, and the characters are so freaking…
View On WordPress
0 notes
kingfishersays · 9 years ago
Text
So I got some news on Saturday about a very close relative who has been diagnosed with a rather serious form of cancer. All day yesterday I felt strange. Today, I identified it as supreme, deep down worry. On top of not wanting to lose this person, losing them would incapacitate my entire family, and I’m genuinely afraid. This isn’t like the other deaths in the family - which have been ‘on their way out’ sort of things... they’re in their prime. I’m simultaneously worried for them, and worried for all of the feelings everyone else is feeling/will feel. This is a new, special form of stress Iiiiiii don’t know what to do with!
In lighter news, I get to go back to my little scorching hot hometown next week to shoot videos and attend my first bachelorette party, which - judging by the facebook event - I will be confused by 100% of the time. I don’t want to buy my middle school friend ‘panties’. Although, I do intend to be nice and blitzed for my three days there.
Also: Does anyone else ever get this thing when they don’t have to work the next day that their brain goes into overdrive - my brain keeps saying “yeah just keep going!!! YOU GOT TIME” but I’m so tired.
1 note · View note
theartytype-blog · 12 years ago
Photo
Tumblr media
Updating my 'face' page x x x
2 notes · View notes