This repository contains data related to trains, coaches, classes and railway stations in Bangladesh. The information is provided in both English and Bengali, formatted as JSON files.
trains_en.json
: Train names and numbers in English.trains_bn.json
: Train names and numbers in Bengali.coaches_en.json
: Coach names in English.coaches_bn.json
: Coach names in Bengali.classes_en.json
: Class names in English.classes_bn.json
: Class names in Bengali.stations_en.json
: Station names in English.stations_bn.json
: Station names in Bengali.
- English: "SONAR BANGLA EXPRESS (787)"
- Bengali: "সোনার বাংলা এক্সপ্রেস (৭৮৭)"
- English: "KA", "SCHA"
- Bengali: "ক", "ছ"
- English: "SHOVAN", "SNIGDHA"
- Bengali: "শোভন", "স্নিগ্ধা"
- English: "Dhaka", "Chattogram"
- Bengali: "ঢাকা", "চট্টগ্রাম"
- Load the data in your project using JSON libraries in any programming language.
- Utilize the data for applications like train schedules, ticket booking systems, or railway analysis.
import json
# Load train data in English
with open('trains_en.json') as file:
trains = json.load(file)
print(trains["trains"])
# Load station data in Bengali
with open('stations_bn.json') as file:
stations = json.load(file)
print(stations["stations"])
Contributions are welcome! Fork the repo, make your changes, and create a pull request.