-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add telephone prefix number for provinces (#39)
* Add telephone prefix number for provinces * Update provinces.txt * Update CityProvinceQuery.py * Update README.md --------- Co-authored-by: Sajad Dehshiri <[email protected]>
- Loading branch information
1 parent
9c88c35
commit 7952138
Showing
9 changed files
with
228 additions
and
194 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
id,name,slug | ||
1,آذربایجان شرقی,آذربایجان-شرقی | ||
2,آذربایجان غربی,آذربایجان-غربی | ||
3,اردبیل,اردبیل | ||
4,اصفهان,اصفهان | ||
5,البرز,البرز | ||
6,ایلام,ایلام | ||
7,بوشهر,بوشهر | ||
8,تهران,تهران | ||
9,چهارمحال و بختیاری,چهارمحال-بختیاری | ||
10,خراسان جنوبی,خراسان-جنوبی | ||
11,خراسان رضوی,خراسان-رضوی | ||
12,خراسان شمالی,خراسان-شمالی | ||
13,خوزستان,خوزستان | ||
14,زنجان,زنجان | ||
15,سمنان,سمنان | ||
16,سیستان و بلوچستان,سیستان-بلوچستان | ||
17,فارس,فارس | ||
18,قزوین,قزوین | ||
19,قم,قم | ||
20,کردستان,کردستان | ||
21,کرمان,کرمان | ||
22,کرمانشاه,کرمانشاه | ||
23,کهگیلویه و بویراحمد,کهگیلویه-بویراحمد | ||
24,گلستان,گلستان | ||
25,لرستان,لرستان | ||
26,گیلان,گیلان | ||
27,مازندران,مازندران | ||
28,مرکزی,مرکزی | ||
29,هرمزگان,هرمزگان | ||
30,همدان,همدان | ||
31,یزد,یزد | ||
id,name,slug,tel_prefix | ||
1,آذربایجان شرقی,آذربایجان-شرقی,041 | ||
2,آذربایجان غربی,آذربایجان-غربی,044 | ||
3,اردبیل,اردبیل,045 | ||
4,اصفهان,اصفهان,031 | ||
5,البرز,البرز,026 | ||
6,ایلام,ایلام,084 | ||
7,بوشهر,بوشهر,077 | ||
8,تهران,تهران,021 | ||
9,چهارمحال و بختیاری,چهارمحال-بختیاری,038 | ||
10,خراسان جنوبی,خراسان-جنوبی,056 | ||
11,خراسان رضوی,خراسان-رضوی,051 | ||
12,خراسان شمالی,خراسان-شمالی,058 | ||
13,خوزستان,خوزستان,061 | ||
14,زنجان,زنجان,024 | ||
15,سمنان,سمنان,023 | ||
16,سیستان و بلوچستان,سیستان-بلوچستان,054 | ||
17,فارس,فارس,071 | ||
18,قزوین,قزوین,028 | ||
19,قم,قم,025 | ||
20,کردستان,کردستان,087 | ||
21,کرمان,کرمان,034 | ||
22,کرمانشاه,کرمانشاه,083 | ||
23,کهگیلویه و بویراحمد,کهگیلویه-بویراحمد,074 | ||
24,گلستان,گلستان,017 | ||
25,لرستان,لرستان,066 | ||
26,گیلان,گیلان,013 | ||
27,مازندران,مازندران,011 | ||
28,مرکزی,مرکزی,086 | ||
29,هرمزگان,هرمزگان,076 | ||
30,همدان,همدان,081 | ||
31,یزد,یزد,035 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
Author: Sajad Dehshiri <[email protected]> | ||
GitHub: https://github.com/sajaddp/list-of-cities-in-Iran | ||
If you find this useful, please consider starring the repository on GitHub. | ||
Python Version: 3.9 (Note: 3.11 features are not included as it hasn't been released as of September 2021) | ||
Python Version: 3.9+ | ||
""" | ||
|
||
import json | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.