Code Monkey home page Code Monkey logo

cs_arxiv_everyweek's People

Contributors

mikegu721 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  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

rchen19

cs_arxiv_everyweek's Issues

Bug Report: File Existence Check Not Triggering, Leading to Redundant Conversions

First of all, I would like to thank for your great work for catching arxiv paper. Previously, I had written my own conversion processes for xls2csv and xls2xlsx to facilitate previewing in VS Code. I was planning to submit a pull request to address an issue, but I noticed that you have already updated this part of the code. Thank you for updating the project and keeping it well-maintained! But I noticed that there seems to be some small bugs in your conversion file xls_2_csv.py.

Issue Description

  1. Missing check when creating directories.

  2. The program continues to convert xls files to csv even if the csv file already exists. This appears to be due to the file existence check not being triggered correctly.

Problematic Code

line 23 os.makedirs(to_dir_file) should be os.makedirs(to_dir_file,exist_ok=True)

line 27

if os.path.exists(from_dir_file.replace(from_dir, to_dir)): continue

In the code above, the part from_dir_file.replace(from_dir, to_dir) may not be handling the path correctly, causing the os.path.exists call to fail in correctly checking if the file already exists.

Corrected to:

if os.path.exists(to_dir_file): continue

This modification ensures that the path is handled correctly and the existence check functions as intended.

Best regards.

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.