Code Monkey home page Code Monkey logo

streamlit_goodreads_app's People

Contributors

asaini avatar jrieke avatar kmcgrady avatar peter-iron avatar sfc-gh-trichards avatar tylerjrichards avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

streamlit_goodreads_app's Issues

Not opening

Description

😌your apps down honey. Just

Reproduction steps

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

Screenshots

![DESCRIPTION](LINK.png)

Logs

No response

Youngest and oldest books

I think the youngest/oldest books variables need to be flipped, since in the first sort you are showing the "newest"/most recent publication year at top (descending order):
row = df.sort_values(by='book.publication_year', ascending=False).head(1)
oldest_book = row['book.title_without_series'].iloc[0]
row_young = df.sort_values(by='book.publication_year').head(1)
youngest_book = row_young['book.title_without_series'].iloc[0]

I think it should be:
row = df.sort_values(by='book.publication_year', ascending=False).head(1)
youngest_book = row['book.title_without_series'].iloc[0]
row_young = df.sort_values(by='book.publication_year').head(1)
oldest_book = row_young['book.title_without_series'].iloc[0]

404 to demo

Hello, this demo seems cool and when I tried to click on the link in your readme I get a 404 instead of seeing the demo.

Not a big issue, but wanted to help in case you weren’t aware. Your project is featured on the streamlit home page and that’s how I found you.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.