-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
35 changed files
with
2,216 additions
and
302 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
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 |
---|---|---|
@@ -0,0 +1,187 @@ | ||
namespace GScraper.Brave | ||
{ | ||
/// <summary> | ||
/// Contains the possible countries in Brave search. | ||
/// </summary> | ||
public static class BraveCountries | ||
{ | ||
/// <summary> | ||
/// All regions. | ||
/// </summary> | ||
public const string All = "all"; | ||
|
||
/// <summary> | ||
/// Argentina. | ||
/// </summary> | ||
public const string Argentina = "ar"; | ||
|
||
/// <summary> | ||
/// Australia. | ||
/// </summary> | ||
public const string Australia = "au"; | ||
|
||
/// <summary> | ||
/// Belgium. | ||
/// </summary> | ||
public const string Belgium = "be"; | ||
|
||
/// <summary> | ||
/// Brazil. | ||
/// </summary> | ||
public const string Brazil = "br"; | ||
|
||
/// <summary> | ||
/// Canada. | ||
/// </summary> | ||
public const string Canada = "ca"; | ||
|
||
/// <summary> | ||
/// Chile. | ||
/// </summary> | ||
public const string Chile = "cl"; | ||
|
||
/// <summary> | ||
/// Denmark. | ||
/// </summary> | ||
public const string Denmark = "dk"; | ||
|
||
/// <summary> | ||
/// Finland. | ||
/// </summary> | ||
public const string Finland = "fi"; | ||
|
||
/// <summary> | ||
/// France. | ||
/// </summary> | ||
public const string France = "fr"; | ||
/// <summary> | ||
/// Germany. | ||
/// </summary> | ||
public const string Germany = "de"; | ||
|
||
/// <summary> | ||
/// Hong Kong. | ||
/// </summary> | ||
public const string HongKong = "hk"; | ||
|
||
/// <summary> | ||
/// India. | ||
/// </summary> | ||
public const string India = "in"; | ||
|
||
/// <summary> | ||
/// Indonesia. | ||
/// </summary> | ||
public const string Indonesia = "id"; | ||
|
||
/// <summary> | ||
/// Italy. | ||
/// </summary> | ||
public const string Italy = "it"; | ||
|
||
/// <summary> | ||
/// Japan. | ||
/// </summary> | ||
public const string Japan = "jp"; | ||
|
||
/// <summary> | ||
/// Korea. | ||
/// </summary> | ||
public const string Korea = "kr"; | ||
|
||
/// <summary> | ||
/// Malaysia. | ||
/// </summary> | ||
public const string Malaysia = "my"; | ||
|
||
/// <summary> | ||
/// Mexico. | ||
/// </summary> | ||
public const string Mexico = "mx"; | ||
|
||
/// <summary> | ||
/// Netherlands. | ||
/// </summary> | ||
public const string Netherlands = "nl"; | ||
|
||
/// <summary> | ||
/// New Zealand. | ||
/// </summary> | ||
public const string NewZealand = "nz"; | ||
|
||
/// <summary> | ||
/// Norway. | ||
/// </summary> | ||
public const string Norway = "no"; | ||
|
||
/// <summary> | ||
/// China. | ||
/// </summary> | ||
public const string China = "cn"; | ||
|
||
/// <summary> | ||
/// Poland. | ||
/// </summary> | ||
public const string Poland = "pl"; | ||
|
||
/// <summary> | ||
/// Portugal. | ||
/// </summary> | ||
public const string Portugal = "pl"; | ||
|
||
/// <summary> | ||
/// Philippines. | ||
/// </summary> | ||
public const string Philippines = "ph"; | ||
|
||
/// <summary> | ||
/// Russia. | ||
/// </summary> | ||
public const string Russia = "ru"; | ||
|
||
/// <summary> | ||
/// Saudi Arabia. | ||
/// </summary> | ||
public const string SaudiArabia = "sa"; | ||
|
||
/// <summary> | ||
/// South Africa. | ||
/// </summary> | ||
public const string SouthAfrica = "za"; | ||
|
||
/// <summary> | ||
/// Spain. | ||
/// </summary> | ||
public const string Spain = "es"; | ||
|
||
/// <summary> | ||
/// Sweden. | ||
/// </summary> | ||
public const string Sweden = "se"; | ||
|
||
/// <summary> | ||
/// Switzerland. | ||
/// </summary> | ||
public const string Switzerland = "ch"; | ||
|
||
/// <summary> | ||
/// Taiwan. | ||
/// </summary> | ||
public const string Taiwan = "tw"; | ||
|
||
/// <summary> | ||
/// Turkey. | ||
/// </summary> | ||
public const string Turkey = "tr"; | ||
|
||
/// <summary> | ||
/// United Kingdom. | ||
/// </summary> | ||
public const string UnitedKingdom = "gb"; | ||
|
||
/// <summary> | ||
/// United States. | ||
/// </summary> | ||
public const string UnitedStates = "us"; | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,69 @@ | ||
namespace GScraper.Brave | ||
{ | ||
/// <summary> | ||
/// Specifies the image colors in Brave search. | ||
/// </summary> | ||
public enum BraveImageColor | ||
{ | ||
/// <summary> | ||
/// All colors. | ||
/// </summary> | ||
All, | ||
/// <summary> | ||
/// Black and white. | ||
/// </summary> | ||
Monochrome, | ||
/// <summary> | ||
/// Only colors. | ||
/// </summary> | ||
ColorOnly, | ||
/// <summary> | ||
/// Red color. | ||
/// </summary> | ||
Red, | ||
/// <summary> | ||
/// Orange color. | ||
/// </summary> | ||
Orange, | ||
/// <summary> | ||
/// Yellow color. | ||
/// </summary> | ||
Yellow, | ||
/// <summary> | ||
/// Green color. | ||
/// </summary> | ||
Green, | ||
/// <summary> | ||
/// Blue color. | ||
/// </summary> | ||
Blue, | ||
/// <summary> | ||
/// Purple color. | ||
/// </summary> | ||
Purple, | ||
/// <summary> | ||
/// Pink color. | ||
/// </summary> | ||
Pink, | ||
/// <summary> | ||
/// Brown color. | ||
/// </summary> | ||
Brown, | ||
/// <summary> | ||
/// Black color. | ||
/// </summary> | ||
Black, | ||
/// <summary> | ||
/// Gray color. | ||
/// </summary> | ||
Gray, | ||
/// <summary> | ||
/// Teal color. | ||
/// </summary> | ||
Teal, | ||
/// <summary> | ||
/// White color. | ||
/// </summary> | ||
White | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
namespace GScraper.Brave | ||
{ | ||
/// <summary> | ||
/// Specifies the image layouts in Brave search. | ||
/// </summary> | ||
public enum BraveImageLayout | ||
{ | ||
/// <summary> | ||
/// All layouts | ||
/// </summary> | ||
All, | ||
/// <summary> | ||
/// Square layout. | ||
/// </summary> | ||
Square, | ||
/// <summary> | ||
/// Tall layout. | ||
/// </summary> | ||
Tall, | ||
/// <summary> | ||
/// Wide layout. | ||
/// </summary> | ||
Wide | ||
} | ||
} |
Oops, something went wrong.