4 Commits

Author SHA1 Message Date
Richard Mwewa
b96889f078 Update main.py 2023-08-31 22:04:57 +02:00
Richard Mwewa
2dca02e315 Update pyproject.toml 2023-08-31 22:04:29 +02:00
Richard Mwewa
23553a3d34 Merge pull request #18 from bellingcat/dev
Add files via upload
2023-08-31 22:02:27 +02:00
Richard Mwewa
2441197a5f Add files via upload 2023-08-31 21:55:29 +02:00
4 changed files with 6 additions and 6 deletions

View File

@@ -13,11 +13,11 @@
<PackageProjectUrl>https://github.com/bellingcat/reddit-post-scraping-tool</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/bellingcat/reddit-post-scraping-tool</RepositoryUrl>
<AssemblyVersion>1.9.0.0</AssemblyVersion>
<FileVersion>1.9.0.0</FileVersion>
<AssemblyVersion>1.9.1.0</AssemblyVersion>
<FileVersion>1.9.1.0</FileVersion>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Version>1.9.0</Version>
<Version>1.9.1</Version>
<PackageTags>reddit;scraper;reddit-scraper;osint</PackageTags>
<PackageReleaseNotes></PackageReleaseNotes>
<AnalysisLevel>6.0-recommended</AnalysisLevel>

View File

@@ -103,7 +103,7 @@ Partial Class SplashScreen
ApplicationTitle.Name = "ApplicationTitle"
ApplicationTitle.Size = New Size(207, 223)
ApplicationTitle.TabIndex = 0
ApplicationTitle.Text = "Reddit Post ScrapingTool."
ApplicationTitle.Text = "Reddit Post Scraping Tool."
ApplicationTitle.TextAlign = ContentAlignment.BottomLeft
'
' SplashScreen

View File

@@ -7,7 +7,7 @@ packages = ["rpst"]
[project]
name = "reddit-post-scraping-tool"
version = "1.9.0.0"
version = "1.9.1.0"
description = "Retrieve Reddit posts that contain the specified keyword from a specified subreddit."
readme = "README.md"
requires-python = ">=3.8"

View File

@@ -21,7 +21,7 @@ def run():
try:
# Check for updates
check_updates(version_tag="1.9.0.0")
check_updates(version_tag="1.9.1.0")
# Get posts with the provided/parsed arguments
get_posts(args=args)