What's wrong with my Code?

This page summarizes the projects mentioned and recommended in the original post on /r/learnpython

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • Meme_Api

    Summon a random meme at will

  • from flask import Flask, render_template import requests import json app = Flask('app') @app.route('/') def index(): meme_pic,subreddit = get_meme() return 'render_template("meme_index.html", meme_pic=meme_pic, subreddit = subreddit)' def get_meme(): url = "https://meme-api.com/gimme" response = json.loads(requests.request("GET", url).text) meme_large = response["preview"][-2] subreddit = response["subreddit"] return (meme_large, subreddit) # <== changed app.run(host='0.0.0.0', port=8080)

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • can someone make it so that the goose drags these out instead

    1 project | /r/desktopgoose | 13 Feb 2023
  • Reddit API

    1 project | /r/discordbots | 17 Oct 2022
  • I created a chrome extension which displays random memes from reddit. You can find it at https://github.com/sushaanpatel/random-meme. Check it out !!!

    2 projects | /r/chrome_extensions | 28 Jul 2022
  • Let's build a Meme app with react in 1 hour

    2 projects | dev.to | 22 Jun 2022
  • Hi I'm making a meme generator. Need a different address like this one but that will display random memes? (I found this link online and was using it as a placeholder) Got everything else working, any help is very much appreciated!

    1 project | /r/CodingHelp | 4 Jan 2022