A tool to automatically generate formatted citations from paper titles
Project description
CiteMaster
CiteMaster is a smart Python package that helps you automatically generate formatted citations from research paper titles or files of titles. No more manual DOI searching or formatting—CiteMaster does it all for you!
Features
- Extracts DOI from paper titles using the CrossRef API
- Fetches corresponding BibTeX data
- Formats citations in APA, MLA, or IEEE
- Supports batch citation generation from
.txtor.csvfiles - Saves formatted citations and BibTeX entries to text files (
citations_output.txtandbibtex_output.txt). - Progress tracking for batch processing of large lists of papers.
- Error handling with detailed logs stored in
errors.log.
Installation
Clone and install CiteMaster locally:
git clone https://github.com/yourusername/CiteMaster.git
cd CiteMaster
pip install requirements.txt
OR you can use the:
pip install cite_master
Note: Make sure you’re using Python 3.7 or higher.
How to Use
CiteMaster provides an interactive interface.
Running the Program
from cite_master import main
main()
You'll be prompted to input:
- A paper title or a file path (
.txtor.csv) - A citation format:
apa,mla, orieee - Whether to include BibTeX citations along with formatted ones.
- Whether to save the formatted citations and/or BibTeX entries to output files.
Example 1: Single Paper Title
Input:
Enter a paper title or provide a file path (txt/csv): Deep Learning for Solar Energy Forecasting: A Review
Enter citation format (apa, mla, ieee): apa
Do you want the BibTeX citation as well? (yes/no): yes
Do you want to save formatted citations to outputs/citations_output.txt? (yes/no): yes
Do you want to save BibTeX entries to outputs/bibtex_output.txt? (yes/no): yes
Output:
DOI: 10.1016/j.rser.2020.109984
BibTeX:
@article{DeepLearning2020,
title={Deep Learning for Solar Energy Forecasting: A Review},
author={John Smith and Alice Johnson},
journal={Renewable and Sustainable Energy Reviews},
volume={132},
pages={109984},
year={2020},
publisher={Elsevier}
}
Formatted Citation (APA):
Smith, J., & Johnson, A. (2020). Deep Learning for Solar Energy Forecasting: A Review. *Renewable and Sustainable Energy Reviews*, 132, 109984. https://doi.org/10.1016/j.rser.2020.109984
The formatted citation and BibTeX entry will be saved to outputs/citations_output.txt and outputs/bibtex_output.txt.
Example 2: File of Titles
Input:
Enter a paper title or provide a file path (txt/csv): C:\path\to\your\file\paper_titles.txt
Enter citation format (apa, mla, ieee): mla
Do you want the BibTeX citation as well? (yes/no): no
Do you want to save formatted citations to outputs/citations_output.txt? (yes/no): yes
In this case, BibTeX entries will not be fetched, and the formatted citations will be saved to outputs/citations_output.txt.
Supported Input Formats
- .txt file: One paper title per line
- .csv file: First column should contain the titles
Example paper_titles.txt:
Artificial Intelligence for Smart Grids
Machine Learning in Climate Forecasting
Output Files
- Formatted Citations: All formatted citations will be saved to
outputs/citations_output.txt. - BibTeX Entries: BibTeX entries will be saved to
outputs/bibtex_output.txtif requested. - Error Logs: Any errors during processing will be logged in
errors.log.
Uninstalling
pip uninstall citemaster
License
This project is licensed under the MIT License. See the LICENSE file for details.
Contributing
Feel free to open issues or submit pull requests. Suggestions and improvements are welcome!
Acknowledgments
- CrossRef API
- BibTeX Format
- Citation styles follow official formatting guidelines.
If you have any suggestion or want to contribute to the project you can reach me out at mehmooulhaq1040@gmail.com
Made ❤️ by [Mehmood Ul Haq]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cite_master-0.1.0.tar.gz.
File metadata
- Download URL: cite_master-0.1.0.tar.gz
- Upload date:
- Size: 32.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a4f79aca671a8c7e08cd191c3bd6c4d5e1b4536695e8cf4356455537d80cba3
|
|
| MD5 |
54c932be8da59d3d60748791fe6b461c
|
|
| BLAKE2b-256 |
a45c14068edeb7d03b210463283fe656a0170ec404478aea8aab86d4bda4b87e
|
File details
Details for the file cite_master-0.1.0-py3-none-any.whl.
File metadata
- Download URL: cite_master-0.1.0-py3-none-any.whl
- Upload date:
- Size: 9.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3a8290c73b35c9589230783b3c30f5cf3f3e1887122368866b1c9fa6902e38e
|
|
| MD5 |
85347a31e0febb7a63e206854a338f05
|
|
| BLAKE2b-256 |
bcd3d53e6b9f25c2f4a8808f4f4ebefaee4b19a0d342b5468606fcff85b6e912
|